Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 12 for rest (0.022 sec.)
- 21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 14627
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
r () ... # doctest: +SKIP '230 Anonymous login ok, restrictions apply.' dr-xr-xr-x 9 ftp ftp 154 May 6 10:...
TP. retrbinary ( cmd , callback , blocksize=8192 , rest=None ) ¶ Retrieve a file in binary transfer mode....
sed to callback ). A reasonable default is chosen. rest means the same thing as in the transfercmd() metho...
nary ( cmd , fp , blocksize=8192 , callback=None , rest=None ) ¶ Store a file in binary transfer mode. cmd...
- https://man.plustar.jp/python/library/ftplib.html - [similar]
- What's New In Python 3.0 — Python 3.6.5 ドキュメント 9091
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
32 : 拡張されたイテレータのアンパッキング。 a, b, *rest = some_sequence のようなことを書けるようになりまし...
た。 *rest, a = stuff も出来ます。 rest オブジェクトは常に (空...
右辺には任意のイテラブルを置けます。例えば: ( a , * rest , b ) = range ( 5 ) これは a に 0 を、 b に 4 を、...
そして rest に [1, 2, 3] をセットします。 Dictionary comprehen...
- https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
- 11.2. os.path --- 共通のパス名操作 — Python 3.6.5 ドキュメント 8631
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
tdrive を使ってください。 パス名 path をペア (unc, rest) に分割します。ここで unc は ( r'\\host\mount' のよ...
うな) UNC マウントポイント、そして rest は ( r'\path\file.ext' のような) パスの残りの部分で...
- https://man.plustar.jp/python/library/os.path.html - [similar]
- 32.7. tokenize --- Pythonソースのためのトークナイザ — Python 3.6.5 ドキュメント 8384
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
wing 12 digits, and the 13th isn't close to 5, the rest of the output should be platform-independent. >>>...
- https://man.plustar.jp/python/library/tokenize.html - [similar]
- 正規表現 HOWTO — Python 3.6.5 ドキュメント 8277
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規
...
d it will then progressively back up and retry the rest of the RE again and again. It will back up until i...
subgroups which match different components of interest. For example, an RFC-822 header line is divided in...
ches the '<' in '<html>' , and the .* consumes the rest of the string. There's still more left in the RE,...
- https://man.plustar.jp/python/howto/regex.html - [similar]
- 26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 8277
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
id Python. For example, doctest like examples in a reST document could also be refactored with this option...
- https://man.plustar.jp/python/library/2to3.html - [similar]
- 16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 8277
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
racter-at-a-time line editing without touching the rest of the screen. curses. flash ( ) ¶ スクリーンを点滅...
ect. A pad is like a window, except that it is not restricted by the screen size, and is not necessarily a...
bytes object str with the supplied parameters, where str should be a parameterized string obtained from t...
nother callable object, func , which should be the rest of your curses-using application. If the applicati...
- https://man.plustar.jp/python/library/curses.html - [similar]
- Argument Clinic How-To — Python 3.6.5 ドキュメント 8154
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu
...
are. (In the future Argument Clinic may relax this restriction.) 例: /*[clinic input] module _pickle class...
may have a new argument parsing library that isn't restricted to what PyArg_ParseTuple() supports; this fl...
of Python types (and possibly pseudo-types); this restricts the allowable Python argument to values of th...
s_of Only supported for the object converter. Requires that the Python value be a subclass of a Python typ...
- https://man.plustar.jp/python/howto/clinic.html - [similar]
- 26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 8154
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
without affecting the # version being used by the rest of the test suite. One copy uses the # C implement...
file creation. On both platforms, the old value is restored by __exit__() . class test.support. WarningsRe...
- https://man.plustar.jp/python/library/test.html - [similar]
- 3. データモデル — Python 3.6.5 ドキュメント 8047
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
, this may help in assuring that imported modules are still available at the time when the __del__() metho...
注釈 The metaclass hint metaclass is consumed by the rest of the type machinery, and is never passed to __in...
- https://man.plustar.jp/python/reference/datamodel.html - [similar]