Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 62 for context (0.060 sec.)
21.3. cgitb --- CGI スクリプトのトレースバック管理機構 — Python 3.6.5 ドキュメ... 7007
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 御します。 cgitb. enable ( display=1 , logdir=None , context=5 , format="html" ) ¶ この関数は、 sys.excepthook ... グファイルを配置するディレクトリです。オプション引数 context は、トレースバックの中で現在の行の周辺の何行を表示 ...
https://man.plustar.jp/python/library/cgitb.html - [similar]
5. 組み込み例外 — Python 3.6.5 ドキュメント 7007
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nally 節内で例外を送出 (または再送出) するとき、 __context__ は自動的に最後に捕まった例外に設定されます。新し ... 定されます。 __cause__ を設定することは、 __suppress_context__ 属性を True にすることも意味するので、 raise new ... に置き換え、古い例外はデバッグ時の調査で使えるよう __context__ に残す) ことができます。 デフォルトの traceback ... 連鎖させた例外は、存在するならば常に表示されます。 __context__ で暗黙に連鎖させた例外は、 __cause__ が None かつ ...
https://man.plustar.jp/python/library/exceptions.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 7007
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... host , port=563 , user=None , password=None , ssl_context=None , readermode=None , usenetrc=False [ , timeou ... If port is omitted, port 563 (NNTPS) is used. ssl_context is also optional, and is a SSLContext object. Plea ... で追加. バージョン 3.4 で変更: このクラスは ssl.SSLContext.check_hostname と Server Name Indication でホスト名 ... False. バージョン 3.2 で追加. NNTP. starttls ( ssl_context=None ) ¶ Send a STARTTLS command. This will enable ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
20.13. xml.parsers.expat --- Expat を使った高速な XML 解析 — Python 3.6.5 ドキ... 6950
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... いないときには None を返します。 xmlparser. GetInputContext ( ) ¶ 現在のイベントを発生させた入力データを文字列 ... となります。 xmlparser. ExternalEntityParserCreate ( context [ , encoding ] ) ¶ 親となるパーザで解析された内容が ... ィを解析するために使える "子の" パーザを作成します。 context パラメータは、以下に記すように ExternalEntityRefHa ... 送出しません。 xmlparser. ExternalEntityRefHandler ( context , base , systemId , publicId ) ¶ 外部エンティティの ...
https://man.plustar.jp/python/library/pyexpat.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 6950
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... use_datetime=False , use_builtin_types=False , * , context=None ) ¶ バージョン 3.3 で変更: use_builtin_types ... on user and password. If an HTTPS URL is provided, context may be ssl.SSLContext and configures the SSL setti ... rProxy を使用してください。 バージョン 3.5 で変更: context 引数が追加されました。 バージョン 3.6 で変更: Adde ... ン 3.5 で変更: Instances of ServerProxy support the context manager protocol for closing the underlying transp ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
What's New in Python 2.4 — Python 3.6.5 ドキュメント 6950
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... リに追加されました。これには 2 つのクラス Decimal , Context を含みます。 Decimal インスタンスは数値を表現し、 ... . sqrt () Decimal("351364.1828820134592177245001") Context 型 ¶ Context クラスのインスタンスは decimal 演算に ... スレッドローカルなデフォルトのコンテキストを、 getcontext() を呼び出すことで利用出来ます; デフォルトの精度、 ... を変更する効果についてお見せします: >>> decimal . getcontext () . prec 28 >>> decimal . Decimal ( 1 ) / decimal ...
https://man.plustar.jp/python/whatsnew/2.4.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 6892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... . (Contributed by Gregory P. Smith in bpo-27664 .) contextlib ¶ The contextlib.AbstractContextManager class h ... s been added to provide an abstract base class for context managers. It provides a sensible default implement ... lass has been added to the typing module as typing.ContextManager . (Contributed by Brett Cannon in bpo-25609 ... iterator. The scandir() iterator now supports the context manager protocol. If a scandir() iterator is neith ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 6776
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... イブラリ全体を通じて無効化されました。ただし ssl.SSLContext を手動でインスタンス化することによってなら今でも有 ... s Rath in bpo-15955 .) cgi ¶ FieldStorage クラスが context manager プロトコルをサポートするようになりました。 ... 'g'] (Contributed by Łukasz Langa in bpo-18159 .) contextlib ¶ 新規 context manager の contextlib.redirect_s ... edirect_stdout() と対となるものです)。: >>> import contextlib , io , logging >>> f = io . StringIO () >>> wit ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 6719
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... ith CObjects" ); return 1 ; } #define PyCapsule_GetContext(capsule) \ __PyCapsule_GetField(capsule, descr) #d ... efine PyCapsule_SetContext(capsule, context) \ __PyCapsule_SetField(capsule, ... descr, context) static void * PyCapsule_Import ( const char * nam ...
https://man.plustar.jp/python/howto/cporting.html - [similar]
21.19. telnetlib --- Telnet クライアント — Python 3.6.5 ドキュメント 6719
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 個々の説明を参照してください。 A Telnet object is a context manager and can be used in a with statement. When ... : ... tn . interact () ... バージョン 3.6 で変更: Context manager support added 参考 RFC 854 - Telnet プロト ...
https://man.plustar.jp/python/library/telnetlib.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT