Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 82 for mode (0.093 sec.)
2. Python インタプリタを使う — Python 3.6.5 ドキュメント 5871
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... っている場合、インタプリタは 対話モード (interactive mode) で動作しているといいます。 $ python3.6 Python 3.6 ...
https://man.plustar.jp/python/tutorial/interpreter.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 5871
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... a in bpo-13968 .) gzip ¶ GzipFile コンストラクタの mode 引数が排他的作成を要求する "x" を受け取るようになり ... asynchronous I/O for which SSLSocket 's readiness model ("select/poll") is inefficient. A new SSLContext. ... Paul Moore in bpo-23437 .) tarfile ¶ open() 関数の mode 引数が排他的作成を要求する "x" を受け取るようになり ... torchaka in bpo-23252 .) ZipFile.open() メソッドの mode 引数が排他的作成を要求する "x" を受け取るようになり ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 5775
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... 2), 'three') */ { const char * file ; const char * mode = "r" ; int bufsize = 0 ; ok = PyArg_ParseTuple ( ... args , "s|si" , & file , & mode , & bufsize ); /* A string, and optionally another ...
https://man.plustar.jp/python/extending/extending.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 5775
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... cept a newline character, and there's an alternate mode ( re.DOTALL ) where it will match even a newline. ... , or 'ſpam' (the latter is matched only in Unicode mode). This lowercasing doesn't take the current locale ...
https://man.plustar.jp/python/howto/regex.html - [similar]
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 5775
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ん。 2to3 can also refactor doctests. To enable this mode, use the -d flag. Note that only doctests will be ...
https://man.plustar.jp/python/library/2to3.html - [similar]
27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 5775
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ce, not only the most recent frame. The cumulative mode can only be used with key_type equals to 'filename ...
https://man.plustar.jp/python/library/tracemalloc.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 5775
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... e) になりました ( PEP 446 )。 隔離モード (isolated mode) の為のコマンドラインオプション ( bpo-16499 )。 非 ... 不可になりました ( PEP 446 )。 隔離モード (isolated mode) のための新たなコマンドラインオプション ( bpo-1649 ... tian Heimes in bpo-11016 .) モジュールは新たに filemode() フラグの S_IFDOOR , S_IFPORT , S_IFWHT をサポート ... -l が追加されました。これは「隔離モード (isolated mode)」で Python を実行します。これが意味するのは、 sys ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 5694
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... n 2 と 3 の違いを学びましょう。 Futurize (もしくは Modernize ) を使ってコードをアップデートしてください。 ... 化ツールとしては 2 つの選択肢があります: Futurize と Modernize です。 どちらのツールが良いかはあなたのコード ... thon 3 のイディオムと慣例を積極的に使います。 他方 Modernize はより保守的で、互換性保持を six によって提供 ... ビルトインの open() ではなく io.open() を使う修正は、Modernize ではデフォルトでオフです)。良い報せ。ですが、 ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
Unicode HOWTO — Python 3.6.5 ドキュメント 5694
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Unic ... 可能です: with open ( 'test' , encoding = 'utf-8' , mode = 'w+' ) as f : f . write ( ' \u4500 blah blah bla ...
https://man.plustar.jp/python/howto/unicode.html - [similar]
14.2. configparser --- 設定ファイルのパーサー — Python 3.6.5 ドキュメント 5694
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tboolean() メソッドでも使えます。例えば: >>> 'BatchMode' in topsecret False >>> topsecret . getboolean ( ' ... BatchMode' , fallback = True ) True >>> config [ 'DEFAULT' ] ... [ 'BatchMode' ] = 'no' >>> topsecret . getboolean ( 'BatchMode' ... g to write to a file or when you get it in non-raw mode. Setting # values using the mapping protocol or Co ...
https://man.plustar.jp/python/library/configparser.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 NEXT