- ca7b046 Issue #17162: Add PyType_GetSlot. by Martin v. Löwis · 11 years ago
- 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 11 years ago
- 77b286b Close #20105: set __traceback__ when chaining exceptions in C by Nick Coghlan · 11 years ago
- c204726 Issue #20390: Small fixes and improvements for Argument Clinic. by Larry Hastings · 11 years ago
- 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
- 8f8ec92 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
- b992a0e Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
- e02de8c Fix minor bug in dict.__contains__ docstring. by Meador Inge · 11 years ago
- 6ba5665 Fix typo in comment. by Eric V. Smith · 11 years ago
- a70805e Issue19995: fixed typo; switched from test.support.check_warnings to assertWarns by Ethan Furman · 11 years ago
- f9bba9c Issue19995: issue deprecation warning for non-integer values to %c, %o, %x, %X by Ethan Furman · 11 years ago
- 61272b7 Issue #19273: The marker comments Argument Clinic uses have been changed by Larry Hastings · 11 years ago
- 74fc8c4 Add comments to frozenset_hash(). by Raymond Hettinger · 11 years ago
- df3ed24 Issue19995: %o, %x, %X now only accept ints by Ethan Furman · 11 years ago
- 3079328 Reverted changeset b72c5573c5e7 (issue #15027). by Serhiy Storchaka · 11 years ago
- 583a939 Issue #15027: Rewrite the UTF-32 encoder. It is now 1.6x to 3.5x faster. by Serhiy Storchaka · 11 years ago
- fa4e68d Remove deadcode (HASH macro is no more defined) by Victor Stinner · 11 years ago
- 92a419e Remove now unused variables by Victor Stinner · 11 years ago
- f3b46b4 unicode_char() uses get_latin1_char() to get latin1 singleton characters by Victor Stinner · 11 years ago
- 985a82a add unicode_char() in unicodeobject.c to factorize code by Victor Stinner · 11 years ago
- af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 11 years ago
- 4ac9c00 Better assertion in PyObject_Call() to detect functions returning a result with by Victor Stinner · 11 years ago
- e259f13 Minor code clean-up. Keep the C-API all in one section. by Raymond Hettinger · 11 years ago
- c836a28 Issue #17576: Removed deprecation warnings added in changeset 618cca51a27e. by Serhiy Storchaka · 11 years ago
- 507ac3a (Merge 3.3) Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if by Victor Stinner · 11 years ago
- c9362cf Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c" by Victor Stinner · 11 years ago
- 1310510 Issue #14432: Generator now clears the borrowed reference to the thread state by Victor Stinner · 11 years ago
- fdeb6ec Issue #14432: Remove the thread state field from the frame structure. Fix a by Victor Stinner · 11 years ago
- c4f3212 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 11 years ago
- 31a6554 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 11 years ago
- d3afe78 Silence expression result unused warnings with clang. by Christian Heimes · 11 years ago
- 2ccf8e9 Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
- 65846c6 Issue #6477: Keep PyNotImplemented_Type and PyNone_Type private. by Alexandre Vassalotti · 11 years ago
- 3c23e7a Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
- 19b6fa6 Issue #6477: Added support for pickling the types of built-in singletons. by Alexandre Vassalotti · 11 years ago
- cc6e87b Issue #19088: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
- 1a83070 Issue #19088: Fix incorrect caching of the copyreg module. by Alexandre Vassalotti · 11 years ago
- 0ee22bf fix format spec recursive expansion (closes #19729) by Benjamin Peterson · 11 years ago
- 6548257 Remove an errant extra \ within a docstring. by Gregory P. Smith · 11 years ago
- 0e52404 Remove an errant extra \ within a docstring. by Gregory P. Smith · 11 years ago
- 799f81b merge by Raymond Hettinger · 11 years ago
- 97fc2ba Document that @property can incorporate a docstring from the getter method. Improve readabilty with additional whitespace. by Raymond Hettinger · 11 years ago
- c49477b Make Ellipsis and NotImplemented picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
- 4c05d3b Make built-in methods picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
- a4b7a75 Issue #3158: doctest can now find doctests in functions and methods by Zachary Ware · 11 years ago
- 44e2eaa Issue #19674: inspect.signature() now produces a correct signature by Larry Hastings · 11 years ago
- ebdcb50 Issue #19730: Argument Clinic now supports all the existing PyArg by Larry Hastings · 11 years ago
- 2489bd8 Issue #17810: Fixed NULL check in _PyObject_GetItemsIter() by Christian Heimes · 11 years ago
- c9dc4a2 Issue #17810: Implement PEP 3154, pickle protocol 4. by Antoine Pitrou · 11 years ago
- b523f84 Implement PEP 451 (ModuleSpec). by Eric Snow · 11 years ago
- c72e4e6 Issue #19619: Blacklist non-text codecs in method API by Nick Coghlan · 11 years ago
- 8455723 Close #19568: Fix bytearray_setslice_linear(), fix handling of by Victor Stinner · 11 years ago
- 35f2803 Close #19578: Fix list_ass_subscript(), handle list_resize() failure by Victor Stinner · 11 years ago
- 985ecdc ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. by Christian Heimes · 11 years ago
- dc2fd51 Remove dead code committed in issue #12892. by Serhiy Storchaka · 11 years ago
- f1de55f Also chain codec exceptions that allow weakrefs by Nick Coghlan · 11 years ago
- f91929b Issue #19646: repr(dict) now uses _PyUnicodeWriter API for better performances by Victor Stinner · 11 years ago
- 88a9cd9 Issue #19513: repr(tuple) now uses _PyUnicodeWriter for better performances by Victor Stinner · 11 years ago
- 4a58707 Add _PyUnicodeWriter_WriteASCIIString() function by Victor Stinner · 11 years ago
- 4d3f109 Issue #19513: Disable overallocation of the PyUnicodeWriter before the last write by Victor Stinner · 11 years ago
- 58cf607 Issue #12892: The utf-16* and utf-32* codecs now reject (lone) surrogates. by Serhiy Storchaka · 11 years ago
- b8fb197 Issue #19513: Simplify list_repr() by Victor Stinner · 11 years ago
- 5c73347 Issue #19513: repr(list) now uses the PyUnicodeWriter API, it is faster than by Victor Stinner · 11 years ago
- 6989ba0 Issue #19581: Change the overallocation factor of _PyUnicodeWriter on Windows by Victor Stinner · 11 years ago
- ed4a1c5 Argument Clinic: rename "self" to "module" for module-level functions. by Larry Hastings · 11 years ago
- 745d54d #17806: Added keyword-argument support for "tabsize" to str/bytes.expandtabs(). by Ezio Melotti · 11 years ago
- 4b9b936 Don't decref exc too soon by Nick Coghlan · 11 years ago
- 46ef319 Issue #19429, #19437: fix error handling in the OSError constructor by Victor Stinner · 11 years ago
- e109ee8 fix refleaks by Benjamin Peterson · 11 years ago
- 079c998 adjust style by Benjamin Peterson · 11 years ago
- 6a3db25 Issue #17828: _PyObject_GetDictPtr() may return NULL instead of a PyObject** by Christian Heimes · 11 years ago
- 507eabd Issue #17828: va_start() must be accompanied by va_end() by Christian Heimes · 11 years ago
- 8b097b4 Close #17828: better handling of codec errors by Nick Coghlan · 11 years ago
- 59799a8 Don't use deprecated function PyUnicode_GET_SIZE() by Victor Stinner · 11 years ago
- 3f36a57 Issue #19515: Remove identifiers duplicated in the same file. by Victor Stinner · 11 years ago
- 66b3270 _Py_normalize_encoding(): explain how the value 6 was computed by Victor Stinner · 11 years ago
- bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
- 07e9e38 frameobject.c: Use an identifer instead of creating explicitly an interned by Victor Stinner · 11 years ago
- df23e30 Fix _Py_normalize_encoding(): ensure that buffer is big enough to store "utf-8" by Victor Stinner · 11 years ago
- e75fc14 Issue #19514: Deduplicate some _Py_IDENTIFIER declarations. by Martin v. Löwis · 11 years ago
- a5b9599 #17080: improve error message of float/complex when the wrong type is passed. by Ezio Melotti · 11 years ago
- 53e9ec4 Issue #19512: Use the new _PyId_builtins identifier by Victor Stinner · 11 years ago
- ad14ccd Issue #19512: add _PyUnicode_CompareWithId() function by Victor Stinner · 11 years ago
- 3688aa9 Issue #19512: type_abstractmethods() and type_set_abstractmethods() now use an by Victor Stinner · 11 years ago
- 5fd2e5a Issue #19512: Add a new _PyDict_DelItemId() function, similar to by Victor Stinner · 11 years ago
- 7a07e45 Issue #19512: Py_ReprEnter() and Py_ReprLeave() now use an identifier for the by Victor Stinner · 11 years ago
- 21ea21e Issue #19424: PyUnicode_CompareWithASCIIString() normalizes memcmp() result by Victor Stinner · 11 years ago
- f0c7b2a Issue #16286: remove duplicated identity check from unicode_compare() by Victor Stinner · 11 years ago
- fd9e44d Issue #16286: optimize PyUnicode_RichCompare() for identical strings (same by Victor Stinner · 11 years ago
- c8bc537 Issue #16286: write a new subfunction bytes_compare_eq() by Victor Stinner · 11 years ago
- e1b1592 Issue #19424: Fix a compiler warning on comparing signed/unsigned size_t by Victor Stinner · 11 years ago
- a6b9b07 Issue #19424: Fix a compiler warning by Victor Stinner · 11 years ago
- 602f7cf Issue #19424: Optimize PyUnicode_CompareWithASCIIString() by Victor Stinner · 11 years ago
- 84745ab Issue #17936: Fix O(n**2) behaviour when adding or removing many subclasses of a given type. by Antoine Pitrou · 11 years ago
- 68b674c Issue #19437: Fix _PyUnicode_New() (constructor of legacy string), set all by Victor Stinner · 11 years ago
- 0b0c867 Issue #19437: Fix PyObject_CallFunction(), handle Py_VaBuildValue() and by Victor Stinner · 11 years ago
- fa3ba4c Issue #18609: Add a fast-path for "iso8859-1" encoding by Victor Stinner · 11 years ago
- bebba50 fix indent by Victor Stinner · 11 years ago
- cc64eb5 Issue #18408: Fix bytearrayiter.partition()/rpartition(), handle by Victor Stinner · 11 years ago
- 986e224 Issue #18408: Fix error handling in PyBytes_FromObject() by Victor Stinner · 11 years ago