- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
如果您检查了 Python C-API documentation关于通过 C 调用运行 python 代码,您总是会发现提到了 PyCompilerFlags
,但除了文档的最后一部分之外,没有任何内容真正描述它是什么,也没有说明它的可能值及其对执行的影响。
最佳答案
PyCompilerFlags
是 C API,相当于传递给 compile
和 Python 中相关函数的 flags 参数。如果您在查看 CPython C-API 文档之前还不了解 Python 文档,那么这可能一点都不明显。
来自 compile
:
The optional arguments flags and dont_inherit control which future statements affect the compilation of source. If neither is present (or both are zero) the code is compiled with those future statements that are in effect in the code that is calling
compile()
. If the flags argument is given and dont_inherit is not (or is zero) then the future statements specified by the flags argument are used in addition to those that would be used anyway. If dont_inherit is a non-zero integer then the flags argument is it – the future statements in effect around the call to compile are ignored.Future statements are specified by bits which can be bitwise ORed together to specify multiple statements. The bitfield required to specify a given feature can be found as the
compiler_flag
attribute on the_Feature
instance in the__future__
module.
点击链接到 future statements提供了有关它们如何工作的更多详细信息,以及指向 __future__
的链接有一个图表显示可用的 future 报表列表。
另一件可能不明显的事情:每个 future 的功能标志对应于一个标志,该标志最终出现在 code
对象的 co_flags
属性中。所以:
code = compile('1 <> 2', '', 'eval', flags=__future__.barry_as_FLUFL.compiler_flag)
assert code.co_flags & CO_FUTURE_BARRY_AS_BDFL
在 C 中,如果您传递 struct PyCompilerFlags flags = { CO_FUTURE_BARRY_AS_BDFL }
以获得相同的效果。
如果您想查看这些标志的实际数值,您必须查找相应的 CO_*
C 源代码或 __future__
中的常量来源。
C API 在某些方面略有不同。
PyRun_*
或 PyCompile_*
调用期间生效。PyCompile_Flags
结构来保存一个 int,而不是原始 int。这只是为了类型检查的目的;在内存中,保存 int 的结构的存储方式与 int 相同。让我们看一个完整的例子。我将使用 Python 2.7,即使我已经链接到 3.7 文档,只是因为使用 print
的示例比使用前向注释的示例更简单。
此代码打印一个空元组:
print()
但如果您使用 PyRun_SimpleStringFlags
运行第一个,将 CO_FUTURE_PRINT_FUNCTION
(0x10000) 作为 flags` 传递,它将打印一个空行,一个 Python 3。
如果你运行这段代码:
from __future__ import print_function
print()
…那么无论你传入0
还是CO_FUTURE_PRINT_FUNCTION
,它都会打印一个空行。在调用之后,如果您查看通过引用传入的 flags,它将具有 CO_FUTURE_PRINT_FUNCTION
或放在上面。因此,如果您一次编译和运行一个 block ,您可以将相同的值传递给下一个字符串,它将继承该 future 标志。 (很像当你在交互式解释器中写一个 future 语句时,它会影响你之后解释的所有语句。)
关于python - Python C API 中的 PyCompilerFlags 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51409697/
我正在处理一组标记为 160 个组的 173k 点。我想通过合并最接近的(到 9 或 10 个组)来减少组/集群的数量。我搜索过 sklearn 或类似的库,但没有成功。 我猜它只是通过 knn 聚类
我有一个扁平数字列表,这些数字逻辑上以 3 为一组,其中每个三元组是 (number, __ignored, flag[0 or 1]),例如: [7,56,1, 8,0,0, 2,0,0, 6,1,
我正在使用 pipenv 来管理我的包。我想编写一个 python 脚本来调用另一个使用不同虚拟环境(VE)的 python 脚本。 如何运行使用 VE1 的 python 脚本 1 并调用另一个 p
假设我有一个文件 script.py 位于 path = "foo/bar/script.py"。我正在寻找一种在 Python 中通过函数 execute_script() 从我的主要 Python
这听起来像是谜语或笑话,但实际上我还没有找到这个问题的答案。 问题到底是什么? 我想运行 2 个脚本。在第一个脚本中,我调用另一个脚本,但我希望它们继续并行,而不是在两个单独的线程中。主要是我不希望第
我有一个带有 python 2.5.5 的软件。我想发送一个命令,该命令将在 python 2.7.5 中启动一个脚本,然后继续执行该脚本。 我试过用 #!python2.7.5 和http://re
我在 python 命令行(使用 python 2.7)中,并尝试运行 Python 脚本。我的操作系统是 Windows 7。我已将我的目录设置为包含我所有脚本的文件夹,使用: os.chdir("
剧透:部分解决(见最后)。 以下是使用 Python 嵌入的代码示例: #include int main(int argc, char** argv) { Py_SetPythonHome
假设我有以下列表,对应于及时的股票价格: prices = [1, 3, 7, 10, 9, 8, 5, 3, 6, 8, 12, 9, 6, 10, 13, 8, 4, 11] 我想确定以下总体上最
所以我试图在选择某个单选按钮时更改此框架的背景。 我的框架位于一个类中,并且单选按钮的功能位于该类之外。 (这样我就可以在所有其他框架上调用它们。) 问题是每当我选择单选按钮时都会出现以下错误: co
我正在尝试将字符串与 python 中的正则表达式进行比较,如下所示, #!/usr/bin/env python3 import re str1 = "Expecting property name
考虑以下原型(prototype) Boost.Python 模块,该模块从单独的 C++ 头文件中引入类“D”。 /* file: a/b.cpp */ BOOST_PYTHON_MODULE(c)
如何编写一个程序来“识别函数调用的行号?” python 检查模块提供了定位行号的选项,但是, def di(): return inspect.currentframe().f_back.f_l
我已经使用 macports 安装了 Python 2.7,并且由于我的 $PATH 变量,这就是我输入 $ python 时得到的变量。然而,virtualenv 默认使用 Python 2.6,除
我只想问如何加快 python 上的 re.search 速度。 我有一个很长的字符串行,长度为 176861(即带有一些符号的字母数字字符),我使用此函数测试了该行以进行研究: def getExe
list1= [u'%app%%General%%Council%', u'%people%', u'%people%%Regional%%Council%%Mandate%', u'%ppp%%Ge
这个问题在这里已经有了答案: Is it Pythonic to use list comprehensions for just side effects? (7 个答案) 关闭 4 个月前。 告
我想用 Python 将两个列表组合成一个列表,方法如下: a = [1,1,1,2,2,2,3,3,3,3] b= ["Sun", "is", "bright", "June","and" ,"Ju
我正在运行带有最新 Boost 发行版 (1.55.0) 的 Mac OS X 10.8.4 (Darwin 12.4.0)。我正在按照说明 here构建包含在我的发行版中的教程 Boost-Pyth
学习 Python,我正在尝试制作一个没有任何第 3 方库的网络抓取工具,这样过程对我来说并没有简化,而且我知道我在做什么。我浏览了一些在线资源,但所有这些都让我对某些事情感到困惑。 html 看起来
我是一名优秀的程序员,十分优秀!