1. 6f77667 Backed out the unistr() builtin. by Marc-André Lemburg · 24 years ago
  2. c862cf4 clearer error messages for apply() and "no locals" by Jeremy Hylton · 24 years ago
  3. 8dabbf1 Fix for the bug in complex() just reported by Ping. by Guido van Rossum · 24 years ago
  4. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 24 years ago
  5. 53451b3 Use rich comparisons in min and max. by Guido van Rossum · 24 years ago
  6. f1fbc62 Update the docstring for apply() so that "args" is marked as optional by Fred Drake · 24 years ago
  7. ad99177 (Modified) patch by Ping - SF Patch #102681. by Guido van Rossum · 24 years ago
  8. 23ab199 Add NotImplemented to the builtin module. by Neil Schemenauer · 24 years ago
  9. f07aad1 CHange error messages for ord(), using "string" instead of "string or Unicode" by Andrew M. Kuchling · 24 years ago
  10. 9bcc68c Whoops! Two stray characters crept in to my last check-in by Andrew M. Kuchling · 24 years ago
  11. 34c20cf Patch #102955, fixing one of the warnings in bug #121479: by Andrew M. Kuchling · 24 years ago
  12. cc343ca Make isinstance() more permissive in what types of arguments it by Neil Schemenauer · 24 years ago
  13. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  14. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  15. d1ba443 This patch adds a new Python C API called PyString_AsStringAndSize() by Marc-André Lemburg · 24 years ago
  16. 691270f Deferred the attribute name object type checking to the underlying by Marc-André Lemburg · 24 years ago
  17. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  18. 0df002c Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(), by Guido van Rossum · 24 years ago
  19. 5ca1ef9 comples_from_string(): Move s_buffer[] up to the top-level function by Barry Warsaw · 24 years ago
  20. 29b8381 Clean up a couple of warnings on Win64. The downcast of the strlen size_t by Trent Mick · 24 years ago
  21. bd599b5 Both PEP 201 Lockstep Iteration and SF patch #101030 have been by Barry Warsaw · 24 years ago
  22. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  23. e28c296 Another missed ansification. by Thomas Wouters · 24 years ago
  24. f70ef4f Mass ANSIfication of function definitions. Doesn't cover all 'extern' by Thomas Wouters · 24 years ago
  25. 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
  26. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  27. 4be47c0 Get rid of unused vars in builtin_unicode (they were causing legit warnings). by Tim Peters · 24 years ago
  28. 1b1bcc9 Fixed unicode() to use the new API PyUnicode_FromEncodedObject(). by Marc-André Lemburg · 24 years ago
  29. 41aa8e5 Include limits.h if we have it. by Jack Jansen · 24 years ago
  30. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  31. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  32. 106f2da Trent Mick: by Guido van Rossum · 24 years ago
  33. 5550de3 Christopher Fandrich <cfandrich@8cs.com>: by Fred Drake · 24 years ago
  34. 78e6c67 All the exception building related stuff has been moved out of this by Barry Warsaw · 24 years ago
  35. 1226588 bltin_exc: Removed the leaf_exc flag in the structure, which was only by Barry Warsaw · 24 years ago
  36. c640b18 M.-A. Lemburg <mal@lemburg.com>: by Fred Drake · 24 years ago
  37. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  38. a7cfca2 A bit of cleanup: by Guido van Rossum · 24 years ago
  39. 48719d3 _PyBuiltin_Init_2(): Remove the misleading comment. by Barry Warsaw · 24 years ago
  40. 47eeb9b initerrors(): Remove this function. String-based standard exceptions by Barry Warsaw · 24 years ago
  41. 078b24f When refering to Unicode characters in exception messages and by Fred Drake · 24 years ago
  42. 394b54d ord: provide better error messages by Jeremy Hylton · 24 years ago
  43. 3afba76 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  44. 9e896b3 Marc-Andre's third try at this bulk patch seems to work (except that by Guido van Rossum · 24 years ago
  45. 09095f3 Marc-Andre Lemburg: added new builtin functions unicode() and by Guido van Rossum · 24 years ago
  46. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 24 years ago
  47. 65a75b0 Changes by Mark Hammond related to the new WindowsError exception. by Guido van Rossum · 24 years ago
  48. 7b91212 Adjusted apply() docstring based on comments from Gerrit Holl by Fred Drake · 25 years ago
  49. 226ae6c Mainlining the string_methods branch. See branch revision log by Barry Warsaw · 25 years ago
  50. 3d58744 Fixed order of parameters in slice() docstring. The Library Reference by Fred Drake · 25 years ago
  51. 8746082 Patch by Tim Peters: by Guido van Rossum · 25 years ago
  52. 7f85186 # Darn! Local variable l declared but not used in abstract_issubclass(). by Guido van Rossum · 25 years ago
  53. 668213d Patch by Jim Fulton (code style tweaked a bit) to support by Guido van Rossum · 25 years ago
  54. 99fb7c7 Remove unused variable from complex_from_string() code. by Guido van Rossum · 25 years ago
  55. 1195023 Patch by Nick and Stephanie Lockwood to implement complex() with a string by Guido van Rossum · 25 years ago
  56. 0daf022 New builtin buffer() creates a derived read-only buffer from any by Guido van Rossum · 25 years ago
  57. 72b715d (initerrors): Make sure that the exception tuples ("base-classes" when by Barry Warsaw · 25 years ago
  58. 124eff0 Patch by Tim Peters to improve the range checks for range() and by Guido van Rossum · 25 years ago
  59. 7890203 bltin_exc[]: EnvironmentError is not a "leaf exception", so set it's by Barry Warsaw · 25 years ago
  60. fa77e09 builtin_map(): A better fix for the previous leak plug (remember by Barry Warsaw · 25 years ago
  61. 2133287 builtin_map(): Nailed memory leak. PyList_Append() borrows a by Barry Warsaw · 26 years ago
  62. f988e68 builtin_complex(): Nailed memory leak. This one's in the instance by Barry Warsaw · 26 years ago
  63. e23cde2 Avoid overflow if possible in calculations for range(); report by Guido van Rossum · 26 years ago
  64. 344864f Added new builtin standard exception: NotImplementedError (its C by Barry Warsaw · 26 years ago
  65. df12a59 Fix cosmetic bug in delattr docstring discovered by JvR. by Guido van Rossum · 26 years ago
  66. 968f8cb builtin_apply(): Second argument type check is relaxed to allow any sequence. by Barry Warsaw · 26 years ago
  67. 98b6246 Several changes that Python carry on in the face of errors in the by Barry Warsaw · 26 years ago
  68. 746340d Should no longer surround PyOS_Readline() call with by Guido van Rossum · 26 years ago
  69. d086a1a Added support for two new standard errors: EnvironmentError and by Barry Warsaw · 26 years ago
  70. fa4ac71 Small changes to map() and filter(): by Guido van Rossum · 26 years ago
  71. 8ea9f4d Fix a stupid little bug: len() of an unsized returns -1 and leaves an by Guido van Rossum · 26 years ago
  72. 950ff29 Experimental feature: add default argument to getattr(). by Guido van Rossum · 26 years ago
  73. f9d9c6c Added doc strings. by Guido van Rossum · 26 years ago
  74. d9b5208 In raw_input(prompt), make sure that str(prompt) really a string by Guido van Rossum · 26 years ago
  75. 9396673 Remove a few unused locals (I love VC++ for this!). by Guido van Rossum · 26 years ago
  76. 09df08a A bunch of functions are now properly implemented in abstract.c, and by Guido van Rossum · 26 years ago
  77. 1e162d3 Implement round() slightly different, so that for negative ndigits no by Guido van Rossum · 26 years ago
  78. a937d14 Fred's right -- we need PyList_SET_ITEM(). by Guido van Rossum · 26 years ago
  79. 507338e In-line the code in range() to set the list items; there's really no by Guido van Rossum · 26 years ago
  80. 730806d Make new gcc -Wall happy by Guido van Rossum · 26 years ago
  81. 8f74571 Use a faster way to check for null bytes in the string argument for by Guido van Rossum · 26 years ago
  82. d6af46d Need a cast when comparing type object in isinstance() by Guido van Rossum · 27 years ago
  83. f5dd914 Support type objects in isinstance(). by Guido van Rossum · 27 years ago
  84. ee81af8 Release interpreter lock around readline call in [raw_]input(). by Guido van Rossum · 27 years ago
  85. b01a7fa initerrors(): Eliminate circular reference which was causing a small by Barry Warsaw · 27 years ago
  86. 412cdc2 [Py_Exc]NumberError => [Py_Exc]ArithmeticError by Barry Warsaw · 27 years ago
  87. 0474832 Introduce PyExc_Exception as the conceptual root class for all exceptions. by Guido van Rossum · 27 years ago
  88. aee0bad First part of package support. by Guido van Rossum · 27 years ago
  89. 757af0e Removed obsolete exception PyExc_AccessError. by Barry Warsaw · 27 years ago
  90. cde8b1b Two new built-in functions: issubclass() and isinstance(). Both take by Barry Warsaw · 27 years ago
  91. 25ce566 The last of the mass checkins for separate (sub)interpreters. by Guido van Rossum · 27 years ago
  92. c8b6df9 PyObject_Compare can raise an exception now. by Guido van Rossum · 27 years ago
  93. b6a7f77 Oops -- missed FloatingPointError in renaming. by Guido van Rossum · 27 years ago
  94. b05a5c7 Instead of importing graminit.h whenever one of the three grammar 'root' by Guido van Rossum · 27 years ago
  95. 666b17a New dir() function -- by Guido van Rossum · 27 years ago
  96. 15e33a4 Avoid sprintf buffer overflow if more than 9999 arguments. by Guido van Rossum · 27 years ago
  97. 79f25d9 Quickly renamed the remaining files -- this directory is done. by Guido van Rossum · 27 years ago
  98. 6bf62da Keep gcc -Wall and Microsoft VC happy. by Guido van Rossum · 27 years ago
  99. c6472e9 1. Add string conversions to int(), long(), float(). (Not to complex()!) by Guido van Rossum · 27 years ago
  100. 1c6a459 Define __debug__ as 0 if -O is given, 1 otherwise. Also test for by Guido van Rossum · 27 years ago