summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
| | * ensure no one tries to hash things before the random seed is foundBenjamin Peterson2012-02-212-0/+2
* | | update to Unicode 6.1Benjamin Peterson2012-02-211-1166/+1273
* | | Forgot the "empty string -> hash == 0" special case for strings.Georg Brandl2012-02-201-0/+8
* | | Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-202-6/+19
|\ \ \ | |/ /
| * | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-203-2/+24
| |\ \ | | |/
| | * Issue #13703: add a way to randomize the hash values of basic types (str, byt...Georg Brandl2012-02-203-2/+24
* | | check for NULL to fix segfaultBenjamin Peterson2012-02-201-1/+1
* | | use new generic __dict__ descriptor implementationsBenjamin Peterson2012-02-202-90/+4
* | | add generic implementation of a __dict__ descriptor for C typesBenjamin Peterson2012-02-202-18/+46
* | | initialize __dict__ if neededBenjamin Peterson2012-02-191-6/+12
* | | use defaultsBenjamin Peterson2012-02-191-3/+3
* | | merge 3.2Benjamin Peterson2012-02-191-3/+1
|\ \ \ | |/ /
| * | use Py_CLEARBenjamin Peterson2012-02-191-3/+1
* | | allow arbitrary attributes on classmethod and staticmethod (closes #14051)Benjamin Peterson2012-02-191-3/+27
* | | Issue #13020: Fix a reference leak when allocating a structsequence object fa...Antoine Pitrou2012-02-151-12/+13
|\ \ \ | |/ /
| * | Fix indentationAntoine Pitrou2012-02-151-12/+12
| * | Issue #13020: Fix a reference leak when allocating a structsequence object fa...Antoine Pitrou2012-02-151-0/+1
* | | (Merge 3.2) Issue #13913: normalize utf-8 codec name in UTF-8 decoderVictor Stinner2012-02-141-1/+1
|\ \ \ | |/ /
| * | Issue #13913: normalize utf-8 codec name in UTF-8 decoderVictor Stinner2012-02-141-1/+1
* | | merge 3.2Benjamin Peterson2012-02-101-1/+1
|\ \ \ | |/ /
| * | this is only a borrowed ref in Brett's branchBenjamin Peterson2012-02-101-1/+1
* | | Backout d2c1521ad0a1: _Py_IDENTIFIER() uses UTF-8 againVictor Stinner2012-02-071-2/+3
* | | merge 3.2Benjamin Peterson2012-02-061-1/+0
|\ \ \ | |/ /
| * | bltinmod is borrowed, so it shouldn't be decrefedBenjamin Peterson2012-02-061-1/+0
* | | _Py_Identifier are always ASCII stringsVictor Stinner2012-02-051-3/+2
* | | merge 3.2Benjamin Peterson2012-02-041-5/+10
|\ \ \ | |/ /
| * | put returns on their own linesBenjamin Peterson2012-02-041-5/+10
* | | merge 3.2 (closes #13908)Benjamin Peterson2012-01-301-1/+5
|\ \ \ | |/ /
| * | ready types returned from PyType_FromSpecBenjamin Peterson2012-01-301-0/+3
| * | adjust declarationBenjamin Peterson2012-01-301-1/+2
* | | Issue #13848: open() and the FileIO constructor now check for NUL characters ...Antoine Pitrou2012-01-291-0/+13
|\ \ \ | |/ /
| * | Issue #13848: open() and the FileIO constructor now check for NUL characters ...Antoine Pitrou2012-01-291-0/+13
* | | Merge 3.2 -> default (issue 13889)Mark Dickinson2012-01-271-0/+5
|\ \ \ | |/ /
| * | Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa...Mark Dickinson2012-01-271-0/+5
* | | merge with 3.2Georg Brandl2012-01-221-1/+1
|\ \ \ | |/ /
| * | Fix #13834: strip() strips leading and trailing whitespace.Georg Brandl2012-01-221-1/+1
* | | use the static identifier api for looking up special methodsBenjamin Peterson2012-01-226-118/+106
* | | Fix some of the remaining test_capi leaksAntoine Pitrou2012-01-181-3/+5
* | | Fix some of the remaining test_capi refleaksAntoine Pitrou2012-01-181-0/+2
* | | Fix some of the refleaks in test_capi (ported from 3.2)Antoine Pitrou2012-01-181-3/+7
|\ \ \ | |/ /
| * | Fix refleaks in test_capiAntoine Pitrou2012-01-181-3/+7
* | | Merge refleak fixes from 3.2Antoine Pitrou2012-01-181-21/+23
|\ \ \ | |/ /
| * | Fix leaking a RuntimeError objects when creating sub-interpretersAntoine Pitrou2012-01-181-21/+23
* | | don't ready in case_operation, since most callers do it themselvesBenjamin Peterson2012-01-161-2/+5
* | | fix old titlecase function for extended case charsBenjamin Peterson2012-01-161-0/+2
* | | comment about how flags could be expandedBenjamin Peterson2012-01-161-0/+1
* | | delta encoding of upper/lower/title makes a glorious return (#12736)Benjamin Peterson2012-01-162-3452/+1349
* | | Consolidate the occurrances of the prime used as the multiplier when hashing.Gregory P. Smith2012-01-143-3/+3
|\ \ \ | |/ /
| * | Consolidate the occurrances of the prime used as the multiplier when hashingGregory P. Smith2012-01-143-3/+3
* | | fix possible refleaks if PyUnicode_READY failsBenjamin Peterson2012-01-141-3/+15