summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* PyFloat_FromString(): Move s_buffer[] up to the top-level functionBarry Warsaw2000-08-181-2/+1
* PyInstance_DoBinOp(): When comparing the pointers, they must be castBarry Warsaw2000-08-181-1/+4
* Apply SF patch #101029: call __getitem__ with a proper slice object if thereThomas Wouters2000-08-172-9/+97
* Insure properly identifies the `interned' dictionary as leaking atBarry Warsaw2000-08-161-0/+12
* Updated commentAndrew M. Kuchling2000-08-161-1/+1
* Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470.Tim Peters2000-08-154-100/+74
* Fixed a couple of instances where a 0-length string was beingMarc-André Lemburg2000-08-141-6/+13
* Check for overflow in list object insertion and raise OverflowError.Trent Mick2000-08-131-0/+5
* Clean up warning from Monterey compiler.Trent Mick2000-08-121-1/+1
* Clean up a warning on Win64. The downcast of the strlen size_tTrent Mick2000-08-121-1/+1
* Add the current Win64 compiler to the list of those that need theTrent Mick2000-08-121-1/+5
* Add largefile support for Linux64 and WIn64. Add test_largefile and some minorTrent Mick2000-08-111-37/+145
* Fix missing decrements of the recursive counter in PyObject_Compare().Vladimir Marangozov2000-08-111-6/+12
* Barry's patch to implement the new setdefault() method.Guido van Rossum2000-08-081-0/+36
* Removing UTF-16 aware Unicode comparison code. This kind of compareMarc-André Lemburg2000-08-081-0/+33
* Removing warnings found by gcc -WallMoshe Zadka2000-08-042-4/+9
* Boost buffer sizes in the absence of snprintf on Windows.Tim Peters2000-08-041-14/+19
* snprintf() is not portable, so continue to use sprintf() until a portableFred Drake2000-08-041-8/+6
* This patch finalizes the move from UTF-8 to a default encoding inMarc-André Lemburg2000-08-031-40/+40
* Remove the tp_print handler.Fred Drake2000-08-031-31/+27
* Remobe beopen/cnri/cwi copyrights, according to CNRI instructions.Guido van Rossum2000-08-031-10/+0
* Changing the CNRI copyright notice according to CNRI's instructions.Guido van Rossum2000-08-032-2/+2
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-316-7/+0
* Use 'void' directly instead of the ANY #define, now that all code is ANSI C.Thomas Wouters2000-07-252-10/+10
* ANSIfy functions that were hiding inside a macro.Thomas Wouters2000-07-231-1/+1
* ANSIfication: remove very-old-varargs code, fix function declarations soThomas Wouters2000-07-221-34/+0
* Miscelaneous ANSIfications. I'm assuming here 'main' should take (int,Thomas Wouters2000-07-222-21/+5
* 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