1. d464107 Fold some long lines. Delete blank initial line. by Guido van Rossum · 22 years ago
  2. e7fefbf Fix bugs: by Mark Hammond · 22 years ago
  3. b0aaec5 Convert more METH_OLDARGS & PyArg_Parse() by Neal Norwitz · 22 years ago
  4. 187ae56 Get rid of more PyArg_Parse & METH_OLDARGS. by Neal Norwitz · 22 years ago
  5. 155db9a SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() by Guido van Rossum · 22 years ago
  6. 103b548 Add a note warning against semicolons following PyObject_HEAD. Minor cleanups. by Fred Drake · 22 years ago
  7. 64e5aa9 Fix for a bug in the fix for SF bug 503031. This time the OP verified by Guido van Rossum · 22 years ago
  8. 45afd54 Add an item by Andrew M. Kuchling · 22 years ago
  9. aee113d Add an experimental mechanism to support extending the pprint formatting. by Fred Drake · 22 years ago
  10. 4993c51 Make test_commands work on more systems. This removes much of the dependency by Fred Drake · 22 years ago
  11. 4dfb7a8 Explain that os.spawn*() return the process handle on Windows. by Fred Drake · 22 years ago
  12. d764b0a There is no PyArg_ConvertTuple(); call it by the right name. by Fred Drake · 22 years ago
  13. d5a072f Fix up the documentation of the type codes to give both the C and Python by Fred Drake · 22 years ago
  14. 88955cb Change reference to execframes to naming. by Jeremy Hylton · 22 years ago
  15. e604875 Restore a minimal definition of execution frame, since other parts of by Jeremy Hylton · 22 years ago
  16. 1824b59 Update programmer's note on nested functions. by Jeremy Hylton · 22 years ago
  17. f3255c8 Reword explanation of global statement since an undeclared global is a by Jeremy Hylton · 22 years ago
  18. f0c1f1b Note the sole case in which the ban on "from ... import *" within a by Jeremy Hylton · 22 years ago
  19. 15b6897 Remove the following restriction: by Jeremy Hylton · 22 years ago
  20. d09ed68 Note that it is illegal to delete a cell variable. by Jeremy Hylton · 22 years ago
  21. 2225add Given lambda its own section, instead of burying it in boolean operators. by Jeremy Hylton · 22 years ago
  22. 53ed917 Update / simplify Identifiers section for nested scopes. by Jeremy Hylton · 22 years ago
  23. e7d5773 Update docs for nested scopes. by Jeremy Hylton · 22 years ago
  24. f54519d Update to push the docs to python.org instead of python.sf.net. by Fred Drake · 22 years ago
  25. 6169f09 Fixed errors in two comments. by Tim Peters · 22 years ago
  26. f4dd65d Copy section on generators from the 2.2 document with a bit of rewriting by Andrew M. Kuchling · 22 years ago
  27. 338e010 Restructured my pool-management overview in terms of the three by Tim Peters · 22 years ago
  28. 9da3efd Mention 2.2.1 in intro and in bug/patch counts by Andrew M. Kuchling · 22 years ago
  29. 05c09d0 Format strings (tuples,) appropriately by Neal Norwitz · 22 years ago
  30. 28bb572 Use attributes appropriately by Neal Norwitz · 22 years ago
  31. b1295da There is no TestError, use TestFailed appropriately by Neal Norwitz · 22 years ago
  32. 8392f36 Update documentation of code objects. by Jeremy Hylton · 22 years ago
  33. c9319b3 Minor adjustments. by Fred Drake · 22 years ago
  34. 26c49b6 Small fixes for description of function attributes. by Jeremy Hylton · 22 years ago
  35. 2f6ef4c Reindent. Break long lines. Move comments before the statements. by Martin v. Löwis · 22 years ago
  36. 4baedc1 Use the PyModule_Add*() APIs instead of manipulating the module dict directly. by Fred Drake · 22 years ago
  37. 9bb7432 Remove all but one use of the module dict. by Fred Drake · 22 years ago
  38. d63e504 Remove unused variable and call to PyModule_GetDict(). by Fred Drake · 22 years ago
  39. acee69f Switch to using METH_NOARGS where possible. by Fred Drake · 22 years ago
  40. 43c9d8a Remove UNLESS. by Martin v. Löwis · 22 years ago
  41. 7ccfadf New PYMALLOC_DEBUG function void _PyMalloc_DebugDumpStats(void). by Tim Peters · 22 years ago
  42. de14a30 We expect to skip the new test_mpz on Windows. by Tim Peters · 22 years ago
  43. f4e3484 Use the PyModule_*() API instead of manipulating the module dictionary directly. by Fred Drake · 22 years ago
  44. 7829335 Get rid of another use of PyArg_Parse() by Neal Norwitz · 22 years ago
  45. 02098fa Get rid of all METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 22 years ago
  46. 496563a Remove some now-obsolete generator future statements. by Tim Peters · 22 years ago
  47. 62f5a9d Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 22 years ago
  48. b955d6c Hopeful fix for SF bug 503031: urllib.py: open_http() host problem. by Guido van Rossum · 22 years ago
  49. dfd59e0 mpz_float() only takes one parameter now by Neal Norwitz · 22 years ago
  50. ff773eb Added a "run with commandline Python" flag. Works in MachoPython, should work by Jack Jansen · 22 years ago
  51. 767f835 Get rid of warnings due to changing to METH_NOARGS by Neal Norwitz · 22 years ago
  52. 93c1e23 Use METH_VARARGS rather than METH_OLDARGS implicitly (args are ignored) by Neal Norwitz · 22 years ago
  53. 28faa1b Convert METH_OLDARGS -> METH_NOARGS: remove args parameter by Neal Norwitz · 22 years ago
  54. bb2769f Revert use of METH_OLDARGS (use 0) to support 1.5.2 by Neal Norwitz · 22 years ago
  55. b82d34f Convert METH_OLDARGS -> METH_VARARGS: also PyArg_Parse -> PyArg_ParseTuple by Neal Norwitz · 22 years ago
  56. ba3a16c Remove METH_OLDARGS: by Neal Norwitz · 22 years ago
  57. 50905b5 Convert from using METH_OLDARGS to METH_NOARGS. These should be safe. by Neal Norwitz · 22 years ago
  58. 01b2694 Fix whitespace by Neal Norwitz · 22 years ago
  59. b049325 Use symbolic METH_VARARGS/METH_OLDARGS instead of 1/0 for ml_flags by Neal Norwitz · 22 years ago
  60. 031829d Use symbolic METH_VARARGS instead of 1 for ml_flags by Neal Norwitz · 22 years ago
  61. 93cf79f Use docstrings for exception classes by Neal Norwitz · 22 years ago
  62. f74e46c Derive exception classes from Exception by Neal Norwitz · 22 years ago
  63. 27a3530 Stop using string exceptions by Neal Norwitz · 22 years ago
  64. 57b17ad Add one more assert that indirectly interlocking conditions are consistent by Tim Peters · 22 years ago
  65. 4c5be0c Fixed an error in a new assert. by Tim Peters · 22 years ago
  66. b1da050 Fixed a typo in a new comment. by Tim Peters · 22 years ago
  67. 2c95c99 _PyMalloc_Free(): As was already done for _PyMalloc_Malloc, rearranged by Tim Peters · 22 years ago
  68. 1e16db6 Added a long-overdue comment block giving an overview of pool operations by Tim Peters · 22 years ago
  69. e7f776a Suite to talk to the OSX Terminal application. by Jack Jansen · 22 years ago
  70. ad5dcaf Got rid of obsolete way to get at various toolbox types. by Jack Jansen · 22 years ago
  71. 77afbc0 Add Mac/Lib/lib-scriptpackages to sys.path too. by Jack Jansen · 22 years ago
  72. 4092606 Modified to allow it to run in MachoPython in a reasonable way. It still by Jack Jansen · 22 years ago
  73. c2ce91a It's once again thought safe to call the pymalloc free/realloc with an by Tim Peters · 22 years ago
  74. 7b85b4a new_arena(): In error cases, reset the number of available pools to 0. by Tim Peters · 22 years ago
  75. 1d99af8 Changed the #-of-arenas counters to uints -- no need to be insane about by Tim Peters · 22 years ago
  76. 8deda70 Eliminate DONT_SHARE_SHORT_STRINGS. by Tim Peters · 22 years ago
  77. 522cf1f Patch #536908: Add missing #include guards/extern "C". by Martin v. Löwis · 22 years ago
  78. df4d137 Turns out the off_t macro isn't used anymore, so got rid of it. by Tim Peters · 22 years ago
  79. 3c83df2 Now that we're no longer linking arenas together, there's no need to by Tim Peters · 22 years ago
  80. 1230068 Retract the claim that this is always safe if PyMem_{Del, DEL, Free, FREE} by Tim Peters · 22 years ago
  81. d97a1c0 Lots of changes: by Tim Peters · 22 years ago
  82. 61ef790 Auxiliary files used by BuildApplet for MachoPython. by Jack Jansen · 22 years ago
  83. 8134976 Auxiliary files for building the IDE applet. Running the IDE through by Jack Jansen · 22 years ago
  84. 9aa8fd0 Handle .icns and .plist files for applets. by Jack Jansen · 22 years ago
  85. 96f9e08 Missed one version number. by Jack Jansen · 22 years ago
  86. fe5a538 Use the right types for a couple of fields of the type structure. by Fred Drake · 22 years ago
  87. 0ffd14c Started updating information about defining attributes on types. by Fred Drake · 22 years ago
  88. bdcb1c4 First stab at an icon for the IDE. by Jack Jansen · 22 years ago
  89. ca3d307 repair damage: canceling the "save options" dialog now works again. by Just van Rossum · 22 years ago
  90. 8bb61c8 repair damage: now works again as a CFM app. by Just van Rossum · 22 years ago
  91. 9a38947 Completely revamped newline handling. PyEdit is now newline-preserving by Jack Jansen · 22 years ago
  92. e0ba087 Allow file without filetype as long as they end in ".py". by Jack Jansen · 22 years ago
  93. b2e33fe Implemented buildtools for MachoPython .app bundles. The API is compatible by Jack Jansen · 22 years ago
  94. 32f782c Don't attempt to create a dummy fsspec if the user cancelled out, just by Jack Jansen · 22 years ago
  95. d21c9f4 Re-raise the Res.Error if the file doesn't exist. by Jack Jansen · 22 years ago
  96. 2cce33f Added -Wno-long-double by Jack Jansen · 22 years ago
  97. c5fa303 Changed visible name (in dock, menubar) of the interpreter to PythonW. by Jack Jansen · 22 years ago
  98. cc07ec1 Add missing typecast. by Neil Schemenauer · 22 years ago
  99. f4a4fb9 [Patch #536769] Add -Xcompiler flag for adding arguments and switches for by Andrew M. Kuchling · 22 years ago
  100. 1142de3 Patch #527027: Allow building python as shared library. by Martin v. Löwis · 22 years ago