Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 121 - 130 of about 230 for NAME (0.173 sec.)
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 4756
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 先頭) では 'little' となります。 sys. builtin_module_names ¶ コンパイル時にPythonインタプリタに組み込まれた、 ... e flags that are used for dlopen() calls. Symbolic names for the flag values can be found in the os module ... Unix. sys. getfilesystemencoding ( ) ¶ Return the name of the encoding used to convert between Unicode fi ... lenames and bytes filenames. For best compatibility, str ...
https://man.plustar.jp/python/library/sys.html - [similar]
3. Windows で Python を使う — Python 3.6.5 ドキュメント 4756
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... on の削除を開始します。 ほかのすべてのオプションは name=value の形で渡します。value は大抵 0 で機能を無効化 ... ptions listed above can also be provided in a file named unattend.xml alongside the executable. This file ... ptions and the previous example: <Options> <Option Name= "InstallAllUsers" Value= "no" /> <Option Name= "I ... nclude_launcher" Value= "0" /> <Option Name= "Include_test" Value= "no" /> <Option Name= "Simp ...
https://man.plustar.jp/python/using/windows.html - [similar]
5. ビルド済み配布物を作成する — Python 3.6.5 ドキュメント 4715
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ション Distutils setup スクリプト内のオプション 名前 name Summary (preamble 内) description Version version ... soletes obsoletes (none) Distribution distribution_name (none) BuildRequires build_requires (none) Icon ic ... フォーム用にビルドするには、 build コマンドの --plat-name オプションを指定します。有効な値は、現在のところ、 ... をビルドできます: python setup . py build -- plat - name = win - amd64 Windows インストーラもこのオプション ...
https://man.plustar.jp/python/distutils/builtdist.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 4715
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... spammodule = { PyModuleDef_HEAD_INIT , "spam" , /* name of module */ spam_doc , /* module documentation, m ... に渡さねばなりません。初期化関数はモジュールの名前を name としたときに PyInit_name() という名前でなければなら ... argv[0] to the Python interpreter */ Py_SetProgramName ( program ); /* Initialize the Python interpreter. ... ect * dict ; ... dict = Py_BuildValue ( "{s:i}" , "name" , val ); result = PyObject_Call ( my_callback , N ...
https://man.plustar.jp/python/extending/extending.html - [similar]
プログラミング FAQ — Python 3.6.5 ドキュメント 4715
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... したらいいですか? __spam を使おうとしたら _SomeClassName__spam からエラーがでました。 クラスに __del__ メソ ... ストプラクティス」は何ですか? ¶ 一般的に from modulename import * を使ってはいけません。そのようにするとイン ... ールから名前を確保しようとして ("from module import name")、そのインポートがトップレベルにあると駄目です。最 ... s None : mydict = {} # create a new dict for local namespace この性質が便利なこともあります。時間のかかる計 ...
https://man.plustar.jp/python/faq/programming.html - [similar]
ソート HOW TO — Python 3.6.5 ドキュメント 4715
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ソー ... hn', 'A', 15)] 同じテクニックは名前づけされた属性 (named attributes) を使うことでオブジェクトに対しても動作 ... えば: >>> class Student : ... def __init__ ( self , name , grade , age ): ... self . name = name ... self . ... . def __repr__ ( self ): ... return repr (( self . name , self . grade , self . age )) >>> student_objects ...
https://man.plustar.jp/python/howto/sorting.html - [similar]
21.24. http.cookiejar --- HTTP クライアント用の Cookie 処理 — Python 3.6.5 ドキ... 4715
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ています。 class http.cookiejar. FileCookieJar ( filename , delayload=None , policy=None ) ¶ policy は Cooki ... 定します。 CookieJar. clear ( [ domain [ , path [ , name ] ] ] ) ¶ いくつかのクッキーを消去します。 引数なし ... す。引数が 3つ与えられた場合、 domain , path および name で指定されるクッキーが消去されます。 与えられた条件 ... メソッドを実装しています: FileCookieJar. save ( filename=None , ignore_discard=False , ignore_expires=False ...
https://man.plustar.jp/python/library/http.cookiejar.html - [similar]
26.4. unittest --- ユニットテストフレームワーク — Python 3.6.5 ドキュメント 4715
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . assertRaises ( TypeError ): s . split ( 2 ) if __name__ == '__main__' : unittest . main () テストケースは ... stCase ( 'test_widget_resize' )) return suite if __name__ == '__main__' : runner = unittest . TextTestRunn ... ): something = makeSomething () assert something . name is not None # ... オプションの set-up と tear-down ... 1. テストクラス ¶ class unittest. TestCase ( methodName='runTest' ) ¶ TestCase クラスのインスタンスは、 un ...
https://man.plustar.jp/python/library/unittest.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 4715
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n ( ^ ), and an in-place version with the ungainly name symmetric_difference_update() . >>> S1 = sets . Se ... l be automatically imported if a ZIP archive's filename is added to sys.path . For example: amk@nyman:~/sr ... ple.zip Archive: /tmp/example.zip Length Date Time Name -------- ---- ---- ---- 8467 11-26-02 22:30 jwzthr ... どうかを、ブーリアン値 os.path.supports_unicode_filenames をチェックすることでテスト出来ます。 MacOS では、 ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
27.3. pdb --- Python デバッガ — Python 3.6.5 ドキュメント 4684
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ?() (Pdb) continue > <string>(1)?() (Pdb) continue NameError: 'spam' > <string>(1)?() (Pdb) バージョン 3.3 ... "./mymodule.py" , line 3 , in test2 print ( spam ) NameError : spam >>> pdb . pm () > ./mymodule.py(3)test ... は 1) 古いフレーム方向に移動します。 b(reak) [([filename:]lineno | function) [, condition]] ¶ lineno 引数を ... べてのブレークポイントをリストします。 tbreak [([filename:]lineno | function) [, condition]] ¶ 一時的なブレー ...
https://man.plustar.jp/python/library/pdb.html - [similar]