Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 49 for Extension (0.004 sec.)
- 2. setup スクリプトを書く — Python 3.6.5 ドキュメント 13508
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの
...オプションを通じて行われます。 ext_modules は単なる Extension のリストで、それぞれがある 1 つの拡張モジュールを記...の指示が無い場合は、拡張モジュールの記述は単純です: Extension ( 'foo' , [ 'foo.c' ]) Extension クラスは、 setup(...うになるでしょう: from distutils.core import setup , Extension setup ( name = 'foo' , version = '1.0' , ext_modul...es = [ Extension ( 'foo' , [ 'foo.c' ])], ) Extension クラス (実質的... - https://man.plustar.jp/python/distutils/setupscript.html - [similar]
- 4. C および C++ 拡張のビルド — Python 3.6.5 ドキュメント 11093
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ
...容になっています: from distutils.core import setup , Extension module1 = Extension ( 'demo' , sources = [ 'demo.c...s は拡張モジュールのリストで、リストの各々の要素は Extension クラスのインスタンスになっています。 上の例では、...がその実例です。 from distutils.core import setup , Extension module1 = Extension ( 'demo' , define_macros = [(..., distutils , 関数 , パッケージ , 配布 , python , Extension Table of Contents 4. C および C++ 拡張のビルド 4.1... - https://man.plustar.jp/python/extending/building.html - [similar]
- 19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 11093
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...mtplib # For guessing MIME type based on file name extension import mimetypes from argparse import ArgumentPars...tinue # Guess the content type based on the file's extension. Encoding # will be ignored, although we should ch...ename () if not filename : ext = mimetypes . guess_extension ( part . get_content_type ()) if not ext : # Use a...generic bag-of-bits extension ext = '.bin' filename = 'part- %03d%s ' % ( counte... - https://man.plustar.jp/python/library/email.examples.html - [similar]
- 2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 10051
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ
...ustom" , . m_doc = "Example module that creates an extension type." , . m_size = -1 , }; PyMODINIT_FUNC PyInit_...y を用意します: from distutils.core import setup , Extension setup ( name = "custom" , version = "1.0" , ext_mo...dules = [ Extension ( "custom" , [ "custom.c" ])]) そして、シェルから以...cases the standard distutils module for building C extensions, it is recommended in real-world use cases to use... - https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
- 7. 使用例 — Python 3.6.5 ドキュメント 9749
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの
...ます from distutils.core import setup from distutils.extension import Extension setup ( name = 'foobar' , version...= '1.0' , ext_modules = [ Extension ( 'foo' , [ 'foo.c' ])], ) 同じソースツリーレイアウ...す: from distutils.core import setup from distutils.extension import Extension setup ( name = 'foobar' , version...= '1.0' , ext_modules = [ Extension ( 'foopkg.foo' , [ 'foo.c' ])], ) 7.4. パッケージの... - https://man.plustar.jp/python/distutils/examples.html - [similar]
- 12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 9448
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...無効にできます。 バージョン 3.3 で追加. enable_load_extension ( enabled ) ¶ このメソッドは SQLite エンジンが共有...e3 con = sqlite3 . connect ( ":memory:" ) # enable extension loading con . enable_load_extension ( True ) # Loa...d the fulltext search extension con . execute ( "select load_extension('./fts3.so'...)" ) # alternatively you can load the extension using an API call: # con.load_extension("./fts3.so... - https://man.plustar.jp/python/library/sqlite3.html - [similar]
- Pythonモジュール索引 — Python 3.6.5 ドキュメント 9297
- ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b |
...s for ASCII characters. curses.panel A panel stack extension that adds depth to curses windows. curses.textpad...in a package distutils.command.build_ext Build any extensions in a package distutils.command.build_py Build the...s Provides standard distutils exceptions distutils.extension Provides the Extension class, used to describe C/C...++ extension modules in setup scripts distutils.fancy_getopt Ad... - https://man.plustar.jp/python/py-modindex.html - [similar]
- 10. API リファレンス — Python 3.6.5 ドキュメント 9146
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの
...xt_modules ビルドする拡張モジュール distutils.core.Extension のインスタンスのリスト classifiers パッケージのカテ...ルにあるいくつかのクラスを公開しています。 distutils.extension から Extension distutils.cmd から Command distutil...のモジュールをごらんください。 class distutils.core. Extension ¶ Extension クラスは、セットアップスクリプト中で C...文字列のリスト runtime_library_dirs 実行時(shared extensionでは、拡張が読み込まれる時)に C/C++ライブラリを探索す... - https://man.plustar.jp/python/distutils/apiref.html - [similar]
- 3. setup 設定ファイル (setup configuration file) を書く — Python 3.6.5 ドキュメ... 8542
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの
...' command: --build-lib (-b) directory for compiled extension modules --build-temp (-t) directory for temporary...) --inplace (-i) ignore build-lib and put compiled extensions into the source directory alongside your pure Pyt...onfiguration files. For example, say you want your extensions to be built "in-place"---that is, you have an ext...ension pkg.ext , and you want the compiled extension file ( ext.so on Unix, say) to be put in the same... - https://man.plustar.jp/python/distutils/configfile.html - [similar]
- Argument Clinic How-To — Python 3.6.5 ドキュメント 8391
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu
...ons. In other words: if you maintain an external C extension for CPython, you're welcome to experiment with Arg...filename chosen for the file is {basename}.clinic{extension} , where basename and extension were assigned the...g the directory. {basename_root} Basename with the extension clipped off (everything up to but not including th...e last '.'). {basename_extension} The last '.' and everything after it. If the base... - https://man.plustar.jp/python/howto/clinic.html - [similar]
