4845 Commits (fa4e68d42582a0fb61baac98ac10b3fbf43f8751)

Author SHA1 Message Date
Victor Stinner fa4e68d425 Remove deadcode (HASH macro is no more defined) 12 years ago
Victor Stinner 92a419eea4 Remove now unused variables 12 years ago
Victor Stinner f3b46b4a66 unicode_char() uses get_latin1_char() to get latin1 singleton characters 12 years ago
Victor Stinner 985a82a6d2 add unicode_char() in unicodeobject.c to factorize code 12 years ago
Christian Heimes af01f66817 Issue #16136: Remove VMS support and VMS-related code 12 years ago
Victor Stinner 4ac9c00cff Better assertion in PyObject_Call() to detect functions returning a result with 12 years ago
Raymond Hettinger e259f13874 Minor code clean-up. Keep the C-API all in one section. 12 years ago
Serhiy Storchaka c836a28cc1 Issue #17576: Removed deprecation warnings added in changeset 618cca51a27e. 12 years ago
Victor Stinner c9362cf86a Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c" 12 years ago
Victor Stinner 1310510793 Issue #14432: Generator now clears the borrowed reference to the thread state 12 years ago
Victor Stinner fdeb6ec45a Issue #14432: Remove the thread state field from the frame structure. Fix a 12 years ago
Serhiy Storchaka 31a655411a Issue #17576: Deprecation warning emitted now when __int__() or __index__() 12 years ago
Christian Heimes d3afe781b1 Silence expression result unused warnings with clang. 12 years ago
Alexandre Vassalotti 65846c6c51 Issue #6477: Keep PyNotImplemented_Type and PyNone_Type private. 12 years ago
Alexandre Vassalotti 19b6fa6ebb Issue #6477: Added support for pickling the types of built-in singletons. 12 years ago
Alexandre Vassalotti 1a83070d9e Issue #19088: Fix incorrect caching of the copyreg module. 12 years ago
Benjamin Peterson 0ee22bf774 fix format spec recursive expansion (closes #19729) 12 years ago
Gregory P. Smith 0e524047e2 Remove an errant extra \ within a docstring. 12 years ago
Raymond Hettinger 97fc2ba6bf Document that @property can incorporate a docstring from the getter method. Improve readabilty with additional whitespace. 12 years ago
Alexandre Vassalotti c49477b184 Make Ellipsis and NotImplemented picklable through the reduce protocol. 12 years ago
Alexandre Vassalotti 4c05d3bc56 Make built-in methods picklable through the reduce protocol. 12 years ago
Zachary Ware a4b7a7548c Issue #3158: doctest can now find doctests in functions and methods 12 years ago
Larry Hastings 44e2eaab54 Issue #19674: inspect.signature() now produces a correct signature 12 years ago
Larry Hastings ebdcb50b8a Issue #19730: Argument Clinic now supports all the existing PyArg 12 years ago
Christian Heimes 2489bd83f5 Issue #17810: Fixed NULL check in _PyObject_GetItemsIter() 12 years ago
Antoine Pitrou c9dc4a2a8a Issue #17810: Implement PEP 3154, pickle protocol 4. 12 years ago
Eric Snow b523f8433a Implement PEP 451 (ModuleSpec). 12 years ago
Nick Coghlan c72e4e6dcc Issue #19619: Blacklist non-text codecs in method API 12 years ago
Victor Stinner 8455723cfb Close #19568: Fix bytearray_setslice_linear(), fix handling of 12 years ago
Victor Stinner 35f2803a24 Close #19578: Fix list_ass_subscript(), handle list_resize() failure 12 years ago
Christian Heimes 985ecdcfc2 ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. 12 years ago
Serhiy Storchaka dc2fd5101a Remove dead code committed in issue #12892. 12 years ago
Nick Coghlan f1de55fb33 Also chain codec exceptions that allow weakrefs 12 years ago
Victor Stinner f91929b1d8 Issue #19646: repr(dict) now uses _PyUnicodeWriter API for better performances 12 years ago
Victor Stinner 88a9cd9b57 Issue #19513: repr(tuple) now uses _PyUnicodeWriter for better performances 12 years ago
Victor Stinner 4a58707a34 Add _PyUnicodeWriter_WriteASCIIString() function 12 years ago
Victor Stinner 4d3f109ad3 Issue #19513: Disable overallocation of the PyUnicodeWriter before the last write 12 years ago
Serhiy Storchaka 58cf607d13 Issue #12892: The utf-16* and utf-32* codecs now reject (lone) surrogates. 12 years ago
Victor Stinner b8fb197aa0 Issue #19513: Simplify list_repr() 12 years ago
Victor Stinner 5c733473f2 Issue #19513: repr(list) now uses the PyUnicodeWriter API, it is faster than 12 years ago
Victor Stinner 6989ba0174 Issue #19581: Change the overallocation factor of _PyUnicodeWriter on Windows 12 years ago
Larry Hastings ed4a1c5703 Argument Clinic: rename "self" to "module" for module-level functions. 12 years ago
Ezio Melotti 745d54d2fa #17806: Added keyword-argument support for "tabsize" to str/bytes.expandtabs(). 12 years ago
Nick Coghlan 4b9b936429 Don't decref exc too soon 12 years ago
Victor Stinner 46ef31953e Issue #19429, #19437: fix error handling in the OSError constructor 12 years ago
Benjamin Peterson e109ee8205 fix refleaks 12 years ago
Benjamin Peterson 079c998872 adjust style 12 years ago
Christian Heimes 6a3db25c70 Issue #17828: _PyObject_GetDictPtr() may return NULL instead of a PyObject** 12 years ago
Christian Heimes 507eabdf11 Issue #17828: va_start() must be accompanied by va_end() 12 years ago
Nick Coghlan 8b097b4ed7 Close #17828: better handling of codec errors 12 years ago