Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 101 - 110 of about 156 for all (0.083 sec.)
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... >> "" + custom . Custom () Traceback (most recent call last): File "<stdin>" , line 1 , in <module> TypeE ... int number ; } CustomObject ; static void Custom_dealloc ( CustomObject * self ) { Py_XDECREF ( self -> f ... ject * self ; self = ( CustomObject * ) type -> tp_alloc ( type , 0 ); if ( self != NULL ) { self -> firs ... ew , . tp_init = ( initproc ) Custom_init , . tp_dealloc = ( destructor ) Custom_dealloc , . tp_members = ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
Python モジュールのインストール — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ronment is a semi-isolated Python environment that allows packages to be installed for use by a particula ... r application, rather than being installed system wide. venv は仮想環境をつくるための標準ツ ... v のサードパーティの代替案 (で predecessor) to. It allows virtual environments to be used on versions of ... n prior to 3.4, which either don't provide venv at all, or aren't able to automatically install pip into ...
https://man.plustar.jp/python/installing/index.html - [similar]
19.8. binascii --- バイナリデータと ASCII データとの間での変換 — Python 3.6.5 ... 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e optional argument quotetabs is present and true, all tabs and spaces will be encoded. If the optional a ...
https://man.plustar.jp/python/library/binascii.html - [similar]
8.1. datetime --- 基本的な日付型および時間型 — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... datetime. fold ¶ In [0, 1] . Used to disambiguate wall times during a repeated interval. (A repeated inte ... earlier (later) of the two moments with the same wall time representation. バージョン 3.6 で追加. サポー ... umed to represent time in the system timezone. If called without arguments (or with tz=None ) the system ... ョン 3.6 で変更: The astimezone() method can now be called on naive instances that are presumed to represen ...
https://man.plustar.jp/python/library/datetime.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... the sender's email address # family = the list of all recipients' email addresses msg [ 'From' ] = me ms ... == 'multipart' : continue # Applications should really sanitize the given filename so that an # email me ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
19.1.11. email.header: 国際化されたヘッダ — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rs is passed as the errors argument to the decode call if s is a byte string. encode ( splitchars='; , \t ... eader as a string, using an unlimited line length. All pieces are converted to unicode using the specifie ...
https://man.plustar.jp/python/library/email.header.html - [similar]
25.5. IDLE — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の機能はコンテキストメニューからも使えます。 Select All [全て選択] カレントウィンドウの内容全体を選択します ... します。異なる展開を得るためには繰り返します。 Show call tip [呼び出し方ヒントの表示] 関数の開き括弧の後ろで ... C-b go backward one character without deleting (usually you can also use the cursor key for this) C-f で一 ... すればアクセスできます。これによって、モジュールの __all__ やクラスプライベートな属性にアクセスできます。 C ...
https://man.plustar.jp/python/library/idle.html - [similar]
16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... NAME or USERNAME to find out who the user is, and falls back to pwd.getpwuid(os.getuid())[0] to get the l ... Unix 互換環境。 バージョン 3.3 で追加. os. posix_fallocate ( fd , offset , len ) ¶ fd で指定されたファイ ... filenames returned will also be of type bytes ; in all other circumstances, they will be of type str . こ ... the result will also be a string object, and the call may raise a UnicodeDecodeError. If the path is a b ...
https://man.plustar.jp/python/library/os.html - [similar]
17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... item in source (): q . put ( item ) # block until all tasks are done q . join () # stop workers for i in ...
https://man.plustar.jp/python/library/queue.html - [similar]
31.4. runpy --- Python モジュールの位置特定と実行 — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... す。 __spec__ will be set appropriately for the actually imported module (that is, __spec__.name will alwa ... of the module spec feature added by PEP 451 . This allows __cached__ to be set correctly for modules run ... c__ , __cached__ , __loader__ and __package__ will all be set to None . If the supplied path is a referen ... of the module spec feature added by PEP 451 . This allows __cached__ to be set correctly in the case wher ...
https://man.plustar.jp/python/library/runpy.html - [similar]
PREV 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT