summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Remove size constraints in SLICE opcodes.Martin v. Löwis2006-02-171-3/+3
* Use proper PyArg_Parse format char for Py_ssize_t, instead of 'l', inThomas Wouters2006-02-161-1/+1
* Use correct PyArg_Parse format char for Py_ssize_t in unicode.center().Thomas Wouters2006-02-161-1/+1
* Use Py_ssize_t in helper function between Py_ssize_t-using functions.Thomas Wouters2006-02-161-2/+2
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-1610-31/+33
* Oops, this is supposed to be disabled by default.Neal Norwitz2006-02-161-1/+1
* Revert 42400.Martin v. Löwis2006-02-165-11/+11
* Support %zd in PyErr_Format and PyString_FromFormat.Martin v. Löwis2006-02-168-19/+35
* Get rid of compiler warnings (gcc 3.3.4 on x86)Neal Norwitz2006-02-165-11/+11
* doubletounicode(), longtounicode():Tim Peters2006-02-161-4/+8
* Remove two unused Py_ssize_t variables (merge glitches, looks like.)Thomas Wouters2006-02-151-2/+0
* Avoid unused variables when SIZEOF_SIZE_T == SIZEOF_LONG. Also normalizeThomas Wouters2006-02-151-1/+3
* Merge ssize_t branch.Martin v. Löwis2006-02-1529-1022/+1205
* * Refcount leak. It was just a reference to Py_None, but still.Armin Rigo2006-02-141-3/+9
* SF patch #1397960: When mixing file-iteration andThomas Wouters2006-02-121-2/+39
* Renamed _length_cue() to __length_hint__(). See:Armin Rigo2006-02-118-18/+18
* As discussed on python-dev, silence three gcc-4.0.x warnings, using assert()Thomas Wouters2006-02-011-2/+9
* Fix SF #1412837, compile failed with Watcom compilerNeal Norwitz2006-01-241-5/+5
* - Patch #1400181, fix unicode string formatting to not use the locale.Neal Norwitz2006-01-101-16/+21
* Remove some shadowed variablesNeal Norwitz2006-01-083-4/+4
* strlen() returns a size_t, get rid of 64-bit warningNeal Norwitz2006-01-081-1/+1
* Fix icc warnings: remove (sometimes) unused variable conditionallyNeal Norwitz2006-01-081-2/+4
* Fix icc warnings: remove unused variableNeal Norwitz2006-01-081-2/+1
* Stop maintaining the buildno file.Martin v. Löwis2006-01-051-12/+15
* Fix ref/memory leak introduced in rev 41845.Neal Norwitz2006-01-021-0/+2
* Fixed English in a comment; trimmed trailing whitespace;Tim Peters2006-01-011-11/+11
* SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro".Armin Rigo2005-12-291-0/+33
* SF patch #1390657:Armin Rigo2005-12-292-22/+60
* Check return result for errorNeal Norwitz2005-12-181-0/+2
* Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\'Hye-Shik Chang2005-12-171-3/+3
* Revert r41662 and the part of 41552 that originally caused the problemNeal Norwitz2005-12-151-7/+0
* Add a workaround for file.ftell() to raise IOError for ttys.Hye-Shik Chang2005-12-131-0/+7
* en_sit will be freed when en is DECREF'd. Don't double free.Neal Norwitz2005-12-111-1/+0
* Add const to several API functions that take char *.Jeremy Hylton2005-12-1020-39/+45
* Fix bugMichael W. Hudson2005-12-051-5/+13
* Fix leaked reference to None.Walter Dörwald2005-11-281-0/+1
* Do a better job of not inlining Py_ADDRESS_IN_RANGE() for newer gcc's.Neal Norwitz2005-11-131-2/+9
* Prevent name pollution by making lots of internal functions static.Neal Norwitz2005-11-131-1/+1
* Added proper reflection on instances of <type 'method-wrapper'>, e.g.Armin Rigo2005-11-071-13/+46
* Another comment typo fixAndrew M. Kuchling2005-11-021-1/+1
* Fix typo in comment.Walter Dörwald2005-11-021-1/+1
* Remove .cvsignore files, as they live in svn:ignoreMartin v. Löwis2005-10-301-2/+0
* fix typos, mostly in commentsFred Drake2005-10-281-2/+2
* Fix a bunch of imports to use code.h instead of compile.h.Jeremy Hylton2005-10-211-1/+0
* Fix bug:Michael W. Hudson2005-10-212-8/+0
* Merge ast-branch to headJeremy Hylton2005-10-204-11/+461
* Enhance the performance of two important Unicode characterMarc-André Lemburg2005-10-201-10/+52
* SF bug #1331563 ] string_subscript doesn't check for failed PyMem_Malloc. Wi...Neal Norwitz2005-10-201-0/+2
* Whitespace corrections.Marc-André Lemburg2005-10-191-19/+19
* Bug fix for [ 1331062 ] utf 7 codec broken.Marc-André Lemburg2005-10-191-8/+16