Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 141 - 150 of about 267 for 実装 (0.060 sec.)
7. 単純文 (simple statement) — Python 3.6.5 ドキュメント 4516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... 変更されます。 CPython implementation detail: 現在の実装では、ターゲットの構文は式の構文と同じであるとみなさ ... 参照しているという前提の上に成り立っています。現在の実装では、組み込み変数 __debug__ は通常の状況では True で ... はなりません。 CPython implementation detail: 現在の実装では、これらの制限のうち幾つかについては強制していま ... この緩和された仕様を乱用すべきではありません。将来の実装では、この制限を強制したり、暗黙のうちにプログラムの ...
https://man.plustar.jp/python/reference/simple_stmts.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 4516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ライブラリーに Secrets モジュールを追加 . CPython の実装の改善: dict 型は、 Raymond Hettinger の提案に基づき ... tation と同様の よりコンパクトな表現 を使うように再実装されました。 その結果、 Python 3.5 と比較して辞書が使 ... に async / await 構文をサポートしました。Python 3.5 実装における大きな制約は同一の関数実体内で await と yiel ... written and implemented by Eric Snow. 新たな dict 実装 ¶ The dict type now uses a "compact" representatio ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
Boolean オブジェクト — Python 3.6.5 ドキュメント 4457
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ジェクト ¶ Python の Bool 型は整数のサブクラスとして実装されています。ブール型の値は、 Py_False と Py_True の ...
https://man.plustar.jp/python/c-api/bool.html - [similar]
コードオブジェクト — Python 3.6.5 ドキュメント 4457
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ェクト ¶ コードオブジェクト(Code objects)は CPython 実装の低レベルな詳細部分です。各オブジェクトは関数に束縛 ...
https://man.plustar.jp/python/c-api/code.html - [similar]
ジェネレータオブジェクト — Python 3.6.5 ドキュメント 4457
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... タオブジェクトは、 Python がジェネレータイテレータを実装するのに使っているオブジェクトです。ジェネレータオブ ...
https://man.plustar.jp/python/c-api/gen.html - [similar]
整数型オブジェクト (integer object) — Python 3.6.5 ドキュメント 4457
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ¶ すべての整数は任意の長さをもつ "long" 整数として実装されます。 On error, most PyLong_As* APIs return (re ... して返します。失敗のときには NULL を返します。 現在の実装では、 -5 から 256 までの全ての整数に対する整数オブジ ...
https://man.plustar.jp/python/c-api/long.html - [similar]
Unicode オブジェクトと codec — Python 3.6.5 ドキュメント 4457
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... odec ¶ Unicode オブジェクト ¶ Python3.3 の PEP 393 実装から、メモリ効率を維持しながらUnicode文字の完全な範囲 ... れたすべてのオブジェクトです。これらのオブジェクトは実装が許すかぎり最も効率の良い表現形式を使用します。 "古 ... あるでしょう。 Unicode 型 ¶ 以下は Python の Unicode 実装に用いられている基本 Unicode オブジェクト型です: Py_ ... moved in version 4.0. これらのAPI 関数は PEP 393 の実装により廃止予定です。Python 3.x では削除されないため、 ...
https://man.plustar.jp/python/c-api/unicode.html - [similar]
8.7. array --- 効率のよい数値アレイ — Python 3.6.5 ドキュメント 4457
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 値の実際の表現はマシンアーキテクチャ (厳密に言うとCの実装) によって決まります。値の実際のサイズは itemsize 属 ... します。 アレイオブジェクトはバッファインタフェースを実装しており、 bytes-like objects をサポートしている場所 ...
https://man.plustar.jp/python/library/array.html - [similar]
19.6. base64 --- Base16, Base32, Base64, Base85 データの符号化 — Python 3.6.5 ... 4457
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の倍数になるようにパディングされます。なお、 btoa の実装は常にパディングします。 adobe を指定すると、エンコー ... イトシーケンスを <~ と ~> で囲みます。これは Adobe の実装で使われています。 バージョン 3.4 で追加. base64. a8 ...
https://man.plustar.jp/python/library/base64.html - [similar]
15. 暗号関連のサービス — Python 3.6.5 ドキュメント 4457
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... いるモジュールは、暗号的な性質の様々なアルゴリズムを実装しています。これらはインストールする際の選択によって ...
https://man.plustar.jp/python/library/crypto.html - [similar]