1. 92f4b36 Resurrected Small Carbon Python as a target in PythonStandSmall. Still no GUSI, though, so no socket/select/threads. by Jack Jansen · 24 years ago
  2. ebadcb1 FSSpec names may be longer on carbon (1024 chars), cater for that in buffer sizes. by Jack Jansen · 24 years ago
  3. 91faef8 Don't need to define c2pstrcpy() on Carbon: it's in CarbonLib. by Jack Jansen · 24 years ago
  4. 6ff228c If we're not using GUSI the "keep open on unseen output" becomes the same as "always keep open". by Jack Jansen · 24 years ago
  5. e7bfc91 Carbon defines {Get,Set}ControlDataHandle, so unfortunately our variants on {Get,Set}ControlData have gotten an underscore: GetControlData_Handle, etc. by Jack Jansen · 24 years ago
  6. a9e3db3 Carbon defines {Get,Set}ControlDataHandle, so unfortunately our variants on {Get,Set}ControlData have gotten an underscore: GetControlData_Handle, etc. This is an incompatible change:-( by Jack Jansen · 24 years ago
  7. 0d202b7 Various tweaks to make it everything build and compile again under carbon. Mainly greylisted functions. by Jack Jansen · 24 years ago
  8. 42181db Added a --global-module-index option to specify a (possibly relative) URL by Fred Drake · 24 years ago
  9. e07d5cf Jeff Epler's patch adding an xreadlines() method. (It just imports by Guido van Rossum · 24 years ago
  10. 07b78a8 Test for xreadline. by Guido van Rossum · 24 years ago
  11. ea3375d Jeff Epler's xreadlines module, with slight reformatting and some by Guido van Rossum · 24 years ago
  12. c49480e Miscellaneous updates. by Fred Drake · 24 years ago
  13. 347a625 Steve Holden <sholden@holdenweb.com>: by Fred Drake · 24 years ago
  14. d5f0198 Added names. by Fred Drake · 24 years ago
  15. 986eafd Added missing word; fixed minor nits. by Fred Drake · 24 years ago
  16. 37f1b34 Added entry for fpectl module documentation. by Fred Drake · 24 years ago
  17. fa214cc Added entry for fpectl module documentation. by Fred Drake · 24 years ago
  18. a5e7ad9 Documentation for the fpectl module, from Lee Busby. (Thanks!) by Fred Drake · 24 years ago
  19. 705a3ad Check in patch #102971: if library_dirs is a string, split it using by Andrew M. Kuchling · 24 years ago
  20. 9d56cd1 Patch #102953: Fix bug #125452, where shlex.shlex hangs when it by Andrew M. Kuchling · 24 years ago
  21. 92d8917 Address a bug in the uuencode decoder, reported bu "donut" in SF bug by Guido van Rossum · 24 years ago
  22. dcf5715 Tsk, tsk, tsk. Treat FreeBSD the same as the other BSDs when defining by Guido van Rossum · 24 years ago
  23. a9586c7 Remove configure test for getline(), since it's no longer used at all by Andrew M. Kuchling · 24 years ago
  24. e2ad633 Anonymous SF bug report #128053 point out that the #ifdef for by Guido van Rossum · 24 years ago
  25. 45b1d6a Explain that long options are matched based on a unique prefix rather than by Fred Drake · 24 years ago
  26. e1fd526 GetoptError is always initialized with exactly two parameters, so simplify by Fred Drake · 24 years ago
  27. b2a0a83 Fixed bug which caused HTTPS not to work at all with string URLs by Moshe Zadka · 24 years ago
  28. 010b0cc Fix a silly bug in float_pow. Sorry Tim. by Neil Schemenauer · 24 years ago
  29. 81473b1 The Python/C API deals in PyObject*, not PyDictObject*. by Fred Drake · 24 years ago
  30. daa823a Text.__init__(): Make sure the data parameter is a string (8-bit or by Fred Drake · 24 years ago
  31. 1c73323 A few reformats; no logic changes. by Tim Peters · 24 years ago
  32. 8628206 Let's hope that three time's a charm... by Guido van Rossum · 24 years ago
  33. 3a55f95 18 isn't a prime (duh). by Tim Peters · 24 years ago
  34. 15b8385 Fiddled ms_getline_hack after talking w/ Guido: made clearer that the by Tim Peters · 24 years ago
  35. 86821b2 MS Win32 .readline() speedup, as discussed on Python-Dev. This is a tricky by Tim Peters · 24 years ago
  36. 4ddf0a0 Tim noticed that I had botched get_line_raw(). Looking again, I by Guido van Rossum · 24 years ago
  37. e3fb18c Add more regression tests, including for the import statement variations. by Fred Drake · 24 years ago
  38. 7113708 Fix problems with validation of import statement parse trees. by Fred Drake · 24 years ago
  39. 1109db4 This patch adds a new feature to the builtin charmap codec: by Marc-André Lemburg · 24 years ago
  40. ec233e5 This patch adds a new feature to the builtin charmap codec: by Marc-André Lemburg · 24 years ago
  41. 2b28776 Added "repeat.py" -- repeatedly execute a shell command (like by Guido van Rossum · 24 years ago
  42. cadfaec Configuration test for working getc_unlocked() (and flockfile() and by Guido van Rossum · 24 years ago
  43. 4795524 Speed it up by using readlines(sizehint). It's still slower than by Guido van Rossum · 24 years ago
  44. 1187aa4 Restructured get_line() for clarity and speed. by Guido van Rossum · 24 years ago
  45. 742bb6f Clarification of new bisect module functions. by Tim Peters · 24 years ago
  46. e1d4715 Update explanation of the set_location() method to indicate that in by Fred Drake · 24 years ago
  47. a4d18a0 Add test cases based on RFC 1808. So now we actually have a test suite by Fred Drake · 24 years ago
  48. 867952f urlunparse(): Do not add a leading slash to the path if it is empty. by Fred Drake · 24 years ago
  49. b8584e0 Fix signed/unsigned wng. Unfortunately, (unsigned char) << int by Tim Peters · 24 years ago
  50. 1a7aab7 When a PyCFunction that takes only positional parameters is called with by Fred Drake · 24 years ago
  51. be4c0f5 Recognize pyc files even if they don't end in pyc. by Martin v. Löwis · 24 years ago
  52. b31d36c Fix the bugfix for SF bug #127151 -- make sure we map "previous_page" to by Fred Drake · 24 years ago
  53. 445f832 __rcmp__() description: Changed to indicate that this is no longer by Fred Drake · 24 years ago
  54. 4e18f07 Based on comments from Guido, do not describe bisect() and insert() as by Fred Drake · 24 years ago
  55. 288927f Markup nit: Command line options should be marked with \programopt. by Fred Drake · 24 years ago
  56. 316ef7c Markup nit: Command line options should be marked with \programopt. by Fred Drake · 24 years ago
  57. b162d18 Fix typo spotted by Detlef Lannert <lannert@users.sourceforge.net>. by Fred Drake · 24 years ago
  58. 19ae783 Added information about the interaction of opening a file in append mode by Fred Drake · 24 years ago
  59. 22e9a5e Markup nit: OK and ERR should be marked \constant in running text. by Fred Drake · 24 years ago
  60. 2a72712 Update documentation to include the new functions, and use the more by Fred Drake · 24 years ago
  61. 9c15fa7 Description of long(): A string parameter is no longer required to be by Fred Drake · 24 years ago
  62. 23ab199 Add NotImplemented to the builtin module. by Neil Schemenauer · 24 years ago
  63. 5ed85ec Changes for PEP 208. PyObject_Compare has been rewritten. Instances no by Neil Schemenauer · 24 years ago
  64. ba872e2 Make long a new style number type. Sequence repeat is now done here by Neil Schemenauer · 24 years ago
  65. 139e72a Make int a new style number type. Sequence repeat is now done here now as well. by Neil Schemenauer · 24 years ago
  66. 32117e5 Make float a new style number type. by Neil Schemenauer · 24 years ago
  67. 29bfc07 Make instances a new style number type. See PEP 208 for details. Instance by Neil Schemenauer · 24 years ago
  68. 5a1f015 Massive changes as per PEP 208. Read it for details. by Neil Schemenauer · 24 years ago
  69. 0ee7d82 No more RCmp. by Neil Schemenauer · 24 years ago
  70. 623116a Sequence repeat works now for in-place multiply with an integer type by Neil Schemenauer · 24 years ago
  71. aa726ba __rcmp__ no longer gets called on instances. Remove the test for it. by Neil Schemenauer · 24 years ago
  72. 38f0223 Numbers no longer compare smaller than all other types. Fix the only by Neil Schemenauer · 24 years ago
  73. a7ed694 - Add nb_cmp slot for new style nubmers. by Neil Schemenauer · 24 years ago
  74. dd038db Remove PyInstance_*BinOp functions. by Neil Schemenauer · 24 years ago
  75. 48c2eb9 Document the NotImplemented object. by Neil Schemenauer · 24 years ago
  76. 5a57163 Patch #103012: Update fpectlmodule for current glibc; by Andrew M. Kuchling · 24 years ago
  77. 5ab3661 Actually call the object with an __call__ method, instead of just by Jeremy Hylton · 24 years ago
  78. 5282044 Revised implementation of CALL_FUNCTION and friends. More revision still needed. by Jeremy Hylton · 24 years ago
  79. c4e1775 Two new names. by Guido van Rossum · 24 years ago
  80. ecc463a New, improved README from Mike Clarkson. Wow! by Guido van Rossum · 24 years ago
  81. 1fb6088 dict_update has two boundary conditions: a.update(a) and a.update({}) by Jeremy Hylton · 24 years ago
  82. db60bb5 fix leak by Jeremy Hylton · 24 years ago
  83. a866df8 This patch changes the default behaviour of the builtin charmap by Marc-André Lemburg · 24 years ago
  84. b55b7bb Use relative path for outputdir. by Jack Jansen · 24 years ago
  85. b55e5f1 Fixed a few declarations. by Jack Jansen · 24 years ago
  86. 2d4ac20 Mark the "encoding" parameter to ExternalEntityParserCreate() as optional by Fred Drake · 24 years ago
  87. e396c04 struct.pack wants H for unsigned shorts, not h. by Jack Jansen · 24 years ago
  88. e56e87d Got rid of 68K support. by Jack Jansen · 24 years ago
  89. e7e694f Use == rather than cmp(). The return value of cmp() is not well defined when by Neil Schemenauer · 24 years ago
  90. 38796d0 Use numbers that can be accurately represented on binary machines. I hope by Neil Schemenauer · 24 years ago
  91. d18722b Do not cache <img> tags for navigation icons as agressively; this fixes by Fred Drake · 24 years ago
  92. 7ee67a1 Remove (unused) regex imports. by Jack Jansen · 24 years ago
  93. be614ee Use re in stead of regex. by Jack Jansen · 24 years ago
  94. ef92edd Make the test program work outside IDLE. by Guido van Rossum · 24 years ago
  95. 6d0cee1 Add forgotten import by Andrew M. Kuchling · 24 years ago
  96. 352ca8c Duh. Instead of string.whitespace and string.digits, use isspace() by Guido van Rossum · 24 years ago
  97. 2cba0f6 Improve description of else clause of the try/except/else statement. by Fred Drake · 24 years ago
  98. b19f1e3 Add Alt-slash to Unix keydefs (I somehow need it on RH 6.2). by Guido van Rossum · 24 years ago
  99. fd288c7 Add more tests for compare and coercion in preparation for the coercion by Neil Schemenauer · 24 years ago
  100. 10e31cf Add garbage collection for module objects. Closes patch #102939 and by Neil Schemenauer · 24 years ago