summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Issue #19424: Fix a compiler warningVictor Stinner2013-10-301-1/+1
* Issue #19424: Optimize PyUnicode_CompareWithASCIIString()Victor Stinner2013-10-291-13/+30
* Issue #17936: Fix O(n**2) behaviour when adding or removing many subclasses o...Antoine Pitrou2013-10-291-59/+63
* Issue #19437: Fix _PyUnicode_New() (constructor of legacy string), set allVictor Stinner2013-10-291-11/+14
* Issue #19437: Fix PyObject_CallFunction(), handle Py_VaBuildValue() andVictor Stinner2013-10-291-0/+2
* Issue #18609: Add a fast-path for "iso8859-1" encodingVictor Stinner2013-10-291-2/+4
* fix indentVictor Stinner2013-10-291-4/+4
* Issue #18408: Fix bytearrayiter.partition()/rpartition(), handleVictor Stinner2013-10-291-0/+10
* Issue #18408: Fix error handling in PyBytes_FromObject()Victor Stinner2013-10-291-2/+1
* Issue #18408: Fix PyUnicode_AsUTF8AndSize(), raise MemoryError exception onVictor Stinner2013-10-291-0/+1
* Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handleVictor Stinner2013-10-292-31/+53
* Issue #19369: Optimized the usage of __length_hint__().Serhiy Storchaka2013-10-241-8/+10
* Issue #1772673: The type of `char*` arguments now changed to `const char*`.Serhiy Storchaka2013-10-196-20/+20
* Issue #19279: UTF-7 decoder no more produces illegal strings.Serhiy Storchaka2013-10-191-0/+2
|\
| * Issue #19279: UTF-7 decoder no more produces illegal strings.Serhiy Storchaka2013-10-191-0/+2
* | Issue #16612: Add "Argument Clinic", a compile-time preprocessorLarry Hastings2013-10-192-23/+88
* | upgrade unicode db to 6.3.0 (closes #19221)Benjamin Peterson2013-10-101-8/+6
* | Issue #18874: _PyObject_Malloc/Realloc/Free() now falls back onVictor Stinner2013-10-101-17/+19
* | Issue #18874: PyCode_New() now ensures that the filename is a ready UnicodeVictor Stinner2013-10-101-0/+5
* | Issue #19171: speed some cases of 3-argument long pow().Tim Peters2013-10-051-4/+10
|\ \ | |/
| * Issue #19171: speed some cases of 3-argument long pow().Tim Peters2013-10-051-4/+10
* | #19069: merge with 3.3.Ezio Melotti2013-10-051-11/+11
|\ \ | |/
| * #19069: use imperative mood in float object docstrings. Patch by Marco Buttu.Ezio Melotti2013-10-051-11/+11
* | #19068: merge with 3.3.Ezio Melotti2013-10-051-2/+2
|\ \ | |/
| * #19068: use imperative mood in complex object docstrings. Patch by Marco Buttu.Ezio Melotti2013-10-051-2/+2
* | #19067: merge with 3.3.Ezio Melotti2013-10-051-3/+3
|\ \ | |/
| * #19067: use imperative mood in range object docstrings. Patch by Marco Buttu.Ezio Melotti2013-10-051-3/+3
* | Hopefully fix Windows compilation error following 499a96611baaAntoine Pitrou2013-10-051-10/+10
* | Issue #19087: Improve bytearray allocation in order to allow cheap popping of...Antoine Pitrou2013-10-051-145/+163
* | Issue #19014: memoryview.cast() is now allowed on zero-length views.Antoine Pitrou2013-10-031-1/+1
|\ \ | |/
| * Issue #19014: memoryview.cast() is now allowed on zero-length views.Antoine Pitrou2013-10-031-1/+1
* | Close #19078: memoryview now supports reversedNick Coghlan2013-10-021-1/+1
* | mergeRaymond Hettinger2013-10-011-4/+1
|\ \ | |/
| * Issue #18594: Fix the fast path for collections.Counter().Raymond Hettinger2013-10-011-4/+1
* | Close #18596: Support address sanity checking in clang/GCCNick Coghlan2013-09-281-0/+20
* | Fix minor typo.Georg Brandl2013-09-251-1/+1
* | Note that LINEAR_PROBES can be set to zero.Raymond Hettinger2013-09-221-1/+1
* | Minor beautification. Put updates and declarations in a more logical order.Raymond Hettinger2013-09-211-2/+2
* | When LINEAR_PROBES=0, let the compiler remove the dead code on its own.Raymond Hettinger2013-09-211-12/+0
* | Make the linear probe sequence clearer.Raymond Hettinger2013-09-211-8/+4
* | Update internal comments to say _something_ about the "API ID".Tim Peters2013-09-201-1/+3
* | Issue 18771: Make it possible to set the number linear probes at compile-time.Raymond Hettinger2013-09-151-5/+19
* | Put the defines in the logical section and fix indentation.Raymond Hettinger2013-09-081-8/+8
* | Minor code beautification.Raymond Hettinger2013-09-081-6/+5
* | Improve code clarity by removing two unattractive macros.Raymond Hettinger2013-09-081-16/+18
* | Remove the freelist scheme for setobjects.Raymond Hettinger2013-09-082-48/+8
* | Small rearrangement to bring together the three functions for probing the has...Raymond Hettinger2013-09-081-32/+39
* | Move the overview comment to the top of the file.Raymond Hettinger2013-09-071-22/+20
* | Nerge 3.3 into default.Tim Peters2013-09-061-1/+1
|\ \ | |/
| * Issue #18942: sys._debugmallocstats() output was damaged on Windows.Tim Peters2013-09-061-1/+1