1. 94c9d90 Forgot to add this. It's part of patch 568629. by Guido van Rossum · 22 years ago
  2. 0f1afb1 test_module_with_large_stack(): This failed when Python was run with -O, by Tim Peters · 22 years ago
  3. 0672712 test_module_with_large_stack(): This failed on Windows, for the wrong by Tim Peters · 22 years ago
  4. 11e104f Unsure exactly why I'm doing this, but I couldn't build a debug-mode by Tim Peters · 22 years ago
  5. 9562bcf Add Oren Tirosh and news about his patch. by Guido van Rossum · 22 years ago
  6. bea18cc SF patch 568629 by Oren Tirosh: types made callable. by Guido van Rossum · 22 years ago
  7. 57454e5 This introduces stricter library/header file checking for the Berkeley DB by Skip Montanaro · 22 years ago
  8. a0c5e9f Clean up descriptions of PyObject_RichCompare() and PyObject_RichCompareBool() by Fred Drake · 22 years ago
  9. da07ea7 Use code.interact(), which is even simpler, *and* imports readline when it can. by Guido van Rossum · 22 years ago
  10. cb4d7ce Now FOR_LOOP is gone, loop_subscript can go too. by Michael W. Hudson · 22 years ago
  11. 2aabac8 Don't poorly emulate the interactive interpreter, use by Guido van Rossum · 22 years ago
  12. a8ef0d1 Anchors ("a" elements) used only for the name attribute should not by Fred Drake · 22 years ago
  13. 1e4519f Make a start at describing the results of class/type unification by Steve Holden · 22 years ago
  14. e7f3e24 Test for the bug in recurse_down_subclasses() that I just fixed. by Guido van Rossum · 22 years ago
  15. 59e6c53 Inexplicably, recurse_down_subclasses() was comparing the object by Guido van Rossum · 22 years ago
  16. 2c2e827 Missed one use of new PyDoc_STRVAR macro by Neal Norwitz · 22 years ago
  17. 6c123ef Refer the reader to the correct module for constant definitions. by Fred Drake · 22 years ago
  18. eda5a8e Fix SF bug # 561858 Assertion with very long lists by Neal Norwitz · 22 years ago
  19. 7fdcb41 Fix SF bug # 561858 Assertion with very long lists by Neal Norwitz · 22 years ago
  20. 1f68fc7 SF bug # 493951 string.{starts,ends}with vs slices by Neal Norwitz · 22 years ago
  21. 585775b Document the Binary.data attribute. This closes SF bug #562878. by Fred Drake · 22 years ago
  22. 9c92b69 Use \code{True} (or False) instead of true/false. by Neal Norwitz · 22 years ago
  23. 1b738e9 Test exceptional condition in select() by Neal Norwitz · 22 years ago
  24. 6fc36c5 Test exceptional conditions in list.sort() by Neal Norwitz · 22 years ago
  25. 2b34290 Cleanup a little by Neal Norwitz · 22 years ago
  26. 4178515 SF # 533070 Silence AIX C Compiler Warnings by Neal Norwitz · 22 years ago
  27. e7b8ecf Major cleanup operation: whenever there's a call that looks for an by Guido van Rossum · 22 years ago
  28. 16b93b3 Fix for SF bug 532646. This is a little simpler than what Neal by Guido van Rossum · 22 years ago
  29. 51290d3 SF # 561244 Micro optimizations by Neal Norwitz · 22 years ago
  30. 20e7213 Fix typo in exception message by Neal Norwitz · 22 years ago
  31. 0c2c17c Use new PyDoc_STRVAR macro by Neal Norwitz · 22 years ago
  32. cc5c694 Add "version added" for getpgid by Neal Norwitz · 22 years ago
  33. 35fc760 SF #561244 Micro optimizations by Neal Norwitz · 22 years ago
  34. 606edc1 Patch #568235: Add posix.setpgid. by Martin v. Löwis · 22 years ago
  35. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  36. 654c11e Temporarily disable the timeout and socket tests. by Guido van Rossum · 22 years ago
  37. 09638c1 Hopefully this addresses the remaining issues of SF bugs 459235 and by Guido van Rossum · 22 years ago
  38. fea59e7 The opcode FOR_LOOP no longer exists. by Guido van Rossum · 22 years ago
  39. efb9097 Do not claim that getlocale() returns a tulpe; that is not always true. by Fred Drake · 22 years ago
  40. 340043e Munge depends files to have absolute paths. by Jeremy Hylton · 22 years ago
  41. c18fde5 Extend dependency tracking so that .o files are rebuilt. by Jeremy Hylton · 22 years ago
  42. 1bba31d Refactor compile() method implementations. by Jeremy Hylton · 22 years ago
  43. 6864d30 Add depends=None to the arglist for compile(). by Jeremy Hylton · 22 years ago
  44. 59b103c Extend compiler() method with optional depends argument. by Jeremy Hylton · 22 years ago
  45. 65ce6de Rearrange the #ifndef WITHOUT_COMPLEX so it can be picked up from pyconfig.h. by Guido van Rossum · 22 years ago
  46. 597257b Comment out testHostnameRes() -- it depends on a correctly working by Guido van Rossum · 22 years ago
  47. 7b8bac1 Fix non-blocking connect() for Windows. Refactored the code by Guido van Rossum · 22 years ago
  48. 129b17d More style changes and little cleanups. by Jeremy Hylton · 22 years ago
  49. df1e092 Get rid of accidentally checked-in reference to "bits". by Guido van Rossum · 22 years ago
  50. 11ba094 Major overhaul of timeout sockets: by Guido van Rossum · 22 years ago
  51. dfad1a9 Fix a typo. by Guido van Rossum · 22 years ago
  52. 022640d Some more style improvements by Jeremy Hylton · 22 years ago
  53. 28f46e1 Python style conformance: Delete spaces between name of function and arglist. by Jeremy Hylton · 22 years ago
  54. 47d3a7a Add dependencies on socketmodule.h. by Guido van Rossum · 22 years ago
  55. 74a3bec _Py prefix is verboten for static entry points by Andrew MacIntyre · 22 years ago
  56. 7aec4a2 work around name clash with OS/2 TCPIP routine sock_init() by Andrew MacIntyre · 22 years ago
  57. 3fcd452 Whitespace nit. by Guido van Rossum · 22 years ago
  58. 178153f Add documentation for PyObject_RichCompare() and PyObject_RichCompareBool(), by Fred Drake · 22 years ago
  59. 2e82e71 Changed the extended slice example to show that you can reverse a by Guido van Rossum · 22 years ago
  60. e9996c6 Add version annotations for some older changes to the calendar module. by Fred Drake · 22 years ago
  61. ab65996 Remove some overly complicated ways to concatenate and repeat strings by Guido van Rossum · 22 years ago
  62. 284a2cf Don't test for Java, test for sys.getrefcount. by Guido van Rossum · 22 years ago
  63. 1c93801 Some provisional changes to get more tests to run on Windows (I hope). by Guido van Rossum · 22 years ago
  64. 8e95ca8 Argh. Typo. :-( by Guido van Rossum · 22 years ago
  65. 6fb3d5e Allow absent fromfd(), for Windows. by Guido van Rossum · 22 years ago
  66. 733632a testSetSockOpt() should not require the reuse flag to be 1 -- any by Guido van Rossum · 22 years ago
  67. 7648968 Lose the message on assertEqual calls -- they actually hide by Guido van Rossum · 22 years ago
  68. 28774da Docstring, layout and style tweaking. Increase fuzz to 1 second. by Guido van Rossum · 22 years ago
  69. 09e532b Add a new definition to Extension objects: depends. by Jeremy Hylton · 22 years ago
  70. aa6a664 Add some more basic tests to validate the argument checking of by Guido van Rossum · 22 years ago
  71. 24e4af8 New test suite for the socket module by Michael Gilfix. by Guido van Rossum · 22 years ago
  72. e3fdc97 SF bug 567826. Document new opcodes: by Guido van Rossum · 22 years ago
  73. 05e01ee Add a testcase to ensure that cycles going through the __class__ link by Guido van Rossum · 22 years ago
  74. c5fe5eb SF bug 567538: Generator can crash the interpreter (Finn Bock). by Guido van Rossum · 22 years ago
  75. 969de45 Rework the code to have only the GvR RPC. Output from execution of user by Kurt B. Kaiser · 22 years ago
  76. 9f709bf The opcode YIELD_STMT was accidentally called YIELD_VALUE here. by Guido van Rossum · 22 years ago
  77. a039274 patch #562492 - prevent duplicate lines in history by Skip Montanaro · 22 years ago
  78. 60e04cd Fix SF #565414, FancyURLopener() needs to support **kwargs by Neal Norwitz · 22 years ago
  79. 589dc93 Fix for problem reported by Neal Norwitz. Tighten up calculation of by Michael W. Hudson · 22 years ago
  80. 75a20b1 Fold remaining long lines. by Guido van Rossum · 22 years ago
  81. 5efaf7e This is my nearly two year old patch by Michael W. Hudson · 22 years ago
  82. f90ae20 Patch #488073: AtheOS port. by Martin v. Löwis · 22 years ago
  83. 7981ce5 add a version of GvR's q&d python idle printing patch, by Steven M. Gava · 22 years ago
  84. 55ad7f8 Completely revise markup for the list of list methods; the new markup matches by Fred Drake · 22 years ago
  85. 9f7549b Record the latest fixes. by Guido van Rossum · 22 years ago
  86. 62080be Took initial_tab and subsequent_tab away from the fill() method and by Greg Ward · 22 years ago
  87. 11ade1d SF patch 560794 (Greg Chapman): deepcopy can't handle custom metaclasses. by Guido van Rossum · 22 years ago
  88. cf02ac6 Allow the standalone wrap() and fill() functions to take arbitrary by Greg Ward · 22 years ago
  89. d34c959 Make 'width' an instance attribute rather than an argument to the wrap() by Greg Ward · 22 years ago
  90. 4f7829e Remove the only use of a string method. Fixes SF 564840. by Thomas Heller · 22 years ago
  91. 009afb7 SF patch 564549 (Erik Andersén). by Guido van Rossum · 22 years ago
  92. 804cdca Don't accept null bytes in the key. by Guido van Rossum · 22 years ago
  93. a861d55 Document that the key should not contain null bytes. by Guido van Rossum · 22 years ago
  94. db9198a SF bug 563750 (Alex Martelli): posix_tmpfile(): by Guido van Rossum · 22 years ago
  95. 7f147a7 Tweak traceback message to avoid LaTeX2HTML bug Add a reminder by Andrew M. Kuchling · 22 years ago
  96. 2ca7862 Add primitive printing support for Unix and Windows. by Guido van Rossum · 22 years ago
  97. eb91488 Fix typo by Andrew M. Kuchling · 22 years ago
  98. cab0580 Undo the last chunk of the previous patch, putting back a useful by Guido van Rossum · 22 years ago
  99. a386209 In the recent python-dev thread "Bizarre new test failure", we by Guido van Rossum · 22 years ago
  100. 2309498 Three's a charm: yet another fix for SF bug 551412. Thinking again by Guido van Rossum · 22 years ago