Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 171 - 180 of about 213 for return (0.169 sec.)
31.5. importlib --- import の実装 — Python 3.6.5 ドキュメント 4533
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... reasons, the loader's create_module() method must return None or a type for which its __class__ attribute c ... lib . util . resolve_name ( name , package ) try : return sys . modules [ absolute_name ] except KeyError : ... : setattr ( parent_module , child_name , module ) return module 関連キーワード: モジュール , importlib , mo ...
https://man.plustar.jp/python/library/importlib.html - [similar]
17.6. sched --- イベントスケジューラ — Python 3.6.5 ドキュメント 4533
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ument should be a numeric type compatible with the return value of the timefunc function passed to the const ...
https://man.plustar.jp/python/library/sched.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 4533
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... , host=HOST ) ¶ Bind the socket to a free port and return the port number. Relies on ephemeral ports in orde ... y=socket.AF_INET , socktype=socket.SOCK_STREAM ) ¶ Returns an unused port that should be suitable for bindin ... then closed and deleted, and the ephemeral port is returned. Either this method or bind_port() should be use ... port load_package_tests def load_tests ( * args ): return load_package_tests ( os . path . dirname ( __file_ ...
https://man.plustar.jp/python/library/test.html - [similar]
20.8. xml.dom.pulldom --- 部分的な DOM ツリー構築のサポート — Python 3.6.5 ドキ... 4533
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eam ( stream , parser , bufsize ) ¶ getEvent ( ) ¶ Return a tuple containing event and the current node as x ...
https://man.plustar.jp/python/library/xml.dom.pulldom.html - [similar]
6. モジュール (module) — Python 3.6.5 ドキュメント 4533
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ' ' ) a , b = b , a + b print () def fib2 ( n ): # return Fibonacci series up to n result = [] a , b = 0 , 1 ... le b < n : result . append ( b ) a , b = b , a + b return result 次に Python インタプリタに入り、モジュールを ...
https://man.plustar.jp/python/tutorial/modules.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 4533
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ile 1 : ... next = yield ... if next is None : ... return tally ... tally += next ... >>> def gather_tallies ... ... def __getattr__ ( self , attr ): ... try : ... return self . _extra_attributes [ attr ] ... except KeyEr ... ... def __getattr__ ( self , attr ): ... try : ... return self . _extra_attributes [ attr ] ... except KeyEr ... : >>> def outer (): ... def inner (): ... pass ... return inner ... >>> outer () . __name__ 'inner' >>> oute ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
引数の解釈と値の構築 — Python 3.6.5 ドキュメント 4491
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... result = PyWeakref_NewRef ( object , callback ); } return result ; } この例における PyArg_UnpackTuple() 呼び ... ect * Py_BuildValue ( const char *format , ... ) ¶ Return value: New reference. PyArg_Parse*() ファミリの関数 ... t. If the Unicode buffer pointer is NULL , None is returned. u# ( str ) [wchar_t *, int] Convert a Unicode ( ... ointer is NULL , the length is ignored and None is returned. U ( str または None ) [char *] s と同じです。 U ...
https://man.plustar.jp/python/c-api/arg.html - [similar]
循環参照ガベージコレクションをサポートする — Python 3.6.5 ドキュメント 4491
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... Resize an object allocated by PyObject_NewVar() . Returns the resized object or NULL on failure. void PyObj ... y_VISIT ( self -> foo ); Py_VISIT ( self -> bar ); return 0 ; } tp_clear ハンドラは inquiry 型であるか、オブ ...
https://man.plustar.jp/python/c-api/gcsupport.html - [similar]
4. C および C++ 拡張のビルド — Python 3.6.5 ドキュメント 4491
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... encode ( 'punycode' ) . replace ( b '-' , b '_' ) return b 'PyInit' + suffix 1つの共有ライブラリに複数の初期 ...
https://man.plustar.jp/python/extending/building.html - [similar]
デザインと歴史 FAQ — Python 3.6.5 ドキュメント 4491
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... . the_list = the_list def __eq__ ( self , other ): return self . the_list == other . the_list def __hash__ ( ... xception : result = ( result % 7777777 ) + i * 333 return result なお、リストのメンバーの中にハッシュ化できな ...
https://man.plustar.jp/python/faq/design.html - [similar]