summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* | Minor touchups.Raymond Hettinger2013-09-021-4/+6
* | Factor-out the common code for setting a KeyError.Raymond Hettinger2013-09-022-33/+5
* | Instead of XORed indicies, switch to a hybrid of linear probing and open addr...Raymond Hettinger2013-09-021-91/+68
* | Update copyright.Raymond Hettinger2013-09-011-1/+1
* | Further reduce the cost of hash collisions by inspecting an additional nearby...Raymond Hettinger2013-09-011-4/+39
* | Close #18780: %-formatting now prints value for int subclasses with %d, %i, a...Ethan Furman2013-08-311-5/+3
* | Tighten-up the lookkey() logic and beautify the code a bit.Raymond Hettinger2013-08-291-88/+43
* | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-275-61/+60
|\ \ | |/
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-275-61/+60
* | Restore changeset 5bd9db528aed (issue #18408)Victor Stinner2013-08-262-0/+22
* | Issue #18408: _PyObject_Dump() now saves/restores the current exceptionVictor Stinner2013-08-261-0/+6
* | Various clarifications based on feedback & questions over the years.Tim Peters2013-08-241-19/+96
|\ \ | |/
| * Various clarifications based on feedback & questions over the years.Tim Peters2013-08-241-19/+96
* | Issue #18772: fix the gdb plugin after the set implementation changesAntoine Pitrou2013-08-242-9/+3
* | Back out 5bd9db528aed (issue #18408). It caused unsolved buildbot failures.Antoine Pitrou2013-08-232-23/+0
* | Add the same dummy type that is used in dictionaries.Raymond Hettinger2013-08-231-15/+49