Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 234 for IF (0.073 sec.)
27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 5734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... are_to ( snapshot1 , 'lineno' ) print ( "[ Top 10 differences ]" ) for stat in top_stats [: 10 ]: print ... イートのテストを実行する前後の出力例です: [ Top 10 differences ] < frozen importlib . _bootstrap > : 716 ... ne of the doctest module. The traceback may change if a new module is loaded. 27.7.1.4. top を整形化する ... e ( frame . filename , frame . lineno ) . strip () if line : print ( ' %s ' % line ) other = top_stats [ ...
https://man.plustar.jp/python/library/tracemalloc.html - [similar]
21.28. ipaddress --- IPv4/IPv6 操作ライブラリ — Python 3.6.5 ドキュメント 5703
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... for IPv6) を参照。 バージョン 3.4 で追加. is_unspecified ¶ アドレスが未定義の時に True . RFC 5735 (IPv4) ... ¶ is_multicast ¶ is_private ¶ is_global ¶ is_unspecified ¶ is_reserved ¶ is_loopback ¶ is_link_local ¶ バ ... x , or a string representation of an IPv4 address. If it's the latter, the mask is interpreted as a net ... mask if it starts with a non-zero field, or as a host mask ...
https://man.plustar.jp/python/library/ipaddress.html - [similar]
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 5703
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... are also accepted for the filename argument. reopenIfNeeded ( ) ¶ Checks to see if the file has changed. ... If it has, the existing stream is flushed and closed ... puts the record to the file, but first calls reopenIfNeeded() to reopen the file if it has changed. 16.8 ... current log file is nearly maxBytes in length; but if either of maxBytes or backupCount is zero, rollove ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
はじめに — Python 3.6.5 ドキュメント 5662
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... Py_ssize_t i , n ; n = PyObject_Length ( target ); if ( n < 0 ) return -1 ; for ( i = 0 ; i < n ; i ++ ) ... { PyObject * index = PyLong_FromSsize_t ( i ); if ( ! index ) return -1 ; if ( PyObject_SetItem ( ta ... alue ; PyObject * item ; n = PyList_Size ( list ); if ( n < 0 ) return -1 ; /* Not a list */ for ( i = 0 ... em = PyList_GetItem ( list , i ); /* Can't fail */ if ( ! PyLong_Check ( item )) continue ; /* Skip non- ...
https://man.plustar.jp/python/c-api/intro.html - [similar]
1. 他のアプリケーションへの Python の埋め込み — Python 3.6.5 ドキュメント 5662
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... * program = Py_DecodeLocale ( argv [ 0 ], NULL ); if ( program == NULL ) { fprintf ( stderr , "Fatal er ... ime \n " "print('Today is', ctime(time())) \n " ); if ( Py_FinalizeEx () < 0 ) { exit ( 120 ); } PyMem_R ... , * pFunc ; PyObject * pArgs , * pValue ; int i ; if ( argc < 3 ) { fprintf ( stderr , "Usage: call pyt ... = PyImport_Import ( pName ); Py_DECREF ( pName ); if ( pModule != NULL ) { pFunc = PyObject_GetAttrStri ...
https://man.plustar.jp/python/extending/embedding.html - [similar]
6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 5662
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... l_startup_hook callback of the underlying library. If function is specified, it will be used as the new ... hook function; if omitted or None , any function already installed i ... pre_input_hook callback of the underlying library. If function is specified, it will be used as the new ... hook function; if omitted or None , any function already installed i ...
https://man.plustar.jp/python/library/readline.html - [similar]
10. 完全な文法仕様 — Python 3.6.5 ドキュメント 5662
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... _stmt : 'assert' test [ ',' test ] compound_stmt : if_stmt | while_stmt | for_stmt | try_stmt | with_stm ... nc_stmt : ASYNC ( funcdef | with_stmt | for_stmt ) if_stmt : 'if' test ':' suite ( 'elif' test ':' suite ... t | NEWLINE INDENT stmt + DEDENT test : or_test [ 'if' or_test 'else' test ] | lambdef test_nocond : or_ ... or_expr : and_expr ( '^' and_expr ) * and_expr : shift_expr ( '&' shift_expr ) * shift_expr : arith_expr ...
https://man.plustar.jp/python/reference/grammar.html - [similar]
31.2. pkgutil --- パッケージ拡張ユーティリティ — Python 3.6.5 ドキュメント 5580
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リズムをラップする、 PEP 302 に基づく Finder です。 If dirname is a string, a PEP 302 finder is created t ... hat searches that directory. If dirname is None , a PEP 302 finder is created that ... turned finder is cached in sys.path_importer_cache if it was newly created by a path hook. キャッシュ (や ... ¶ Yield finder objects for the given module name. If fullname contains a '.', the finders will be for t ...
https://man.plustar.jp/python/library/pkgutil.html - [similar]
24.3. shlex --- 単純な字句解析 — Python 3.6.5 ドキュメント 5580
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ical analyzer object. The initialization argument, if present, specifies where to read characters from. ... t with read() and readline() methods, or a string. If no argument is given, input will be taken from sys ... ch sets the initial value of the infile attribute. If the instream argument is omitted or equal to sys.s ... s the behaviour seen under Python 3.5 and earlier. If set to True , then parsing of the characters ();<> ...
https://man.plustar.jp/python/library/shlex.html - [similar]
20.8. xml.dom.pulldom --- 部分的な DOM ツリー構築のサポート — Python 3.6.5 ドキ... 5580
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... se ( 'sales_items.xml' ) for event , node in doc : if event == pulldom . START_ELEMENT and node . tagNam ... e == 'item' : if int ( node . getAttribute ( 'price' )) > 50 : doc ... t and the current node as xml.dom.minidom.Document if event equals START_DOCUMENT , xml.dom.minidom.Elem ... ent if event equals START_ELEMENT or END_ELEMENT or xml.d ...
https://man.plustar.jp/python/library/xml.dom.pulldom.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT