1. 0e11595 shuffle() doscstring: Removed warning about sequence length by Tim Peters · 18 years ago
  2. 9a8ae8f Suppress warning on MacOSX about possible use before set of proc. by Skip Montanaro · 18 years ago
  3. 9af2b44 Handle failure of PyMem_Realloc. by Thomas Heller · 18 years ago
  4. 9123edc Don't use C++ comment. by Thomas Heller · 18 years ago
  5. eb6dcf6 Fix the second occurrence of the problematic printf format. by Thomas Heller · 18 years ago
  6. 5218ab2 Fix a wrong printf format. by Thomas Heller · 18 years ago
  7. 82578c8 New docs for ctypes. by Thomas Heller · 18 years ago
  8. 9a7e445 credit for SF patch #1303595 by Fred Drake · 18 years ago
  9. 5e30626 SF patch #1303595: improve description of __builtins__, explaining how it by Fred Drake · 18 years ago
  10. 5114826 Upgrade to ctypes version 0.9.9.7. by Thomas Heller · 18 years ago
  11. 45f59ab Upgrade to ctypes version 0.9.9.7. by Thomas Heller · 18 years ago
  12. c5221e1 Sync with Optik docs (rev 518): by Greg Ward · 18 years ago
  13. 86116e2 document the class, not its initializer by Skip Montanaro · 18 years ago
  14. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 18 years ago
  15. acd0d6d SF bug #1503294. by Armin Rigo · 18 years ago
  16. 787fe6d Port cygwin kill_python changes from 2.4 branch. by Martin v. Löwis · 18 years ago
  17. 90e27d3 Apply perky's fix for #1503157: "/".join([u"", u""]) raising OverflowError. by Georg Brandl · 18 years ago
  18. 6946ea0 Fix bug introduced in rev. 46806 by not having variable declaration at the top of a block. by Brett Cannon · 18 years ago
  19. 22565aa An object with __call__ as an attribute, when called, will have that attribute checked for __call__ itself, and will continue to look until it finds an object without the attribute. This can lead to an infinite recursion. by Brett Cannon · 18 years ago
  20. b2afe85 Make use of new str.startswith/endswith semantics. by Georg Brandl · 18 years ago
  21. 3ebef99 set eol-style svn property by Thomas Heller · 18 years ago
  22. 2ad7bd5 set eol-style svn property by Thomas Heller · 18 years ago
  23. b3f2985 Add some wsgiref text by Andrew M. Kuchling · 18 years ago
  24. 2007d4e Remove unused variable by Andrew M. Kuchling · 18 years ago
  25. e558486 Implementing a happy idea from Georg Brandl: make runtest() try to by Tim Peters · 18 years ago
  26. a04d118 Describe startswith()/endswiith() change; add reminder about wsgiref by Andrew M. Kuchling · 18 years ago
  27. 2425081 RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first argument. by Georg Brandl · 18 years ago
  28. 932f5af svn:ignore .pyc and .pyo files. by Brett Cannon · 18 years ago
  29. e7ec81f Test file.__exit__. by Georg Brandl · 18 years ago
  30. 982c30b Whitespace normalization. by Tim Peters · 18 years ago
  31. c48b0e6 Fix inconsistency in naming within an enum. by Brett Cannon · 18 years ago
  32. 0873b11 Add note about wsgiref by Andrew M. Kuchling · 18 years ago
  33. 3fed2eb Add note about XMLGenerator bugfix by Andrew M. Kuchling · 18 years ago
  34. 5cf565d Import wsgiref into the stdlib, as of the external version 0.1-r2181. by Phillip J. Eby · 18 years ago
  35. dbeaa69 Turn off warning about deprecated CRT functions on for VisualStudio .NET 2005. by Kristján Valur Jónsson · 18 years ago
  36. 91c64a0 [Bug #1472827] Make saxutils.XMLGenerator handle \r\n\t in attribute values by escaping them properly. 2.4 bugfix candidate. by Andrew M. Kuchling · 18 years ago
  37. 7dbb1ff Markup fix by Andrew M. Kuchling · 18 years ago
  38. c9778a8 Fix grammar and reflow by Neal Norwitz · 18 years ago
  39. 71dc0a0 Remove the temporary hack to force test_optparse to by Tim Peters · 18 years ago
  40. 0556e9b testUnicodeOpen(): I have no idea why, but making this by Tim Peters · 18 years ago
  41. dbb82f6 AutoFileTests.tearDown(): Removed mysterious undocumented by Tim Peters · 18 years ago
  42. 2b63779 To boost morale :-), force test_optparse to run immediately by Tim Peters · 18 years ago
  43. 520d8dd Whitespace normalization. by Tim Peters · 18 years ago
  44. e878fe6 Update functools section by Andrew M. Kuchling · 18 years ago
  45. de3b052 Buffer objects would return the read or write buffer for a wrapped object when by Brett Cannon · 18 years ago
  46. 6ee7d01 Make binascii.hexlify() use s# for its arguments instead of t# to actually by Brett Cannon · 18 years ago
  47. 442b49e Convert test_file to unittest. by Georg Brandl · 18 years ago
  48. 98b40ad Bug #1502805: don't alias file.__exit__ to file.close since the by Georg Brandl · 18 years ago
  49. 676725d Add functools.update_wrapper() and functools.wraps() as described in PEP 356 by Nick Coghlan · 18 years ago
  50. 98251f8 Argh. "integer" is a very confusing word ;) by Georg Brandl · 18 years ago
  51. c9ae4e8 Add news for recent bugfix. by Georg Brandl · 18 years ago
  52. 66a0dbb Bug #1502728: Correctly link against librt library on HP-UX. by Georg Brandl · 18 years ago
  53. 22ccbbc Bug #1502750: Fix getargs "i" format to use LONG_MIN and LONG_MAX for bounds checking. by Georg Brandl · 18 years ago
  54. 06c5c8a Typo fix by Andrew M. Kuchling · 18 years ago
  55. fd01d79 (arre, arigo) SF bug #1350060 by Armin Rigo · 18 years ago
  56. 996710f pasted set_lk_detect line in wrong spot in previous commit. fixed. passes tests this time. by Gregory P. Smith · 18 years ago
  57. dda291c * Turn the deadlock situation described in SF bug #775414 into a by Gregory P. Smith · 18 years ago
  58. ff7d991 - bsddb: the bsddb.dbtables Modify method now raises the proper error and by Gregory P. Smith · 18 years ago
  59. f0cab1f Fix a refleak in recvfrom_into by Neal Norwitz · 18 years ago
  60. ec0d6f8 Clarify documentation for bf_getcharbuffer. by Brett Cannon · 18 years ago
  61. 861acee Fix for foreign functions returning small structures on 64-bit big by Thomas Heller · 18 years ago
  62. d5474ea Add missing svn:eol-style property to text files. by Tim Peters · 18 years ago
  63. ae6a5a7 Whitespace normalization. by Tim Peters · 18 years ago
  64. 4b7a6c8 * If BuildApplet.py is used as an applet it starts with a version of by Ronald Oussoren · 18 years ago
  65. 750e920 - Patch the correct version of python in the Info.plists at build time, instead by Ronald Oussoren · 18 years ago
  66. 2db3a8f And the last bit: move IDLE one level up and adjust makefiles by Ronald Oussoren · 18 years ago
  67. 32f5d8f Move Mac/OSX/* one level up by Ronald Oussoren · 18 years ago
  68. 0e5b70d mv Mac/OSX/BuildScript one level up by Ronald Oussoren · 18 years ago
  69. c629be8 Move Mac/OSX/PythonLauncher one level up by Ronald Oussoren · 18 years ago
  70. 8ec9f86 Move Mac/OSX/Tools one level up by Ronald Oussoren · 18 years ago
  71. e275d3d Mention other placeholders by Andrew M. Kuchling · 18 years ago
  72. 3b336c7 Add an item; also, escape % by Andrew M. Kuchling · 18 years ago
  73. 1271f00 Mention other placeholders by Andrew M. Kuchling · 18 years ago
  74. 12238d7 Add an SQLite introduction, taken from the 'What's New' text by Andrew M. Kuchling · 18 years ago
  75. 80dc76e SF patch 1501987: Remove randomness from test_exceptions, by Tim Peters · 18 years ago
  76. c27d655 dash_R_cleanup(): Clear filecmp._cache. This accounts for by Tim Peters · 18 years ago
  77. 704fbe4 A quick hack to ensure the right key-bindings for IDLE on osx: install patched by Ronald Oussoren · 18 years ago
  78. 5b78732 * Ensure that "make altinstall" works when the tree was configured by Ronald Oussoren · 18 years ago
  79. b1998bc Use the same big-endian hack as in _ctypes/callproc.c for callback functions. by Thomas Heller · 18 years ago
  80. d8714de Add a hack so that foreign functions returning float now do work on 64-bit by Thomas Heller · 18 years ago
  81. ea229bd Fix coding style guide bug. by Brett Cannon · 18 years ago
  82. 12ca69b Fix comment typo by Andrew M. Kuchling · 18 years ago
  83. dba6318 On python-dev Thomas Heller said these were committed by Tim Peters · 18 years ago
  84. bb21b2c BSequence_set_range(): Rev 46688 ("Fix a bunch of by Tim Peters · 18 years ago
  85. 56dab85 Specify argtypes for all test functions. Maybe that helps on strange ;-) architectures by Thomas Heller · 18 years ago
  86. 215f13d Normalized a few cases of whitespace in function declarations. by Martin Blais · 18 years ago
  87. 07347d6 Damn - the sentinel was missing. And fix another silly mistake. by Thomas Heller · 18 years ago
  88. ecc3e67 Convert CFieldObject tp_members to tp_getset, since there is no by Thomas Heller · 18 years ago
  89. dd2a6bf Fix a bunch of parameter strings by Neal Norwitz · 18 years ago
  90. e0e797f Remove unused variable (and stop compiler warning) by Neal Norwitz · 18 years ago
  91. 02f1d0d _PySys_Init(): It's rarely a good idea to size a buffer to the by Tim Peters · 18 years ago
  92. 3c228b1 - bsddb: the __len__ method of a DB object has been fixed to return correct by Gregory P. Smith · 18 years ago
  93. 4f7a722 Add 3 more bytes to a buffer to cover constants in string and null byte on top of 10 possible digits for an int. by Brett Cannon · 18 years ago
  94. d792392 add depends = ['md5.h'] to the _md5 module extension for correctness sake. by Gregory P. Smith · 18 years ago
  95. c169e9f Add missing svn:eol-style property to text files. by Tim Peters · 18 years ago
  96. 852eae1 Access _struct attributes directly instead of mucking with getattr. by Tim Peters · 18 years ago
  97. 5332989 [Bug #1470026] Include link to list of classifiers by Andrew M. Kuchling · 18 years ago
  98. 760872d Remove use of Trove name, which isn't very helpful to users by Andrew M. Kuchling · 18 years ago
  99. 372b583 * fix DBCursor.pget() bug with keyword argument names when no data= is by Gregory P. Smith · 18 years ago
  100. 1cb75a5 Add missing svn:eol-style property to text files. by Tim Peters · 18 years ago