1. cc8764c Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. by Marc-André Lemburg · 22 years ago
  2. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  3. bea18cc SF patch 568629 by Oren Tirosh: types made callable. by Guido van Rossum · 22 years ago
  4. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  5. c4c453f Skip Montanaro's patch, SF 559833, exposing xrange type in builtins. by Raymond Hettinger · 22 years ago
  6. 32a7e7f Change name from string to basestring by Neal Norwitz · 22 years ago
  7. cacfc07 - A new type object, 'string', is added. This is a common base type by Guido van Rossum · 22 years ago
  8. 39a86c2 SF bug 555042: zip() may trigger MemoryError. by Tim Peters · 22 years ago
  9. 67d687a builtin_zip(): Take a good guess at how big the result list will be, by Tim Peters · 22 years ago
  10. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 22 years ago
  11. 7dab242 - New builtin function enumerate(x), from PEP 279. Example: by Guido van Rossum · 22 years ago
  12. 7b8c754 Mass checkin of universal newline support. by Jack Jansen · 22 years ago
  13. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  14. 3484a18 Patch #494045: patches errno and stat to cope on plan9. by Martin v. Löwis · 22 years ago
  15. d50e544 Docstring for filter(): Someone on the Tutor list reasonably complained by Tim Peters · 22 years ago
  16. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
  17. 733c893 Fix for SF bug [ #492403 ] exec() segfaults on closure's func_code by Jeremy Hylton · 23 years ago
  18. 518ab1c Use PyOS_snprintf instead of sprintf. by Jeremy Hylton · 23 years ago
  19. 603c683 SF patch 473749 compile under OS/2 VA C++, from Michael Muller. by Tim Peters · 23 years ago
  20. a427a2b Rename "dictionary" (type and constructor) to "dict". by Tim Peters · 23 years ago
  21. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  22. d892357 SF patch #471852 (anonymous) notes that getattr(obj, name, default) by Guido van Rossum · 23 years ago
  23. 03290ec Implement isinstance(x, (A, B, ...)). Note that we only allow tuples, by Guido van Rossum · 23 years ago
  24. 742dfd6 Get rid of builtin_open() entirely (the C code and docstring, not the by Tim Peters · 23 years ago
  25. 4b7625e _PyBuiltin_Init(): For clarity, macroize this purely repetitive code. by Tim Peters · 23 years ago
  26. 59c9a64 SF bug [#460467] file objects should be subclassable. by Tim Peters · 23 years ago
  27. 8bce4ac Rename 'getset' to 'property'. by Guido van Rossum · 23 years ago
  28. b3a639e builtin_execfile(): initialize another local that the GCC on leroy by Guido van Rossum · 23 years ago
  29. 7eea37e At Guido's suggestion, here's a new C API function, PyObject_Dir(), like by Tim Peters · 23 years ago
  30. 37a309d builtin_dir(): Treat classic classes like types. Use PyDict_Keys instead by Tim Peters · 23 years ago
  31. 5d2b77c Make dir() wordier (see the new docstring). The new behavior is a mixed by Tim Peters · 23 years ago
  32. f5cb357 Add 'super' builtin type. by Guido van Rossum · 23 years ago
  33. 29a62dd Add new built-in type 'getset' (PyGetSet_Type). by Guido van Rossum · 23 years ago
  34. 9fa96be Fix for bug [#452230] future division isn't propagated. by Tim Peters · 23 years ago
  35. 6cd6a82 A fiddled version of the rest of Michael Hudson's SF patch by Tim Peters · 23 years ago
  36. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  37. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  38. f9836ba Put conditional S_ISDIR definition(s) into pyport.h. by Martin v. Löwis · 23 years ago
  39. 257b3bf Repair the Windows build (S_ISDIR() macro doesn't exist). by Tim Peters · 23 years ago
  40. 6b3a2c4 Patch #448227: Raise an exception when a directory is passed to execfile. by Martin v. Löwis · 23 years ago
  41. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  42. 302b54a Do for hasattr() what was done for getattr() by Jeremy Hylton · 23 years ago
  43. 0eb1115 Fix for SF byg [ #420304 ] getattr function w/ default by Jeremy Hylton · 23 years ago
  44. 15c1c4f Fix for SF bug [ #443866 ] Evaluating func_code causing core dump by Jeremy Hylton · 23 years ago
  45. ae21df5 Undoing the UCS-4 patch addition which caused unichr() to return by Marc-André Lemburg · 23 years ago
  46. 5ba5866 Part way to allowing "from __future__ import generators" to communicate by Tim Peters · 23 years ago
  47. efafcea Re-add 'advanced' xrange features, adding DeprecationWarnings as discussed by Thomas Wouters · 23 years ago
  48. cfd829e Complete the xrange-simplification checkins: call PyRange_New() with by Guido van Rossum · 23 years ago
  49. 8f45585 use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZE tests. by Fredrik Lundh · 23 years ago
  50. 236d8b7 Cosmetic changes to MvL's change to unichr(): by Guido van Rossum · 23 years ago
  51. 0ba70cc Support using UCS-4 as the Py_UNICODE type: by Martin v. Löwis · 23 years ago
  52. 0dcf67e more unicode tweaks: make unichr(0xdddddddd) behave like u"\Udddddddd" by Fredrik Lundh · 23 years ago
  53. 5b97935 experimental UCS-4 support: don't assume that MS_WIN32 implies by Fredrik Lundh · 23 years ago
  54. 4324aa3 Cruft cleanup: Removed the unused last_is_sticky argument from the internal by Tim Peters · 23 years ago
  55. 3c6b148 SF bug #425836: Reference leak in filter(). by Tim Peters · 23 years ago
  56. 26cffde4 Fix the Py_FileSystemDefaultEncoding checkin - declare the variable in a fileobject.h, and initialize it in bltinmodule. by Mark Hammond · 23 years ago
  57. 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
  58. 8572b4f Generalize zip() to work with iterators. by Tim Peters · 23 years ago
  59. f4848da Make PyIter_Next() a little smarter (wrt its knowledge of iterator by Tim Peters · 23 years ago
  60. 15d81ef Generalize reduce() to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 23 years ago
  61. 4e9afdc Generalize map() to work with iterators. by Tim Peters · 23 years ago
  62. c307453 Generalize max(seq) and min(seq) to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 23 years ago
  63. 0e57abf Generalize filter(f, seq) to work with iterators. This also generalizes by Tim Peters · 23 years ago
  64. 748b8bb Fix buglet reported on c.l.py: map(fnc, file.xreadlines()) blows up. by Tim Peters · 23 years ago
  65. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  66. 388ed08 SF patch #413552 - Premature decref on object by Tim Peters · 23 years ago
  67. bc32024 Extend support for from __future__ import nested_scopes by Jeremy Hylton · 23 years ago
  68. 823649d Move the code implementing isinstance() and issubclass() to new C by Guido van Rossum · 23 years ago
  69. 6f77667 Backed out the unistr() builtin. by Marc-André Lemburg · 24 years ago
  70. c862cf4 clearer error messages for apply() and "no locals" by Jeremy Hylton · 24 years ago
  71. 8dabbf1 Fix for the bug in complex() just reported by Ping. by Guido van Rossum · 24 years ago
  72. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 24 years ago
  73. 53451b3 Use rich comparisons in min and max. by Guido van Rossum · 24 years ago
  74. f1fbc62 Update the docstring for apply() so that "args" is marked as optional by Fred Drake · 24 years ago
  75. ad99177 (Modified) patch by Ping - SF Patch #102681. by Guido van Rossum · 24 years ago
  76. 23ab199 Add NotImplemented to the builtin module. by Neil Schemenauer · 24 years ago
  77. f07aad1 CHange error messages for ord(), using "string" instead of "string or Unicode" by Andrew M. Kuchling · 24 years ago
  78. 9bcc68c Whoops! Two stray characters crept in to my last check-in by Andrew M. Kuchling · 24 years ago
  79. 34c20cf Patch #102955, fixing one of the warnings in bug #121479: by Andrew M. Kuchling · 24 years ago
  80. cc343ca Make isinstance() more permissive in what types of arguments it by Neil Schemenauer · 24 years ago
  81. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  82. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  83. d1ba443 This patch adds a new Python C API called PyString_AsStringAndSize() by Marc-André Lemburg · 24 years ago
  84. 691270f Deferred the attribute name object type checking to the underlying by Marc-André Lemburg · 24 years ago
  85. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  86. 0df002c Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(), by Guido van Rossum · 24 years ago
  87. 5ca1ef9 comples_from_string(): Move s_buffer[] up to the top-level function by Barry Warsaw · 24 years ago
  88. 29b8381 Clean up a couple of warnings on Win64. The downcast of the strlen size_t by Trent Mick · 24 years ago
  89. bd599b5 Both PEP 201 Lockstep Iteration and SF patch #101030 have been by Barry Warsaw · 24 years ago
  90. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  91. e28c296 Another missed ansification. by Thomas Wouters · 24 years ago
  92. f70ef4f Mass ANSIfication of function definitions. Doesn't cover all 'extern' by Thomas Wouters · 24 years ago
  93. 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
  94. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  95. 4be47c0 Get rid of unused vars in builtin_unicode (they were causing legit warnings). by Tim Peters · 24 years ago
  96. 1b1bcc9 Fixed unicode() to use the new API PyUnicode_FromEncodedObject(). by Marc-André Lemburg · 24 years ago
  97. 41aa8e5 Include limits.h if we have it. by Jack Jansen · 24 years ago
  98. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  99. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  100. 106f2da Trent Mick: by Guido van Rossum · 24 years ago