书栈网 · BookStack 本次搜索耗时 0.045 秒,为您找到 1044 个相关结果.
  • runpy —- Locating and executing Python modules

    runpy —- Locating and executing Python modules runpy —- Locating and executing Python modules Source code: Lib/runpy.py The runpy module is used to locate and run Pyt...
  • 3.0.0 (2020-??-??)

    3.0.0 (2020-??-??) Features added Bugs fixed Other changes 3.0.0 (2020-??-??) Features added Cython functions now use the PEP-590 vectorcall protocol in Py3.7+.Patch by J...
  • 调用协议

    调用协议 tp_call 协议 Vectorcall 协议 递归控制 Vectorcall 支持 API 调用对象的 API 调用支持 API 调用协议 CPython 支持两种不同的调用协议:tp_call 和矢量调用。 tp_call 协议 设置 tp_call 的类的实例都是可调用的。 槽位的签名为: PyObject ...
  • 7.12. global 语句

    7.12. global 语句 7.12. global 语句 global_stmt ::= "global" identifier ( "," identifier )* global 语句是作用于整个当前代码块的声明。 它意味着所列出的标识符将被解读为全局变量。 要给全局变量赋值不可能不用到 glob...
  • Unicode 和传递字符串

    Unicode 和传递字符串 Cython 代码中的 Python 字符串类型 字符串文字 关于 C 字符串的一般说明 传递字节串 接受 Python 代码中的字符串 处理“const” 将字节解码为文本 将文本编码为字节 C ++字符串 自动编码和解码 源代码编码 单字节和字符 窄 Unicode 构建 迭代 Windows 和...
  • Python 3.4 有什么新变化

    Python 3.4 有什么新变化 摘要 - 发布重点 新的特性 PEP 453: Explicit Bootstrapping of PIP in Python Installations Bootstrapping pip By Default 文档更改 PEP 446: Newly Created File Descriptors Are No...
  • Using C libraries

    Using C libraries Defining external declarations Writing a wrapper class Memory management Compiling and linking Static Linking Dynamic Linking Mapping functionality Handling...
  • Using PyMongo with MongoDB Atlas

    Using PyMongo with MongoDB Atlas Using PyMongo with MongoDB Atlas Atlas is MongoDB, Inc.’s hosted MongoDB as a service offering. To connect to Atlas, pass the connection string...
  • The Chunked input API

    The Chunked input API Reading chunks Tuning the chunks buffer Integration with proxies Options Notes The Chunked input API An API for managing HTTP chunked input requests ...