Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 101 - 110 of about 319 for Py (0.131 sec.)
マップ型プロトコル (mapping protocol) — Python 3.6.5 ドキュメント 4445
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... yer) » マップ型プロトコル (mapping protocol) ¶ int PyMapping_Check ( PyObject *o ) ¶ Return 1 if the obj ... l, and 0 otherwise. This function always succeeds. Py_ssize_t PyMapping_Size ( PyObject *o ) ¶ Py_ssize_ ... t PyMapping_Length ( PyObject *o ) ¶ Returns the number ... rovide mapping protocol, this is equivalent to the Python expression len(o) . int PyMapping_DelItemStrin ...
https://man.plustar.jp/python/c-api/mapping.html - [similar]
21.2. cgi --- CGI (ゲートウェイインタフェース規格) のサポート — Python 3.6.5 ド... 4445
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ンタフェース規格) のサポート ¶ ソースコード: Lib/cgi.py ゲートウェイインタフェース規格 (CGI) に準拠したスク ... ポートするためのモジュールです。 このモジュールでは、Python で CGI スクリプトを書く際に使える様々なユーティ ... このモジュールでは、上記のケースの違いに注意しつつ、Python スクリプトに対しては単純なインタフェースを提供 ... に通知します。最小のヘッダセクションを生成するための Python のコードは以下のようなものです: print ( "Conte ...
https://man.plustar.jp/python/library/cgi.html - [similar]
32.8. tabnanny --- あいまいなインデントの検出 — Python 3.6.5 ドキュメント 4445
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 32. Python言語サービス » 32.8. tabnanny --- あいまいなイン ... デントの検出 ¶ ソースコード: Lib/tabnanny.py 差し当たり、このモジュールはスクリプトとして呼び出 ... ーを再帰的に下って行き、この通り道に沿ってすべての .py ファイルをチェックします。 file_or_dir が通常の Py ... 処理するために使われます。 参考 tokenize モジュール Pythonソースコードの字句解析器。 関連キーワード: tabn ...
https://man.plustar.jp/python/library/tabnanny.html - [similar]
12.5. dbm --- Unix "データベース" へのインタフェース — Python 3.6.5 ドキュメン... 4418
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... へのインタフェース ¶ ソースコード: Lib/dbm/__init__.py dbm は DBM データベースのいくつかの種類 ( dbm.gnu ... some values db [ b 'hello' ] = b 'there' db [ 'www.python.org' ] = 'Python Website' db [ 'www.cnn.com' ] ... keys are considered bytes now. assert db [ b 'www.python.org' ] == b 'Python Website' # Notice how the ... f the dict interface work too. print ( db . get ( 'python.org' , b 'not present' )) # Storing a non-stri ...
https://man.plustar.jp/python/library/dbm.html - [similar]
31.5. importlib --- import の実装 — Python 3.6.5 ドキュメント 4418
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ン 3.1 で追加. ソースコード: Lib/importlib/__init__.py 31.5.1. はじめに ¶ importlib パッケージの目的は2つ ... あります。1つ目は Python ソースコード中にある import 文の(そして、拡張と ... 提供することです。このパッケージは import 文の、どの Python インタープリターでも動作する実装を提供します。 ... また、 Python 以外の言語で実装されたどの実装よりも把握しやす ...
https://man.plustar.jp/python/library/importlib.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 4418
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New In Python 3.4 ¶ 著者: R. David Murray < rdmurray @ bitda ... nce . com > (編集者) この記事では 3.3 と比較した Python 3.4 の新機能を解説します。 Python 3.4 は2014年 ... については 変更履歴 をご覧ください。 参考 PEP 429 -- Python 3.4 リリーススケジュール 概要 -- リリースハイラ ... イト ¶ 新たな文法機能: Python 3.4 に追加された新しい文法機能はありません。 そ ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
弱参照オブジェクト — Python 3.6.5 ドキュメント 4390
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... クト (concrete object) レイヤ » 弱参照オブジェクト ¶ Python は 弱参照 を第一級オブジェクト (first-class ob ... 可能な限りプロキシとして振舞うオブジェクトです。 int PyWeakref_Check ( ob ) ¶ ob が参照オブジェクトかプロキ ... シオブジェクトの場合に真を返します。 int PyWeakref_CheckRef ( ob ) ¶ ob が参照オブジェクトの場 ... 合に真を返します。 int PyWeakref_CheckProxy ( ob ) ¶ ob がプロキシオブジェク ...
https://man.plustar.jp/python/c-api/weakref.html - [similar]
32.1. parser --- Python 解析木にアクセスする — Python 3.6.5 ドキュメント 4390
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 32. Python言語サービス » 32.1. parser --- Python 解析木に ... アクセスする ¶ parser モジュールは Python の内部パーサとバイトコード・コンパイラへのイン ... スを提供します。このインターフェイスの第一の目的は、 Python コードから Python の式の解析木を編集したり、こ ... ドを作成したりできるようにすることです。これは任意の Python コードの断片を文字列として構文解析や変更を行う ...
https://man.plustar.jp/python/library/parser.html - [similar]
データ整列化 (data marshalling) のサポート — Python 3.6.5 ドキュメント 4362
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 動小数点数に対してバイナリフォーマットを利用します。 Py_MARSHAL_VERSION は現在のバージョン (バージョン 2) ... を示します。 void PyMarshal_WriteLongToFile ( long value , FILE *file , ... ん。 version はファイルフォーマットを示します。 void PyMarshal_WriteObjectToFile ( PyObject *value , FILE ... *file , int version ) ¶ Python オブジェクト value を file へ整列化します。 ve ...
https://man.plustar.jp/python/c-api/marshal.html - [similar]
8.7. array --- 効率のよい数値アレイ — Python 3.6.5 ドキュメント 4362
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... す。次の型コードが定義されています: 型コード C の型 Python の型 最小サイズ (バイト単位) 注釈 'b' signed c ... har int 1 'B' unsigned char int 1 'u' Py_UNICODE Unicode文字(unicode型) 2 (1) 'h' signed sh ... d' double 浮動小数点数 8 注釈: タイプコード 'u' は Python の古い Unicode 文字 ( Py_UNICODE あるいは wcha ... れは 16bit か 32bit になります。 'u' は将来的に他の Py_UNICODE API と一緒に削除されるでしょう。 Deprecate ...
https://man.plustar.jp/python/library/array.html - [similar]
PREV 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 NEXT