summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Patch #1460496: round() now accepts keyword arguments.Georg Brandl2006-03-311-13/+15
* Expand comments.Jeremy Hylton2006-03-311-0/+27
* In format strings slinging Py_ssize_t, unconditionallyTim Peters2006-03-281-9/+6
* answer a question from a commentArmin Rigo2006-03-281-3/+3
* Fix SF bug #1458903 with AST compiler.Neal Norwitz2006-03-271-4/+11
* Years in the making.Tim Peters2006-03-261-1/+1
* Found this in an old email message from Hartmut Goebel.Skip Montanaro2006-03-251-0/+1
* Patch #1396919: Reenable the system scope threads on FreeBSD 5.4Hye-Shik Chang2006-03-231-1/+11
* Fix a ssize_t issueNeal Norwitz2006-03-231-1/+1
* Forward port MvL's fix in 43227:Neal Norwitz2006-03-231-0/+4
* Use macro versions instead of function versions when we already know the type.Neal Norwitz2006-03-202-3/+3
* Release codecs variable earlier.Walter Dörwald2006-03-181-4/+2
* Fix some missing checks after PyTuple_New, PyList_New, PyDict_NewGeorg Brandl2006-03-171-1/+3
* Fix bug 1441408 where a double colon didn't trigger extended slice semantics ...Nick Coghlan2006-03-171-8/+12
* Fix wrong argument format in PyCodec_IncrementalEncoder() andWalter Dörwald2006-03-161-96/+57
* Make mktuple consistent with mklist to get rid of Coverity warnings. Also us...Neal Norwitz2006-03-161-10/+10
* Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclassWalter Dörwald2006-03-151-0/+50
* Fix SF bug #1448804 and ad a test to ensure that all subscript operations con...Nick Coghlan2006-03-131-24/+29
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-103-25/+27
* Try to be a bit more consistent on all platforms:Neal Norwitz2006-03-091-1/+4
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-46/+22
* Address an coverity issue. Coverity was complaining about a line that's fine,Guido van Rossum2006-03-071-1/+2
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-073-2/+11
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-075-18/+34
* Fix warnings on x86 (32-bit).Neal Norwitz2006-03-061-1/+2
* Try to cleanup the error handling a bit so there aren't false positivesNeal Norwitz2006-03-061-8/+12
* Use %Id for size_t-ish things on Win64.Martin v. Löwis2006-03-051-1/+1
* Use Py_ssize_t for _Py_RefTotal.Neal Norwitz2006-03-042-7/+13
* TabifyNeal Norwitz2006-03-041-34/+34
* Get rid of run_err_mod(). It was only used in two places.Neal Norwitz2006-03-041-14/+4
* SF bug 1442442: LIST_APPEND optimization got lost in the AST merge.Neal Norwitz2006-03-031-3/+4
* Remove commented codeNeal Norwitz2006-03-031-24/+1
* Text moved to PEP 339.Brett Cannon2006-03-021-507/+0
* Fix minor docstring typo.Brett Cannon2006-03-021-1/+1
* Document the purpose of the struct _block members.Tim Peters2006-03-021-1/+18
* Added words about what PyArena_Malloc() does.Tim Peters2006-03-021-1/+1
* Trimmed trailing whitespace.Tim Peters2006-03-021-6/+6
* Fix refleak in PyErr_Display().Brett Cannon2006-03-021-15/+14
* Fix refleak if from __future__ import was not firstNeal Norwitz2006-03-021-0/+1
* Use Py_ssize_t since we are working with list size belowNeal Norwitz2006-03-021-1/+1
* Add a missing Py_DECREF to BaseException__unicode__ .Brett Cannon2006-03-021-2/+8
* Update known issues to reflect realityNeal Norwitz2006-03-021-4/+1
* Fix memory leak on attributes.Martin v. Löwis2006-03-021-5/+13
* Make Py_ssize_t clean.Thomas Wouters2006-03-011-1/+3
* Patch #1440601: Add col_offset attribute to AST nodes.Martin v. Löwis2006-03-013-134/+211
* Fix incompatible assignment warning from previous checkin.Thomas Wouters2006-03-011-1/+2
* Fix gcc (4.0.x) warning about use of uninitialized variables.Thomas Wouters2006-03-011-1/+2
* Document PEP 352 changes. Also added GeneratorExit.Brett Cannon2006-03-011-7/+2
* Fix uninitialized value. (Why are we using bools instead of ints, like we doThomas Wouters2006-03-011-1/+1
* Fix more memory leaks. Will backport to 2.4.Martin v. Löwis2006-03-011-1/+5