summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Collapse)AuthorAgeFilesLines
* merge 3.2Benjamin Peterson2012-02-212-0/+2
|\
| * ensure no one tries to hash things before the random seed is foundBenjamin Peterson2012-02-212-0/+2
| |
* | Merge from 3.1: Issue #13703: add a way to randomize the hash values of ↵Georg Brandl2012-02-203-2/+24
|\ \ | |/ | | | | | | | | | | | | | | basic types (str, bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior.
| * Issue #13703: add a way to randomize the hash values of basic types (str, ↵Georg Brandl2012-02-203-2/+24
| | | | | | | | | | | | | | | | | | bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior.
* | use Py_CLEARBenjamin Peterson2012-02-191-3/+1
| |
* | Fix indentationAntoine Pitrou2012-02-151-12/+12
| |
* | Issue #13020: Fix a reference leak when allocating a structsequence object ↵Antoine Pitrou2012-02-151-0/+1
| | | | | | | | | | | | fails. Patch by Suman Saha.
* | Issue #13913: normalize utf-8 codec name in UTF-8 decoderVictor Stinner2012-02-141-1/+1
| |
* | this is only a borrowed ref in Brett's branchBenjamin Peterson2012-02-101-1/+1
| |
* | bltinmod is borrowed, so it shouldn't be decrefedBenjamin Peterson2012-02-061-1/+0
| |
* | put returns on their own linesBenjamin Peterson2012-02-041-5/+10
| |
* | 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
| | | | | | | | | | | | in the file name. Patch by Hynek Schlawack.
* | Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of ↵Mark Dickinson2012-01-271-0/+5
| | | | | | | | dtoa.c functions in float round.
* | Fix #13834: strip() strips leading and trailing whitespace.Georg Brandl2012-01-221-1/+1
| |
* | Fix refleaks in test_capiAntoine Pitrou2012-01-181-3/+7
| | | | | | | | (this was easier than I thought!)
* | Fix leaking a RuntimeError objects when creating sub-interpretersAntoine Pitrou2012-01-181-21/+23
| |
* | Consolidate the occurrances of the prime used as the multiplier when hashingGregory P. Smith2012-01-143-3/+3
| | | | | | | | | | | | | | to a single #define instead of having several copies in several files. This excludes the Modules/ tree (datetime and expat both have a copy for their own purposes with no need for it to be the same).
* | fix possible if unlikely leakBenjamin Peterson2011-12-201-1/+5
| |
* | Small clarification in docstring of dict.update(): the positional argument ↵Georg Brandl2011-12-181-3/+3
| | | | | | | | is not required.
* | Issue #11231: Fix bytes and bytearray docstringsVictor Stinner2011-12-172-10/+9
| | | | | | | | Patch written by Brice Berna.
* | Fix the fix for issue #12149: it was incorrect, although it had the sideAntoine Pitrou2011-12-151-8/+10
| | | | | | | | | | effect of appearing to resolve the issue. Thanks to Mark Shannon for noticing.
* | Issue #13093: Fix error handling on PyUnicode_EncodeDecimal()Victor Stinner2011-11-221-6/+4
| | | | | | | | | | * Add tests for PyUnicode_EncodeDecimal() and PyUnicode_TransformDecimalToASCII() * Remove the unused "e" variable in replace()
* | Issue #13333: The UTF-7 decoder now accepts lone surrogatesAntoine Pitrou2011-11-151-9/+5
| | | | | | | | (the encoder already accepts them).
* | Issue #13161: fix doc strings of __i*__ operatorsEli Bendersky2011-11-111-10/+10
| |
* | Revert "Accept None as start and stop parameters for list.index() and ↵Petri Lehtinen2011-11-062-22/+7
| | | | | | | | | | | | tuple.index()" Issue #13340.
* | Accept None as start and stop parameters for list.index() and tuple.index()Petri Lehtinen2011-11-052-7/+22
| | | | | | | | Closes #13340.
* | remove unused variableBenjamin Peterson2011-10-301-1/+1
| |
* | Fix the return value of set_discard (issue #10519)Petri Lehtinen2011-10-301-2/+3
| |
* | Avoid unnecessary recursive function calls (closes #10519)Petri Lehtinen2011-10-301-2/+2
| |
* | Issue #13018: Fix reference leaks in error paths in dictobject.c.Petri Lehtinen2011-10-241-4/+12
| | | | | | | | Patch by Suman Saha.
* | Issue 1294232: Fix errors in metaclass calculation affecting some cases of ↵Nick Coghlan2011-10-231-20/+41
| | | | | | | | metaclass inheritance. Patch by Daniel Urban.
* | adjust braces a bitBenjamin Peterson2011-10-191-5/+4
| |
* | Issue #13188: When called without an explicit traceback argument,Antoine Pitrou2011-10-181-0/+5
| | | | | | | | | | generator.throw() now gets the traceback from the passed exception's `__traceback__` attribute. Patch by Petri Lehtinen.
* | plug possible refleak (closes #13199)Benjamin Peterson2011-10-171-1/+5
| |
* | Issue #12911: Fix memory consumption when calculating the repr() of huge ↵Antoine Pitrou2011-10-063-85/+185
| | | | | | | | | | | | | | tuples or lists. This introduces a small private API for this common pattern. The issue has been discovered thanks to Martin's huge-mem buildbot.
* | Issue #12973: Fix undefined-behaviour-inducing overflow check in list_repeat.Mark Dickinson2011-09-191-3/+3
| |
* | Issue #12963: PyLong_AsSize_t() now returns (size_t)-1 in all error cases.Stefan Krah2011-09-121-3/+3
| |
* | Fix PyUnicode_AsWideCharString() doc: size doesn't contain the null characterVictor Stinner2011-09-061-5/+5
| | | | | | | | Fix also spelling of the null character.
* | make sure to initialize the method wrapper typeBenjamin Peterson2011-09-012-6/+6
| |
* | #9200: The str.is* methods now work with strings that contain non-BMP ↵Ezio Melotti2011-08-221-41/+60
| | | | | | | | characters even in narrow Unicode builds.
* | Issue #12791: Break reference cycles early when a generator exits with an ↵Antoine Pitrou2011-08-201-0/+11
| | | | | | | | exception.
* | the named of the character is actually NULBenjamin Peterson2011-08-181-1/+1
| |
* | NUL -> NULLBenjamin Peterson2011-08-181-1/+1
| |
* | fix possible refleaksBenjamin Peterson2011-08-171-1/+3
| |
* | #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and ↵Ezio Melotti2011-08-151-2/+2
| | | | | | | | cased non-letter characters.
* | in narrow builds, make sure to test codepoints as identifier characters ↵Benjamin Peterson2011-08-131-8/+23
| | | | | | | | | | | | (closes #12732) This fixes the use of Unicode identifiers outside the BMP in narrow builds.
* | remove duplicated type readyBenjamin Peterson2011-07-301-3/+0
| |
* | Fix closes Issue12621 - Fix docstrings of find and rfind methods of ↵Senthil Kumaran2011-07-273-6/+6
| | | | | | | | bytes/bytearry/unicodeobject.