Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 11 for REF (0.027 sec.)
8.8. weakref --- 弱参照 — Python 3.6.5 ドキュメント 13300
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 8. データ型 » 8.8. weakref --- 弱参照 ¶ ソースコード: Lib/weakref.py weakref ... は、Pythonプログラマがオブジェクトへの弱参照 ( weak refarence )を作成できるようにします。 以下では、用語リ ... ファレント( referent ) は弱参照が参照するオブジェクトを意味します。 ... に使われているため存続しつづけることになります。 weakref モジュールが提供している WeakKeyDictionary や Weak ...
https://man.plustar.jp/python/library/weakref.html - [similar]
弱参照オブジェクト — Python 3.6.5 ドキュメント 11255
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 限りプロキシとして振舞うオブジェクトです。 int PyWeakref_Check ( ob ) ¶ ob が参照オブジェクトかプロキシオブ ... ジェクトの場合に真を返します。 int PyWeakref_CheckRef ( ob ) ¶ ob が参照オブジェクトの場合に真を ... 返します。 int PyWeakref_CheckProxy ( ob ) ¶ ob がプロキシオブジェクトの場合 ... に真を返します。 PyObject * PyWeakref_NewRef ( PyObject *ob , PyObject *callback ) ¶ Ret ...
https://man.plustar.jp/python/c-api/weakref.html - [similar]
20.13. xml.parsers.expat --- Expat を使った高速な XML 解析 — Python 3.6.5 ドキ... 9602
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リケーションに任されます: この値は関数 ExternalEntityRefHandler() や NotationDeclHandler() , UnparsedEntity ... ntext パラメータは、以下に記すように ExternalEntityRefHandler() ハンドラ関数に渡される文字列でなければなり ... るため、すべての引数に None を設定して ExternalEntityRefHandler を呼び出します。XML文書が文書型定義を持って ... いなければ、 ExternalEntityRefHandler が呼び出しますが、 StartDoctypeDeclHandler ...
https://man.plustar.jp/python/library/pyexpat.html - [similar]
デザインと歴史 FAQ — Python 3.6.5 ドキュメント 8784
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... sts. The implementation uses a contiguous array of references to other objects, and keeps a pointer to th ... ct [ index ][ index ] . c = 63 こう書いてください: ref = function ( args ) . mydict [ index ][ index ] re ... f . a = 21 ref . b = 42 ref . c = 63 Python では実行時に名前束縛が ... on よくある質問 » © 著作権 2001-2022, Python Software Foundation. Python Software Foundation は非営利団体 ...
https://man.plustar.jp/python/faq/design.html - [similar]
引数の解釈と値の構築 — Python 3.6.5 ドキュメント 8588
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... れるオブジェクトへの参照はすべて 借用 参照 (borrowed reference) になります; これらのオブジェクトの参照カウン ... 用例を以下に示します。この例は、弱参照のための _weakref 補助モジュールのソースコードからとったものです: st ... atic PyObject * weakref_ref ( PyObject * self , PyObject * args ) { PyObje ... * result = NULL ; if ( PyArg_UnpackTuple ( args , "ref" , 1 , 2 , & object , & callback )) { result = PyW ...
https://man.plustar.jp/python/c-api/arg.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 8179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... cept argument to openssl's s_server mode). Always prefer bind_port() over find_unused_port() where possib ... __ ), * args ) test.support. detect_api_mismatch ( ref_api , other_api , * , ignore=() ) ¶ Returns the se ... t of attributes, functions or methods of ref_api not found on other_api , except for a defined ... 26. 開発ツール » © 著作権 2001-2022, Python Software Foundation. Python Software Foundation は非営利団体 ...
https://man.plustar.jp/python/library/test.html - [similar]
What's New in Python 2.1 — Python 3.6.5 ドキュメント 7966
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ビルド A.M. Kuchling 著、実装 PEP 205: 弱参照 ¶ weakref モジュールを通して利用出来る弱参照(weak references ... t has a side effect; the _cache dictionary holds a reference to the return values, so they'll never be de ... す。オブジェクト obj への弱参照を作るには、 wr = weakref.ref(obj) とします。参照されているオブジェクトは、そ ... he . has_key ( x ): obj = _cache [ x ]() # If weak reference object still exists, # return it if obj is n ...
https://man.plustar.jp/python/whatsnew/2.1.html - [similar]
36.2. imp --- import 内部へのアクセス — Python 3.6.5 ドキュメント 7770
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ください。前者の使用例は、 importlib ドキュメントの:ref: importlib-examples セクションを参照してください。 ... れたモジュール群 » © 著作権 2001-2022, Python Software Foundation. Python Software Foundation は非営利団体 ...
https://man.plustar.jp/python/library/imp.html - [similar]
2. 字句解析 — Python 3.6.5 ドキュメント 7557
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... の字句定義で記述されます: stringliteral ::= [ stringprefix ]( shortstring | longstring ) stringprefix ::= " ... "\" <any source character> bytesliteral ::= bytesprefix ( shortbytes | longbytes ) bytesprefix ::= "b" | ... いない文法的な制限が一つあります。リテラルの stringprefix や bytesprefix と残りの部分の間に空白を入れてはな ... はできません。 文字列の .format() メソッドで使われる ref: 書式指定ミニ言語仕様 <formatspec> でも同様です. フ ...
https://man.plustar.jp/python/reference/lexical_analysis.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 7361
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ocale ( locale . LC_ALL , '' ) code = locale . getpreferredencoding () この後、 str.encode() を呼び出すと ... せます。 The virtual screen may be updated by a noutrefresh() call after write operations such as addstr() ... have been performed on a window. The normal refresh() call is simply noutrefresh() followed by dou ... e and perhaps reduce screen flicker by issuing noutrefresh() calls on all windows, followed by a single d ...
https://man.plustar.jp/python/library/curses.html - [similar]
PREV 1 2 NEXT