summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* changed \x to consume exactly two hex digits, also for unicodeFredrik Lundh2000-09-031-55/+66
* Cosmetic cleanup by Vladimir.Thomas Wouters2000-09-021-43/+49
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-0120-180/+0
* Rewritten some pieces of PyNumber_InPlaceAdd() for clarity.Guido van Rossum2000-09-011-15/+20
* Fix grouping, again. This time properly :-) Sorry, guys.Thomas Wouters2000-09-011-3/+3
* refactor __del__ exception handler into PyErr_WriteUnraisableJeremy Hylton2000-09-011-20/+1
* Add parens suggested by gcc -Wall.Guido van Rossum2000-09-011-2/+3
* Slight performance hack that also avoids requiring the existence of threadFred Drake2000-08-311-12/+124
* Clear errors raised by PyObject_Compare() without losing any existingFred Drake2000-08-311-9/+44
* Fix grouping: this is how I intended it, misguided as I was in booleanThomas Wouters2000-08-311-2/+2
* Peter Schneider-Kamp <nowonder@nowonder.de>:Fred Drake2000-08-311-7/+3
* Removed compiler warning about wanting explicit grouping around &&Fred Drake2000-08-311-4/+6
* PyOS_CheckStack() returns 1 when failing, not -1.Guido van Rossum2000-08-301-1/+1
* Fixed a serious typo.Marc-André Lemburg2000-08-251-1/+1
* Fix to bug [ Bug #111860 ] file.writelines() crashes.Marc-André Lemburg2000-08-251-9/+34
* Call PyErr_Clear() to clear the AttributeError raised by GetAttr.Thomas Wouters2000-08-251-0/+1
* Support for the in-place operations introduced by augmented assignment. OnlyThomas Wouters2000-08-243-29/+647
* Addendum to previous change: now that 'f' is not unconditionallyThomas Wouters2000-08-231-11/+11
* Add extra check on whether 'tp_as_number' is still non-NULL after coercion,Thomas Wouters2000-08-231-24/+28
* Added PyOS_CheckStack call to PyObject_CompareJack Jansen2000-08-221-0/+13
* Added include for limits.hJack Jansen2000-08-222-0/+8
* PyUnicode_AsUTF8String(): /F picks up what I missed: the local varBarry Warsaw2000-08-181-2/+0
* PyUnicode_AsUTF8String(): Don't need to explicitly incref str sinceBarry Warsaw2000-08-181-7/+3
* make_pair(): When comparing the pointers, they must be cast to integerBarry Warsaw2000-08-181-2/+6
* 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