summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* For some reason (probably cut and paste), __ipow__ for new-styleGuido van Rossum2002-10-151-2/+2
* Don't drop old slots if _unicode_to_string did not change anything.Martin v. Löwis2002-10-141-2/+4
* Allow Unicode strings in __slots__, converting them to byte strings.Martin v. Löwis2002-10-141-0/+39
* Darn! Don't divide by zero. Bad fix. :-)Guido van Rossum2002-10-111-1/+1
* Add checks for size overflow on list*n, list+list, tuple+tuple.Guido van Rossum2002-10-112-0/+6
* PyObject_Init[Var] is almost always called from the PyObject_NEW[_VAR]Guido van Rossum2002-10-111-10/+4
* Back out #479898.Martin v. Löwis2002-10-111-69/+15
* Fix a nasty endcase reported by Armin Rigo in SF bug 618623:Guido van Rossum2002-10-112-4/+12
* Undo this part of the previous checkin:Guido van Rossum2002-10-091-3/+4
* The string formatting code has a test to switch to Unicode when %sGuido van Rossum2002-10-091-2/+5
* Include wctype.h.Martin v. Löwis2002-10-071-1/+2
* Patch #479898: Use multibyte C library for printing strings if available.Martin v. Löwis2002-10-071-15/+68
* Patch 594001: PEP 277 - Unicode file name support for Windows NT.Mark Hammond2002-10-031-13/+83
* Add cast to avoid compiler warning.Marc-André Lemburg2002-09-241-1/+1
* Fix part of SF bug # 544248 gcc warning in unicodeobject.cNeal Norwitz2002-09-131-1/+1
* Fix warnings on 64-bit platforms about casts from pointers to ints.Guido van Rossum2002-09-123-3/+5
* Fix for platforms where int != long.Michael W. Hudson2002-09-121-1/+1
* Insert an overflow check when the sequence repetition count is outsideGuido van Rossum2002-09-111-3/+30
* Untested code for 64-bit platforms. range_length() is declared as intGuido van Rossum2002-09-111-1/+8
* A slight change to SET_LINENO-less tracing.Michael W. Hudson2002-09-111-2/+36
* Fix escaping of non-ASCII characters.Martin v. Löwis2002-09-091-2/+4
* PyObject_RichCompareBool() already returns -1, 0, or 1, so return its valueNeal Norwitz2002-09-052-10/+2
* Micro-optimization for list_contains. Factored double if testRaymond Hettinger2002-09-051-7/+6
* Micro-optimization for list_contains. Factored double if testRaymond Hettinger2002-09-051-8/+7
* Change the unicode.translate docstring to document thatWalter Dörwald2002-09-041-2/+3
* In doc strings, use 'k in D' rather than D.has_key(k).Guido van Rossum2002-09-041-2/+2
* replace thread state objects' ticker and checkinterval fields with twoSkip Montanaro2002-09-031-4/+2
* Check whether a string resize is necessary at the endWalter Dörwald2002-09-031-3/+4
* PEP 293 implemention (from SF patch http://www.python.org/sf/432401)Walter Dörwald2002-09-022-554/+1246
* Added comparison functions to dict proxies.Raymond Hettinger2002-08-311-2/+14
* SF #561244: micro optimizations, builtins cannot be NULL, so use Py_INCREFNeal Norwitz2002-08-291-1/+1
* complex() was the only numeric constructor that created a new instanceRaymond Hettinger2002-08-291-0/+9
* string_contains(): speed up by avoiding function calls whereGuido van Rossum2002-08-241-9/+12
* Speedup for PyObject_IsTrue(): check for True and False first.Guido van Rossum2002-08-241-0/+4
* Speedup for PyObject_RichCompareBool(): PyObject_RichCompare() almostGuido van Rossum2002-08-241-1/+4
* Fix SF bug 599128, submitted by Inyeol Lee: .replace() would do theGuido van Rossum2002-08-231-3/+9
* Code by Inyeol Lee, submitted to SF bug 595350, to implementGuido van Rossum2002-08-232-38/+53
* long_format(), long_lshift(): Someone on c.l.py is trying to boostTim Peters2002-08-201-2/+2
* Fix some endcase bugs in unicode rfind()/rindex() and endswith().Guido van Rossum2002-08-202-4/+4
* getinstclassname(): Squash new compiler wng in assert (comparison ofTim Peters2002-08-201-1/+1
* SF patch 576101, by Oren Tirosh: alternative implementation ofGuido van Rossum2002-08-193-100/+135
* Call me anal, but there was a particular phrase that was speading toGuido van Rossum2002-08-196-8/+8
* Another modest speedup in PyObject_GenericGetAttr(): inline the callGuido van Rossum2002-08-191-2/+26
* Make PyDescr_IsData() a macro. It's too simple to be a function.Guido van Rossum2002-08-191-6/+0
* Check in my ultra-shortlived patch #597220.Michael W. Hudson2002-08-191-3/+3
* Inline call to _PyObject_GetDictPtr() in PyObject_GenericGetAttr().Guido van Rossum2002-08-191-3/+20
* Simple but important optimization for descr_check(): instead of theGuido van Rossum2002-08-191-1/+1
* Get this to compile again if Py_USING_UNICODE is not defined.Neal Norwitz2002-08-161-1/+1
* Squash a few calls to the hideously expensive PyObject_CallObject(o,a)Guido van Rossum2002-08-163-8/+22
* Fix SF bug 595838 -- buffer in type_new() should not be static. MovedGuido van Rossum2002-08-161-1/+1