1. 6681de2 _siftup(): __le__ is now the only comparison operator used on array elements. by Tim Peters · 22 years ago
  2. 0ad679f Document new heapreplace() function. by Tim Peters · 22 years ago
  3. 6e0da82 Document new heapify() function. by Tim Peters · 22 years ago
  4. c4c7180 Revert last checkin. Man, that was stupid. by Michael W. Hudson · 22 years ago
  5. 210f558 Another fix for: by Michael W. Hudson · 22 years ago
  6. dc96ae6 revert to version 1.2 by Piers Lauder · 22 years ago
  7. 0cd53a6 Added new heapreplace(heap, item) function, to pop (and return) the by Tim Peters · 22 years ago
  8. 657fe38 Large code rearrangement to use better algorithms, in the sense of needing by Tim Peters · 22 years ago
  9. 6bdbc9e SF bug 590366: Small typo in listsort:ParseTuple by Tim Peters · 22 years ago
  10. 30e0bea Remove cut 'n paste silliness. by Tim Peters · 22 years ago
  11. aa7d243 Minor fiddling, including a simple class to implement a heap iterator by Tim Peters · 22 years ago
  12. 0e0a479 Added an icon for .pyw files. by Jack Jansen · 22 years ago
  13. 2f8816f An icon for .pyw files. Yes, it's lousy, I know.... by Jack Jansen · 22 years ago
  14. fbb2992 Augment credits. by Guido van Rossum · 22 years ago
  15. 28c2552 Hmm! I thought I checked this in before! Oh well. by Tim Peters · 22 years ago
  16. 940dc92 Build the IDE last, as it may fail because of waste missing. by Jack Jansen · 22 years ago
  17. 0fdaee7 Added a lot more information on framework builds, the various .app's, by Jack Jansen · 22 years ago
  18. 337f85d Updated for the new path to Python.app. by Jack Jansen · 22 years ago
  19. f80798b When building the IDE check that waste is available, to forestall by Jack Jansen · 22 years ago
  20. 4b48d6b Add a PEP-263-style encoding turd^H^H^H^Hdeclaration, because there's by Guido van Rossum · 22 years ago
  21. 610291c Fix ref(), proxy() docstrings, based on comments from David Abrahams. by Fred Drake · 22 years ago
  22. 62abc2f heappop(): Added comments; simplified and sped the code. by Tim Peters · 22 years ago
  23. 1acab69 Minor markup changes. by Fred Drake · 22 years ago
  24. a0b3a00 heappop(): Use "while True" instead of "while 1". by Tim Peters · 22 years ago
  25. d2cf1ab check_invariant(): Use the same child->parent "formula" used by heapq.py. by Tim Peters · 22 years ago
  26. d9ea39d Don't use true division where int division was intended. For that matter, by Tim Peters · 22 years ago
  27. b481286 Add a comment showing how one of the macros should be used. by Fred Drake · 22 years ago
  28. 0b19178 Adding the heap queue algorithm, per discussion in python-dev last week. by Guido van Rossum · 22 years ago
  29. ad09bbf Add heapq module docs to the dependency information. by Fred Drake · 22 years ago
  30. 4a57c33 Adding the heap queue algorithm, per discussion in python-dev last week. by Guido van Rossum · 22 years ago
  31. 9751216 Add docs for heapq.py. by Guido van Rossum · 22 years ago
  32. de994d9 indicate that 'b' is added to the mode flag if not given by Skip Montanaro · 22 years ago
  33. 71ffc5c add #include branch for compilation with Berkeley DB by Skip Montanaro · 22 years ago
  34. 404378f catch the situation where Berkeley DB is used to emulate dbm(3) library by Skip Montanaro · 22 years ago
  35. 13a5678 regression test for the whichdb module by Skip Montanaro · 22 years ago
  36. 37c3b27 Add Kevin O'Connor, author of the heapq code. by Guido van Rossum · 22 years ago
  37. 0a82438 Adding the heap queue algorithm, per discussion in python-dev last week. by Guido van Rossum · 22 years ago
  38. f443330 testGetServByName shouldn't check for getservbyname - the socket module by Skip Montanaro · 22 years ago
  39. 940e970 Also create BuildApplet. It's useful enough as a standalone application. by Jack Jansen · 22 years ago
  40. 3e6c80b Hmm, in some cases we don't seem to get our scriptname in argv[0]. by Jack Jansen · 22 years ago
  41. ba1c13d Final step in making applets first-class citizens: if the applet wants by Jack Jansen · 22 years ago
  42. a9454e2 Oops, the -psn stuff is in argv[1], of course. by Jack Jansen · 22 years ago
  43. 21ed16a Added one call to Py_Main(), for OSX framework builds only, that will get the by Jack Jansen · 22 years ago
  44. 94416e5 Got rid of a couple of OS9-isms. by Jack Jansen · 22 years ago
  45. 2eb4b18 - Slightly better error message in case of syntax errors in the script. by Jack Jansen · 22 years ago
  46. 90b8e4d Fix for by Michael W. Hudson · 22 years ago
  47. 6e1986b - Remove -psn-xxxx argument added by the Finder. by Jack Jansen · 22 years ago
  48. d5049e7 Replaced python.app target with osxapps (it builds more than by Jack Jansen · 22 years ago
  49. f4f6d48 Construct a sys.argv from the initial AppleEvent sent by the finder by Jack Jansen · 22 years ago
  50. d05e181 Slightly better error message in case of missing resources. by Jack Jansen · 22 years ago
  51. d5f4359 New test %sort. This takes a sorted list, picks 1% of the list positions by Tim Peters · 22 years ago
  52. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  53. d3c884d modify testGetServByName so it tries a few different protocols. In this day by Skip Montanaro · 22 years ago
  54. ea0c382 - Get _environ through the NSEnviron call in a MacOSX framework. This allows by Jack Jansen · 22 years ago
  55. be3e1f7 Python.app is now a hidden application, deep in the framework. It will by Jack Jansen · 22 years ago
  56. 2fc993d Python.app no longer advertises that it can handle .py and .pyc files, by Jack Jansen · 22 years ago
  57. b54c27c Fix for SF bug 570678 (can't flush read-only file on Mac OS X). by Guido van Rossum · 22 years ago
  58. f4be427 Tim found that once test_longexp has run, test_sort takes very much by Guido van Rossum · 22 years ago
  59. 0a3d606 Only show the UI for selecting options if the ALT key was depressed while by Jack Jansen · 22 years ago
  60. 0dbab4c5 SF patch 588728 (Nathan Srebro). by Guido van Rossum · 22 years ago
  61. 7482458 Added new footnote about list.sort() stability. Repaired footnote about by Tim Peters · 22 years ago
  62. f47630f A blurb about the sort implementation. by Tim Peters · 22 years ago
  63. 2d8b765 New test for sorting sanity. Note that this will fail in earlier Pythons, by Tim Peters · 22 years ago
  64. a64dc24 Replaced samplesort with a stable, adaptive mergesort. by Tim Peters · 22 years ago
  65. 92f81f2 Checking in the doc file for "timsort". There's way too much here to by Tim Peters · 22 years ago
  66. 6be1475 Restore a full arglist to the socket wrapper, so it supports keyword by Tim Peters · 22 years ago
  67. 8c3fb87 For platforms (like Windows) that wrap _socket.socket: by Tim Peters · 22 years ago
  68. 108b791 Reverting this to rev 1.3. It's apparently broken everywhere at rev by Tim Peters · 22 years ago
  69. b995eb7 Enable test_socket again, if only to prevent mistakes like Jeremy by Guido van Rossum · 22 years ago
  70. cbd5b89 Repair testNtoH for large long arguments. by Jeremy Hylton · 22 years ago
  71. cce7e34 - Install into /Applications/Python in stead of into /Applications. by Jack Jansen · 22 years ago
  72. 40e2e51 Install into /Applications/Python in stead of into /Applications. by Jack Jansen · 22 years ago
  73. b7276cd Implemented starting Python in a terminal window. The implementation isn't by Jack Jansen · 22 years ago
  74. 33876f5 Patch: by Michael W. Hudson · 22 years ago
  75. b6a4505 Cray fixup as seen in bug #558153. by Michael W. Hudson · 22 years ago
  76. 543fb35 Replace DL_EXPORT with PyMODINIT_FUNC by Mark Hammond · 22 years ago
  77. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 22 years ago
  78. 1bc894b Shared libraries also work on GNU/Hurd. Suggested by Matthias Klose. by Martin v. Löwis · 22 years ago
  79. fb0e545 Get rid of the DEFS variable. The only thing this was used for was to by Guido van Rossum · 22 years ago
  80. 5b11bdd SF patch #581414: info reader bug by Fred Drake · 22 years ago
  81. 202a4b6 Repair fill-paragraph damage. by Michael W. Hudson · 22 years ago
  82. cfa1f52 Revert changes to use PyArg_Parse(), so any sequence will continue to work -- Spotted by Just van Rossum by Neal Norwitz · 22 years ago
  83. 37d5a15 Whitespace normalization. by Thomas Heller · 22 years ago
  84. 3e1c18a Fix SF 588452: debug build crashes on marshal.dumps([128] * 1000). by Thomas Heller · 22 years ago
  85. a625523 add description of LLTRACE. by Michael W. Hudson · 22 years ago
  86. 50584b4 Use PyArg_ParseTuple() instead of PyArg_Parse() which is deprecated by Neal Norwitz · 22 years ago
  87. 50d5d4f Fix docstring to be consistent with parameter name (prefix) by Neal Norwitz · 22 years ago
  88. 1169011 SF patch #584245, get python to link on OSF1 (Dec Unix) by Neal Norwitz · 22 years ago
  89. cee5ca0 SF patch #587889, fix memory leak of tp_doc by Neal Norwitz · 22 years ago
  90. 3bbb617 First stab at the launcher application. This will be run when the user by Jack Jansen · 22 years ago
  91. c0f1e77 Patch #553702: Cygwin make install patch by Jason Tishler · 22 years ago
  92. 56796f6 Fix for by Michael W. Hudson · 22 years ago
  93. 085358a New functions for extension writers on Windows: by Thomas Heller · 22 years ago
  94. b9e0764 Revert #571603 since it is ok to import codecs that are not subdirectories by Martin v. Löwis · 22 years ago
  95. a290527 Excise DL_IMPORT/EXPORT from object.h, and related files. This patch by Mark Hammond · 22 years ago
  96. f4ad4ce Recompiled the exe and updated bdist_wininst.py. by Thomas Heller · 22 years ago
  97. 52f1b76 Add posix.lchown() by Andrew M. Kuchling · 22 years ago
  98. ad9eba7 Add 'engine' back. IDLE used this, others might have copied it from there. by Guido van Rossum · 22 years ago
  99. 301b1cd Patch #586999: Fix multiline string in sendmail example. by Martin v. Löwis · 22 years ago
  100. 88fe4ff Fix the problem of not raising a TypeError exception when doing: by Neal Norwitz · 22 years ago