- 9fa96be Fix for bug [#452230] future division isn't propagated. by Tim Peters · 23 years ago
- 6cd6a82 A fiddled version of the rest of Michael Hudson's SF patch by Tim Peters · 23 years ago
- 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
- e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
- f9836ba Put conditional S_ISDIR definition(s) into pyport.h. by Martin v. Löwis · 23 years ago
- 257b3bf Repair the Windows build (S_ISDIR() macro doesn't exist). by Tim Peters · 23 years ago
- 6b3a2c4 Patch #448227: Raise an exception when a directory is passed to execfile. by Martin v. Löwis · 23 years ago
- 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
- 302b54a Do for hasattr() what was done for getattr() by Jeremy Hylton · 23 years ago
- 0eb1115 Fix for SF byg [ #420304 ] getattr function w/ default by Jeremy Hylton · 23 years ago
- 15c1c4f Fix for SF bug [ #443866 ] Evaluating func_code causing core dump by Jeremy Hylton · 23 years ago
- ae21df5 Undoing the UCS-4 patch addition which caused unichr() to return by Marc-André Lemburg · 23 years ago
- 5ba5866 Part way to allowing "from __future__ import generators" to communicate by Tim Peters · 23 years ago
- efafcea Re-add 'advanced' xrange features, adding DeprecationWarnings as discussed by Thomas Wouters · 23 years ago
- cfd829e Complete the xrange-simplification checkins: call PyRange_New() with by Guido van Rossum · 23 years ago
- 8f45585 use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZE tests. by Fredrik Lundh · 23 years ago
- 236d8b7 Cosmetic changes to MvL's change to unichr(): by Guido van Rossum · 23 years ago
- 0ba70cc Support using UCS-4 as the Py_UNICODE type: by Martin v. Löwis · 23 years ago
- 0dcf67e more unicode tweaks: make unichr(0xdddddddd) behave like u"\Udddddddd" by Fredrik Lundh · 23 years ago
- 5b97935 experimental UCS-4 support: don't assume that MS_WIN32 implies by Fredrik Lundh · 23 years ago
- 4324aa3 Cruft cleanup: Removed the unused last_is_sticky argument from the internal by Tim Peters · 23 years ago
- 3c6b148 SF bug #425836: Reference leak in filter(). by Tim Peters · 23 years ago
- 26cffde Fix the Py_FileSystemDefaultEncoding checkin - declare the variable in a fileobject.h, and initialize it in bltinmodule. by Mark Hammond · 23 years ago
- ef8b654 Add support for Windows using "mbcs" as the default Unicode encoding when dealing with the file system. As discussed on python-dev and in patch 410465. by Mark Hammond · 23 years ago
- 8572b4f Generalize zip() to work with iterators. by Tim Peters · 24 years ago
- f4848da Make PyIter_Next() a little smarter (wrt its knowledge of iterator by Tim Peters · 24 years ago
- 15d81ef Generalize reduce() to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 24 years ago
- 4e9afdc Generalize map() to work with iterators. by Tim Peters · 24 years ago
- c307453 Generalize max(seq) and min(seq) to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 24 years ago
- 0e57abf Generalize filter(f, seq) to work with iterators. This also generalizes by Tim Peters · 24 years ago
- 748b8bb Fix buglet reported on c.l.py: map(fnc, file.xreadlines()) blows up. by Tim Peters · 24 years ago
- 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 24 years ago
- 388ed08 SF patch #413552 - Premature decref on object by Tim Peters · 24 years ago
- bc32024 Extend support for from __future__ import nested_scopes by Jeremy Hylton · 24 years ago
- 823649d Move the code implementing isinstance() and issubclass() to new C by Guido van Rossum · 24 years ago
- 6f77667 Backed out the unistr() builtin. by Marc-André Lemburg · 24 years ago
- c862cf4 clearer error messages for apply() and "no locals" by Jeremy Hylton · 24 years ago
- 8dabbf1 Fix for the bug in complex() just reported by Ping. by Guido van Rossum · 24 years ago
- ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 24 years ago
- 53451b3 Use rich comparisons in min and max. by Guido van Rossum · 24 years ago
- f1fbc62 Update the docstring for apply() so that "args" is marked as optional by Fred Drake · 24 years ago
- ad99177 (Modified) patch by Ping - SF Patch #102681. by Guido van Rossum · 24 years ago
- 23ab199 Add NotImplemented to the builtin module. by Neil Schemenauer · 24 years ago
- f07aad1 CHange error messages for ord(), using "string" instead of "string or Unicode" by Andrew M. Kuchling · 24 years ago
- 9bcc68c Whoops! Two stray characters crept in to my last check-in by Andrew M. Kuchling · 24 years ago
- 34c20cf Patch #102955, fixing one of the warnings in bug #121479: by Andrew M. Kuchling · 24 years ago
- cc343ca Make isinstance() more permissive in what types of arguments it by Neil Schemenauer · 24 years ago
- 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
- d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
- d1ba443 This patch adds a new Python C API called PyString_AsStringAndSize() by Marc-André Lemburg · 24 years ago
- 691270f Deferred the attribute name object type checking to the underlying by Marc-André Lemburg · 24 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
- 0df002c Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(), by Guido van Rossum · 24 years ago
- 5ca1ef9 comples_from_string(): Move s_buffer[] up to the top-level function by Barry Warsaw · 24 years ago
- 29b8381 Clean up a couple of warnings on Win64. The downcast of the strlen size_t by Trent Mick · 24 years ago
- bd599b5 Both PEP 201 Lockstep Iteration and SF patch #101030 have been by Barry Warsaw · 24 years ago
- 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
- e28c296 Another missed ansification. by Thomas Wouters · 24 years ago
- f70ef4f Mass ANSIfication of function definitions. Doesn't cover all 'extern' by Thomas Wouters · 24 years ago
- 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
- dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
- 4be47c0 Get rid of unused vars in builtin_unicode (they were causing legit warnings). by Tim Peters · 24 years ago
- 1b1bcc9 Fixed unicode() to use the new API PyUnicode_FromEncodedObject(). by Marc-André Lemburg · 24 years ago
- 41aa8e5 Include limits.h if we have it. by Jack Jansen · 24 years ago
- ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
- fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
- 106f2da Trent Mick: by Guido van Rossum · 24 years ago
- 5550de3 Christopher Fandrich <cfandrich@8cs.com>: by Fred Drake · 24 years ago
- 78e6c67 All the exception building related stuff has been moved out of this by Barry Warsaw · 24 years ago
- 1226588 bltin_exc: Removed the leaf_exc flag in the structure, which was only by Barry Warsaw · 24 years ago
- c640b18 M.-A. Lemburg <mal@lemburg.com>: by Fred Drake · 25 years ago
- b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
- a7cfca2 A bit of cleanup: by Guido van Rossum · 25 years ago
- 48719d3 _PyBuiltin_Init_2(): Remove the misleading comment. by Barry Warsaw · 25 years ago
- 47eeb9b initerrors(): Remove this function. String-based standard exceptions by Barry Warsaw · 25 years ago
- 078b24f When refering to Unicode characters in exception messages and by Fred Drake · 25 years ago
- 394b54d ord: provide better error messages by Jeremy Hylton · 25 years ago
- 3afba76 Marc-Andre Lemburg: by Guido van Rossum · 25 years ago
- 9e896b3 Marc-Andre's third try at this bulk patch seems to work (except that by Guido van Rossum · 25 years ago
- 09095f3 Marc-Andre Lemburg: added new builtin functions unicode() and by Guido van Rossum · 25 years ago
- 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 25 years ago
- 65a75b0 Changes by Mark Hammond related to the new WindowsError exception. by Guido van Rossum · 25 years ago
- 7b91212 Adjusted apply() docstring based on comments from Gerrit Holl by Fred Drake · 25 years ago
- 226ae6c Mainlining the string_methods branch. See branch revision log by Barry Warsaw · 25 years ago
- 3d58744 Fixed order of parameters in slice() docstring. The Library Reference by Fred Drake · 25 years ago
- 8746082 Patch by Tim Peters: by Guido van Rossum · 25 years ago
- 7f85186 # Darn! Local variable l declared but not used in abstract_issubclass(). by Guido van Rossum · 25 years ago
- 668213d Patch by Jim Fulton (code style tweaked a bit) to support by Guido van Rossum · 25 years ago
- 99fb7c7 Remove unused variable from complex_from_string() code. by Guido van Rossum · 26 years ago
- 1195023 Patch by Nick and Stephanie Lockwood to implement complex() with a string by Guido van Rossum · 26 years ago
- 0daf022 New builtin buffer() creates a derived read-only buffer from any by Guido van Rossum · 26 years ago
- 72b715d (initerrors): Make sure that the exception tuples ("base-classes" when by Barry Warsaw · 26 years ago
- 124eff0 Patch by Tim Peters to improve the range checks for range() and by Guido van Rossum · 26 years ago
- 7890203 bltin_exc[]: EnvironmentError is not a "leaf exception", so set it's by Barry Warsaw · 26 years ago
- fa77e09 builtin_map(): A better fix for the previous leak plug (remember by Barry Warsaw · 26 years ago
- 2133287 builtin_map(): Nailed memory leak. PyList_Append() borrows a by Barry Warsaw · 26 years ago
- f988e68 builtin_complex(): Nailed memory leak. This one's in the instance by Barry Warsaw · 26 years ago
- e23cde2 Avoid overflow if possible in calculations for range(); report by Guido van Rossum · 26 years ago
- 344864f Added new builtin standard exception: NotImplementedError (its C by Barry Warsaw · 26 years ago
- df12a59 Fix cosmetic bug in delattr docstring discovered by JvR. by Guido van Rossum · 26 years ago