Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 98 for time (0.113 sec.)
6. 式 (expression) — Python 3.6.5 ドキュメント 6011
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... its caller. If the generator yields a value, a RuntimeError is raised. If the generator raises any other ... ution starts when 'next()' is called for the first time." ) ... try : ... while True : ... try : ... value ... ution starts when 'next()' is called for the first time. 1 >>> print ( next ( generator )) None >>> print ... ion starts when this object is awaited on. At that time, the execution proceeds to the first yield express ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 6011
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 何かほかのことをしようとするのは規則違反であり、 RuntimeError を引き起こします; 関数が何かほかの例外を投げる ... of around 800--1000 digits where the function is 6 times faster. (Contributed by Alan McIntyre and committ ... rnal field of the code object, reusing it the next time the code object is invoked. (Original patch by Mic ... ed by Skip Montanaro and Andrew McNamara.) The datetime class in the datetime module now has a strptime(st ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
DTrace と SystemTap で CPython を測定する — Python 3.6.5 ドキュメント 5958
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » DTra ... a function called "start". In other words, import-time function invocations are not going to be listed: s ... :function-entry /self->trace/ { printf("%d\t%*s:", timestamp, 15, probename); printf("%*s", self->indent, ... /self->trace/ { self->indent--; printf("%d\t%*s:", timestamp, 15, probename); printf("%*s", self->indent, ... s[pid(), filename, funcname, lineno] += 1; } probe timer.ms(1000) { printf("\033[2J\033[1;1H") /* clear sc ...
https://man.plustar.jp/python/howto/instrumentation.html - [similar]
Python モジュールのインストール — Python 3.6.5 ドキュメント 5958
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... sy to install using pip directly. At this point in time, it will often be easier for users to install thes ...
https://man.plustar.jp/python/installing/index.html - [similar]
16. 汎用オペレーティングシステムサービス — Python 3.6.5 ドキュメント 5958
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ルチスレッディング 16.2.4.4. リエントラント性 16.3. time --- 時刻データへのアクセスと変換 16.3.1. 関数 16.3 ... .2. Clock ID Constants 16.3.3. Timezone Constants 16.4. argparse --- コマンドラインオプ ... otatingHandler 16.8.6. RotatingFileHandler 16.8.7. TimedRotatingFileHandler 16.8.8. SocketHandler 16.8.9. ...
https://man.plustar.jp/python/library/allos.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 5958
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... recognizing a number of variant forms that are sometimes found "in the wild". このヘッダ型は以下の属性も提 ... 供しています: datetime ¶ If the header value can be recognized as a valid ... form or another, this attribute will contain a datetime instance representing that date. If the timezone o ... n UTC but contains no information about the source timezone), then datetime will be a naive datetime . If ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
16.7. logging.config --- ロギングの環境設定 — Python 3.6.5 ドキュメント 5958
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... : format : '%(message)s' default : format : '%(asctime)s %(levelname)-8s %(name)-15s %(message)s' datefmt ... t' : ' %(message)s ' } および: { 'format' : ' %(asctime)s %(levelname)-8s %(name)-15s %(message)s ' , 'dat ... ような形式です。 [formatter_form01] format = F1 %(asctime)s %(levelname)s %(message)s datefmt = class = logg ... ll format string, and the datefmt entry is the strftime() -compatible date/time format string. If empty, t ...
https://man.plustar.jp/python/library/logging.config.html - [similar]
6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 5958
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tution, [matches], longest_match_length) once each time matches need to be displayed. 6.7.7. 使用例 ¶ 以下 ...
https://man.plustar.jp/python/library/readline.html - [similar]
1. はじめに — Python 3.6.5 ドキュメント 5958
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... られない、スタックレスのサポートや、実行時 (Just in Time) コンパイラなどの高度な機能をサポートしています。こ ...
https://man.plustar.jp/python/reference/introduction.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 5919
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... ing metacharacter is + , which matches one or more times. Pay careful attention to the difference between ... * and + ; * matches zero or more times, so whatever's being repeated may not be present ... on mark character, ? , matches either once or zero times; you can think of it as marking something as bein ... ery unreliable, it only handles one "culture" at a time, and it only works with 8-bit locales. Unicode mat ...
https://man.plustar.jp/python/howto/regex.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT