Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 58 for been (0.030 sec.)
What's New In Python 3.6 — Python 3.6.5 ドキュメント 17842
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... idered stable. A new file system path protocol has been implemented to support path-like objects . All sta ... ndard library functions operating on paths have been updated to work with the new protocol. datetime モ ... い。 セキュリティの改善: The new secrets module has been added to simplify the generation of cryptographica ... 2 を指しています。 python.exe and pythonw.exe have been marked as long-path aware, which means that the 26 ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
メモリ管理 — Python 3.6.5 ドキュメント 8928
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... the memory block pointed to by p , which must have been returned by a previous call to PyMem_RawMalloc() , ... awCalloc() . Otherwise, or if PyMem_RawFree(p) has been called before, undefined behavior occurs. p が NUL ... pointer if possible, as if PyObject_Malloc(1) had been called instead. The memory will not have been init ... inter if possible, as if PyObject_Calloc(1, 1) had been called instead. バージョン 3.5 で追加. void* PyObj ...
https://man.plustar.jp/python/c-api/memory.html - [similar]
26.6. unittest.mock --- 入門 — Python 3.6.5 ドキュメント 8533
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... control what is returned. After the MagicMock has been used we can use attributes like call_args_list to ... 'b' ] 'fish' >>> mock [ 'd' ] 'eggs' After it has been used you can make assertions about the access usin ... ample: >>> class MyMock ( MagicMock ): ... def has_been_called ( self ): ... return self . called ... >>> ... ne ) >>> mymock <MyMock id='...'> >>> mymock . has_been_called () False >>> mymock () >>> mymock . has_bee ...
https://man.plustar.jp/python/library/unittest.mock-examples.html - [similar]
24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 8255
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tle.window_width() and Turtle.window_height() have been eliminated. Methods with these names and functiona ... n / Screen -methods.) The method Turtle.fill() has been eliminated. The behaviour of begin_fill() and end_ ... an end_fill() call. A method Turtle.filling() has been added. It returns a boolean value: True if a filli ... e.shapetransform() and Turtle.get_shapepoly() have been added. Thus the full range of regular linear trans ...
https://man.plustar.jp/python/library/turtle.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 7962
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... tutils module now supports xz compression, and can be enabled by passing xztar as an argument to bdist --f ... pect coroutine functions and coroutine objects has been added: iscoroutine() , iscoroutinefunction() , isa ... tion returning an iterator of DirEntry objects has been added. If possible, scandir() extracts file attrib ... ) Various SIG* constants in the signal module have been converted into Enums . This allows meaningful name ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 7860
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... le() or PyArg_ParseTupleAndKeywords() , and hasn't been converted to work with Argument Clinic yet. For my ... If this is the first time that module or class has been used with Argument Clinic in this C file, you must ... d---your block now has output, and a .c.h file has been generated! Reopen the file in your text editor to ... plaint. For readability, most of the glue code has been generated to a .c.h file. You'll need to include t ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
8.8. weakref --- 弱参照 — Python 3.6.5 ドキュメント 7772
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... er shutdown when module globals are liable to have been replaced by None . __call__ ( ) ¶ If self is alive ... ence object o = r () if o is None : # referent has been garbage collected print ( "Object has been dealloc ... referent and the number of times the reference has been called. """ ob = super ( ExtendedRef , self ) . __ ...
https://man.plustar.jp/python/library/weakref.html - [similar]
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 7567
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e PEP 525 for more details. 注釈 This function has been added on a provisional basis (see PEP 411 for deta ... e PEP 492 for more details. 注釈 This function has been added on a provisional basis (see PEP 411 for deta ... eturn event is reported even when an exception has been set). The function is thread-specific, but there i ... Lib/asyncio/base_events.py 注釈 This function has been added on a provisional basis (see PEP 411 for deta ...
https://man.plustar.jp/python/library/sys.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 7567
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... atibilities between old- and new-style classes has been removed: you can now assign to the __name__ and __ ... 適化 ¶ The creation of new-style class instances has been made much faster; they're now faster than classic ... classes! The sort() method of list objects has been extensively rewritten by Tim Peters, and the imple ... Hettinger.) A number of small rearrangements have been made in various hotspots to improve performance, s ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 7479
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... ce from most other computer applications, but it's been part of curses since it was first written, and it' ... l you have to do is to be sure that the screen has been redrawn before pausing to wait for user input, by ... ser to hit a key, displaying the key if echo() has been called earlier. You can optionally specify a coord ...
https://man.plustar.jp/python/howto/curses.html - [similar]
PREV 1 2 3 4 5 6 NEXT