Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 260 for C (0.080 sec.)
What's New In Python 3.5 — Python 3.6.5 ドキュメント 4981
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... hat's New In Python 3.5 ¶ エディタ: Elvis Pranskevichus < elvis @ magic . io >, Yury Selivanov < yury @ ... magic . io > この記事では 3.4 と比較した Python 3.5 の新 ... イライト ¶ 新たな文法機能: PEP 492 、コルーチン、async 構文と await 構文。 PEP 465 、新たな行列乗算演算子 ... x() , bytearray.hex() memoryview.hex() メソッド。 (Contributed by Arnon Yaari in bpo-9951 .) memoryview ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
安定 ABI (Stable Appliction Binary Interface) — Python 3.6.5 ドキュメント 4951
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » 安定 ABI (Stable Appliction Binary Interface) ¶ 伝統的に Python の C API は ... からは limited API は PEP 384 に文書化されています。 C API のドキュメントでは、 limited API の一部でない ... 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファレンスマニュアル » © 著作権 2001-2022, P ...
https://man.plustar.jp/python/c-api/stable.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 4951
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... にアルファベット順に挙げます。 組み込み関数 abs() dict() help() min() setattr() all() dir() hex() next() ... slice() any() divmod() id() object() sorted() ascii() e ... numerate() input() oct() staticmethod() bin() eval() int() open() str() ... bool() exec() isinstance() ord() sum() bytearray() filter() is ...
https://man.plustar.jp/python/library/functions.html - [similar]
memoryview オブジェクト — Python 3.6.5 ドキュメント 4921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » 具象オブジェクト (concrete object) レイヤ » memoryview オブジェクト ¶ ... クトと同じように扱える Python オブジェクトの形をした C 言語レベルの バッファのインターフェース です。 PyO ... bject * PyMemoryView_FromObject ( PyObject *obj ) ¶ バッ ... ーの分別にもとづいて読み書きが可能となります。 PyObject * PyMemoryView_FromMemory ( char *mem , Py_ssize_ ...
https://man.plustar.jp/python/c-api/memoryview.html - [similar]
タプルオブジェクト (tuple object) — Python 3.6.5 ドキュメント 4921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » 具象オブジェクト (concrete object) レイヤ » タプルオブジェクト (tuple ... object) ¶ PyTupleObject ¶ この PyObject のサブタイプは P ... ython のタプルオブジェクトを表現します。 PyTypeObject PyTuple_Type ¶ この PyTypeObject のインスタンスは ... における tuple と同じオブジェクトです。 int PyTuple_Check ( PyObject *p ) ¶ p がタプルオブジェクトか、タ ...
https://man.plustar.jp/python/c-api/tuple.html - [similar]
用語集 — Python 3.6.5 ドキュメント 4921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... きます。 ... The default Python prompt of the interactive shell when entering code for an indented code ... block or within a pair of matching left and right delim ... iters (parentheses, square brackets or curly braces). 2to3 Python 2.x のコードを P ... ます。単体のツールとしての使えるスクリプトが Tools/scripts/2to3 として提供されています。 2to3 - Python 2 ...
https://man.plustar.jp/python/glossary.html - [similar]
Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 4921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... 拡張モジュール移植 ¶ author: Benjamin Peterson 概要 C-API の変更は Python 3 の目標には入っていませんでし ... きませんでした。実際、 int() と long() の統合などは C レベルのほうが目立ちます。この文書では、なくなった ... かを、統合したり、きっちり分けたりしました。 str/unicode の統合 ¶ Python 3 の str() タイプは Python 2 の ... unicode() と同じもので、どちらも C 関数は PyUnicode_* と ...
https://man.plustar.jp/python/howto/cporting.html - [similar]
26.6. unittest.mock --- 入門 — Python 3.6.5 ドキュメント 4921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 26. 開発ツール » 26.6. unittest.mock --- 入門 ¶ バージョン 3.3 で追加. 26.6.1. Mock を ... 使う ¶ 26.6.1.1. Mock のパッチ用メソッド ¶ 一般的な Mock の使い方の中に ... のメソッドを置き換えることができます: >>> real = SomeClass () >>> real . method = MagicMock ( name = 'met ... > real . method ( 3 , 4 , 5 , key = 'value' ) <MagicMock name='method()' id='...'> モック(上の例では re ...
https://man.plustar.jp/python/library/unittest.mock-examples.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 4921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... hat's New In Python 3.6 ¶ エディタ: Elvis Pranskevichus < elvis @ magic . io >, Yury Selivanov < yury @ ... magic . io > この記事では 3.5 と比較した Python 3.6 の新 ... 0 : 非同期内包表記 新たなライブラリーモジュール: secrets : PEP 506 -- 標準ライブラリーに Secrets モジュ ... ールを追加 . CPython の実装の改善: dict 型は、 Raymond Hettinger ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
コルーチンオブジェクト — Python 3.6.5 ドキュメント 4882
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » 具象オブジェクト (concrete object) レイヤ » コルーチンオブジェクト ¶ バ ... ージョン 3.5 で追加. コルーチンオブジェクトは async キーワードを使って定義した関数が返すオブジェクトで ... す。 PyCoroObject ¶ コルーチンオブジェクトのための C 構造体 ... 。 PyTypeObject PyCoro_Type ¶ コルーチンオブジェクトに対応する型オ ...
https://man.plustar.jp/python/c-api/coro.html - [similar]