1. d9ea39d Don't use true division where int division was intended. For that matter, by Tim Peters · 22 years ago
  2. b481286 Add a comment showing how one of the macros should be used. by Fred Drake · 22 years ago
  3. 0b19178 Adding the heap queue algorithm, per discussion in python-dev last week. by Guido van Rossum · 22 years ago
  4. ad09bbf Add heapq module docs to the dependency information. by Fred Drake · 22 years ago
  5. 4a57c33 Adding the heap queue algorithm, per discussion in python-dev last week. by Guido van Rossum · 22 years ago
  6. 9751216 Add docs for heapq.py. by Guido van Rossum · 22 years ago
  7. de994d9 indicate that 'b' is added to the mode flag if not given by Skip Montanaro · 22 years ago
  8. 71ffc5c add #include branch for compilation with Berkeley DB by Skip Montanaro · 22 years ago
  9. 404378f catch the situation where Berkeley DB is used to emulate dbm(3) library by Skip Montanaro · 22 years ago
  10. 13a5678 regression test for the whichdb module by Skip Montanaro · 22 years ago
  11. 37c3b27 Add Kevin O'Connor, author of the heapq code. by Guido van Rossum · 22 years ago
  12. 0a82438 Adding the heap queue algorithm, per discussion in python-dev last week. by Guido van Rossum · 22 years ago
  13. f443330 testGetServByName shouldn't check for getservbyname - the socket module by Skip Montanaro · 22 years ago
  14. 940e970 Also create BuildApplet. It's useful enough as a standalone application. by Jack Jansen · 22 years ago
  15. 3e6c80b Hmm, in some cases we don't seem to get our scriptname in argv[0]. by Jack Jansen · 22 years ago
  16. ba1c13d Final step in making applets first-class citizens: if the applet wants by Jack Jansen · 22 years ago
  17. a9454e2 Oops, the -psn stuff is in argv[1], of course. by Jack Jansen · 22 years ago
  18. 21ed16a Added one call to Py_Main(), for OSX framework builds only, that will get the by Jack Jansen · 22 years ago
  19. 94416e5 Got rid of a couple of OS9-isms. by Jack Jansen · 22 years ago
  20. 2eb4b18 - Slightly better error message in case of syntax errors in the script. by Jack Jansen · 22 years ago
  21. 90b8e4d Fix for by Michael W. Hudson · 22 years ago
  22. 6e1986b - Remove -psn-xxxx argument added by the Finder. by Jack Jansen · 22 years ago
  23. d5049e7 Replaced python.app target with osxapps (it builds more than by Jack Jansen · 22 years ago
  24. f4f6d48 Construct a sys.argv from the initial AppleEvent sent by the finder by Jack Jansen · 22 years ago
  25. d05e181 Slightly better error message in case of missing resources. by Jack Jansen · 22 years ago
  26. d5f4359 New test %sort. This takes a sorted list, picks 1% of the list positions by Tim Peters · 22 years ago
  27. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  28. d3c884d modify testGetServByName so it tries a few different protocols. In this day by Skip Montanaro · 22 years ago
  29. ea0c382 - Get _environ through the NSEnviron call in a MacOSX framework. This allows by Jack Jansen · 22 years ago
  30. be3e1f7 Python.app is now a hidden application, deep in the framework. It will by Jack Jansen · 22 years ago
  31. 2fc993d Python.app no longer advertises that it can handle .py and .pyc files, by Jack Jansen · 22 years ago
  32. b54c27c Fix for SF bug 570678 (can't flush read-only file on Mac OS X). by Guido van Rossum · 22 years ago
  33. f4be427 Tim found that once test_longexp has run, test_sort takes very much by Guido van Rossum · 22 years ago
  34. 0a3d606 Only show the UI for selecting options if the ALT key was depressed while by Jack Jansen · 22 years ago
  35. 0dbab4c5 SF patch 588728 (Nathan Srebro). by Guido van Rossum · 22 years ago
  36. 7482458 Added new footnote about list.sort() stability. Repaired footnote about by Tim Peters · 22 years ago
  37. f47630f A blurb about the sort implementation. by Tim Peters · 22 years ago
  38. 2d8b765 New test for sorting sanity. Note that this will fail in earlier Pythons, by Tim Peters · 22 years ago
  39. a64dc24 Replaced samplesort with a stable, adaptive mergesort. by Tim Peters · 22 years ago
  40. 92f81f2 Checking in the doc file for "timsort". There's way too much here to by Tim Peters · 22 years ago
  41. 6be1475 Restore a full arglist to the socket wrapper, so it supports keyword by Tim Peters · 22 years ago
  42. 8c3fb87 For platforms (like Windows) that wrap _socket.socket: by Tim Peters · 22 years ago
  43. 108b791 Reverting this to rev 1.3. It's apparently broken everywhere at rev by Tim Peters · 22 years ago
  44. b995eb7 Enable test_socket again, if only to prevent mistakes like Jeremy by Guido van Rossum · 22 years ago
  45. cbd5b89 Repair testNtoH for large long arguments. by Jeremy Hylton · 22 years ago
  46. cce7e34 - Install into /Applications/Python in stead of into /Applications. by Jack Jansen · 22 years ago
  47. 40e2e51 Install into /Applications/Python in stead of into /Applications. by Jack Jansen · 22 years ago
  48. b7276cd Implemented starting Python in a terminal window. The implementation isn't by Jack Jansen · 22 years ago
  49. 33876f5 Patch: by Michael W. Hudson · 22 years ago
  50. b6a4505 Cray fixup as seen in bug #558153. by Michael W. Hudson · 22 years ago
  51. 543fb35 Replace DL_EXPORT with PyMODINIT_FUNC by Mark Hammond · 22 years ago
  52. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 22 years ago
  53. 1bc894b Shared libraries also work on GNU/Hurd. Suggested by Matthias Klose. by Martin v. Löwis · 22 years ago
  54. fb0e545 Get rid of the DEFS variable. The only thing this was used for was to by Guido van Rossum · 22 years ago
  55. 5b11bdd SF patch #581414: info reader bug by Fred Drake · 22 years ago
  56. 202a4b6 Repair fill-paragraph damage. by Michael W. Hudson · 22 years ago
  57. 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
  58. 37d5a15 Whitespace normalization. by Thomas Heller · 22 years ago
  59. 3e1c18a Fix SF 588452: debug build crashes on marshal.dumps([128] * 1000). by Thomas Heller · 22 years ago
  60. a625523 add description of LLTRACE. by Michael W. Hudson · 22 years ago
  61. 50584b4 Use PyArg_ParseTuple() instead of PyArg_Parse() which is deprecated by Neal Norwitz · 22 years ago
  62. 50d5d4f Fix docstring to be consistent with parameter name (prefix) by Neal Norwitz · 22 years ago
  63. 1169011 SF patch #584245, get python to link on OSF1 (Dec Unix) by Neal Norwitz · 22 years ago
  64. cee5ca0 SF patch #587889, fix memory leak of tp_doc by Neal Norwitz · 22 years ago
  65. 3bbb617 First stab at the launcher application. This will be run when the user by Jack Jansen · 22 years ago
  66. c0f1e77 Patch #553702: Cygwin make install patch by Jason Tishler · 22 years ago
  67. 56796f6 Fix for by Michael W. Hudson · 22 years ago
  68. 085358a New functions for extension writers on Windows: by Thomas Heller · 22 years ago
  69. b9e0764 Revert #571603 since it is ok to import codecs that are not subdirectories by Martin v. Löwis · 22 years ago
  70. a290527 Excise DL_IMPORT/EXPORT from object.h, and related files. This patch by Mark Hammond · 22 years ago
  71. f4ad4ce Recompiled the exe and updated bdist_wininst.py. by Thomas Heller · 22 years ago
  72. 52f1b76 Add posix.lchown() by Andrew M. Kuchling · 22 years ago
  73. ad9eba7 Add 'engine' back. IDLE used this, others might have copied it from there. by Guido van Rossum · 22 years ago
  74. 301b1cd Patch #586999: Fix multiline string in sendmail example. by Martin v. Löwis · 22 years ago
  75. 88fe4ff Fix the problem of not raising a TypeError exception when doing: by Neal Norwitz · 22 years ago
  76. 673c0a2 Patch #574867: Correct list.extend docstring. by Martin v. Löwis · 22 years ago
  77. 0cec0ff Patch #573770: Implement lchown. by Martin v. Löwis · 22 years ago
  78. ddc6f47 Pass length of result structure into setipaddr. Fixes bug #565747. by Martin v. Löwis · 22 years ago
  79. 2026584 SF patch #577031, remove PyArg_NoArgs() since it's deprecated by Neal Norwitz · 22 years ago
  80. 7beeed5 SF patch #577031, remove PyArg_Parse() since it's deprecated by Neal Norwitz · 22 years ago
  81. 77c72bb SF patch #577031, remove PyArg_Parse() since it's deprecated by Neal Norwitz · 22 years ago
  82. 4ddfd50 Fix SF bug 587012, doc mentions inexistent builtin unistr by Neal Norwitz · 22 years ago
  83. ce233b4 Fix last checkin, can't use " inside a string by Neal Norwitz · 22 years ago
  84. fc4c24c Patch #571603: Refer to encodings package explicitly. by Martin v. Löwis · 22 years ago
  85. e567114 Patch #543498: Use License: field instead of Copyright:. by Martin v. Löwis · 22 years ago
  86. 611a710 Patch #552812: Better description in "python -h" for -u. by Martin v. Löwis · 22 years ago
  87. 75d2d94 Patch #554716: Use __va_copy where available. by Martin v. Löwis · 22 years ago
  88. 09c35f7 Patch #575827: allow threads inside SSL creation. by Martin v. Löwis · 22 years ago
  89. 6c611fa Patch #581705: Catch OSError, termios.error in spawn. 2.2 bugfix candidate. by Martin v. Löwis · 22 years ago
  90. d694c1f Reset the Python execution server environment to its initial value prior by Kurt B. Kaiser · 22 years ago
  91. 139bccb remove redundant import by Piers Lauder · 22 years ago
  92. 8b6bb4f remove redundant code by Piers Lauder · 22 years ago
  93. 385a77a remove o/s dependancy from test by Piers Lauder · 22 years ago
  94. 35b37a5 tighten up the unicode object's docstring a tad by Skip Montanaro · 22 years ago
  95. f03c692 Use os.environ.get() in stead of os.getenv() (which is platform-dependent). by Jack Jansen · 22 years ago
  96. aeb6a60 Reorganized so the test is skipped if os.popen() doesn't exist (in stead of failing). by Jack Jansen · 22 years ago
  97. c7554e2 Added a __contains__ method. by Jack Jansen · 22 years ago
  98. b417936 Reverse the RPC socket connection: Python execution server connects to by Kurt B. Kaiser · 22 years ago
  99. db40afa Small clarifications when referring to the sys.exc_* variables so that by Fred Drake · 22 years ago
  100. fd83374 Remove duplicate checks of the Node.allnodes variable. by Fred Drake · 22 years ago