summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Fixed problems with UTF error reporting macros and some formatting bugs.Marc-André Lemburg2000-07-171-45/+64
* Restore PyXXX_Length() APIs for binary compatibility.Marc-André Lemburg2000-07-171-0/+24
* gcc is being stupid with if/else constructsGreg Stein2000-07-171-6/+14
* stop messing around with goto and just write the macro correctly.Greg Stein2000-07-161-7/+6
* - change \x to mean "byte" also in unicode literalsFredrik Lundh2000-07-161-3/+5
* Fix fatal compiler (MSVC6) error:Tim Peters2000-07-161-0/+1
* Fix to a bug found by Florian Weimer:Marc-André Lemburg2000-07-161-1/+2
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-166-12/+12
* Fix in PyList_New(). With GC enabled and when out of memory,Vladimir Marangozov2000-07-151-1/+1
* Added PyObject_AsFileDescriptor, which checks for integer, long integer,Andrew M. Kuchling2000-07-131-0/+58
* Propagate the current exception in get_inprogress_dict() -- it doesn'tVladimir Marangozov2000-07-121-1/+0
* replace PyXXX_Length calls with PyXXX_Size callsJeremy Hylton2000-07-123-4/+4
* change abstract size functions PySequence_Size &c.Jeremy Hylton2000-07-122-9/+9
* Fix typo in error messageAndrew M. Kuchling2000-07-121-1/+1
* Include macglue.h on the macintosh, so function prototypes are in scope.Jack Jansen2000-07-111-0/+4
* small updates to string_join:Jeremy Hylton2000-07-111-6/+9
* Jeremy Hylton:Marc-André Lemburg2000-07-111-2/+4
* string_join(): Some cleaning up of reference counting. In theBarry Warsaw2000-07-111-7/+10
* fix two refcount bugs in new string_join implementation:Jeremy Hylton2000-07-111-6/+2
* two changes to string_join:Jeremy Hylton2000-07-101-82/+42
* - changed hash calculation for unicode strings. the newFredrik Lundh2000-07-101-18/+20
* ANSI-fication of the sources.Fred Drake2000-07-091-105/+46
* ANSI-fication of the sources.Fred Drake2000-07-092-214/+83
* Somebody started playing with const, so of course the outcomeTim Peters2000-07-091-8/+8
* ANSI-fication of the sources.Fred Drake2000-07-093-252/+102
* ANSI-fication of the sources.Fred Drake2000-07-093-60/+22
* ANSI-fication of the sources.Fred Drake2000-07-093-79/+33
* ANSI-fication of the sources.Fred Drake2000-07-091-27/+10
* Remove legacy use of __SC__; no longer needed now that ANSI source isFred Drake2000-07-091-5/+0
* ANSI-fication of the sources.Fred Drake2000-07-092-155/+59
* ANSI-fication of the sources.Fred Drake2000-07-091-98/+48
* type_error(): Added "const" to signature to eliminate warning with -Wall.Fred Drake2000-07-091-1/+1
* ANSI-fication of the source.Fred Drake2000-07-091-109/+95
* ANSI-fication of the sources.Fred Drake2000-07-093-360/+135
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-096-33/+33
* - changed __repr__ to use "unicode escape" encoding for unicodeFredrik Lundh2000-07-081-1/+1
* delete unused local variable from _PyTrash_deposit_objectSkip Montanaro2000-07-081-1/+0
* _Py_RefTotal should only be declared here when Py_TRACE_REFS are #define'dSkip Montanaro2000-07-081-0/+2
* Cray J90 fixes for long ints.Tim Peters2000-07-082-9/+9
* The tail end of x_sub implicitly assumed that an unsigned shortTim Peters2000-07-081-0/+1
* Got RID of redundant coercions in longobject.c (as spotted by GregTim Peters2000-07-081-6/+3
* New surrogate support in the UTF-8 codec. By Bill Tutt.Marc-André Lemburg2000-07-071-29/+80
* Some cleanup of longs in prepartion for Cray J90 fixes: gotTim Peters2000-07-071-241/+105
* Added new API PyUnicode_FromEncodedObject() which supports decodingMarc-André Lemburg2000-07-071-6/+49
* Fix to bug #393 (UTF16 codec didn't like empty strings) andMarc-André Lemburg2000-07-071-7/+6
* Two more places where long should be used instead of int. EspeciallySjoerd Mullender2000-07-071-2/+2
* Fixed some code that used 'short' to use 'long' instead.Marc-André Lemburg2000-07-061-3/+3
* Fixed a couple of places where 'int' was used where 'long'Marc-André Lemburg2000-07-061-7/+7
* Conditionally (currently on ifdef macintosh) break the large switch upJack Jansen2000-07-061-0/+15
* Added new codec APIs and a new interface method .encode() whichMarc-André Lemburg2000-07-061-0/+114