1. 2225add Given lambda its own section, instead of burying it in boolean operators. by Jeremy Hylton · 22 years ago
  2. 53ed917 Update / simplify Identifiers section for nested scopes. by Jeremy Hylton · 22 years ago
  3. e7d5773 Update docs for nested scopes. by Jeremy Hylton · 22 years ago
  4. f54519d Update to push the docs to python.org instead of python.sf.net. by Fred Drake · 22 years ago
  5. 6169f09 Fixed errors in two comments. by Tim Peters · 22 years ago
  6. f4dd65d Copy section on generators from the 2.2 document with a bit of rewriting by Andrew M. Kuchling · 22 years ago
  7. 338e010 Restructured my pool-management overview in terms of the three by Tim Peters · 22 years ago
  8. 9da3efd Mention 2.2.1 in intro and in bug/patch counts by Andrew M. Kuchling · 22 years ago
  9. 05c09d0 Format strings (tuples,) appropriately by Neal Norwitz · 22 years ago
  10. 28bb572 Use attributes appropriately by Neal Norwitz · 22 years ago
  11. b1295da There is no TestError, use TestFailed appropriately by Neal Norwitz · 22 years ago
  12. 8392f36 Update documentation of code objects. by Jeremy Hylton · 22 years ago
  13. c9319b3 Minor adjustments. by Fred Drake · 22 years ago
  14. 26c49b6 Small fixes for description of function attributes. by Jeremy Hylton · 22 years ago
  15. 2f6ef4c Reindent. Break long lines. Move comments before the statements. by Martin v. Löwis · 22 years ago
  16. 4baedc1 Use the PyModule_Add*() APIs instead of manipulating the module dict directly. by Fred Drake · 22 years ago
  17. 9bb7432 Remove all but one use of the module dict. by Fred Drake · 22 years ago
  18. d63e504 Remove unused variable and call to PyModule_GetDict(). by Fred Drake · 22 years ago
  19. acee69f Switch to using METH_NOARGS where possible. by Fred Drake · 22 years ago
  20. 43c9d8a Remove UNLESS. by Martin v. Löwis · 22 years ago
  21. 7ccfadf New PYMALLOC_DEBUG function void _PyMalloc_DebugDumpStats(void). by Tim Peters · 22 years ago
  22. de14a30 We expect to skip the new test_mpz on Windows. by Tim Peters · 22 years ago
  23. f4e3484 Use the PyModule_*() API instead of manipulating the module dictionary directly. by Fred Drake · 22 years ago
  24. 7829335 Get rid of another use of PyArg_Parse() by Neal Norwitz · 22 years ago
  25. 02098fa Get rid of all METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 22 years ago
  26. 496563a Remove some now-obsolete generator future statements. by Tim Peters · 22 years ago
  27. 62f5a9d Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 22 years ago
  28. b955d6c Hopeful fix for SF bug 503031: urllib.py: open_http() host problem. by Guido van Rossum · 22 years ago
  29. dfd59e0 mpz_float() only takes one parameter now by Neal Norwitz · 22 years ago
  30. ff773eb Added a "run with commandline Python" flag. Works in MachoPython, should work by Jack Jansen · 22 years ago
  31. 767f835 Get rid of warnings due to changing to METH_NOARGS by Neal Norwitz · 22 years ago
  32. 93c1e23 Use METH_VARARGS rather than METH_OLDARGS implicitly (args are ignored) by Neal Norwitz · 22 years ago
  33. 28faa1b Convert METH_OLDARGS -> METH_NOARGS: remove args parameter by Neal Norwitz · 22 years ago
  34. bb2769f Revert use of METH_OLDARGS (use 0) to support 1.5.2 by Neal Norwitz · 22 years ago
  35. b82d34f Convert METH_OLDARGS -> METH_VARARGS: also PyArg_Parse -> PyArg_ParseTuple by Neal Norwitz · 22 years ago
  36. ba3a16c Remove METH_OLDARGS: by Neal Norwitz · 22 years ago
  37. 50905b5 Convert from using METH_OLDARGS to METH_NOARGS. These should be safe. by Neal Norwitz · 22 years ago
  38. 01b2694 Fix whitespace by Neal Norwitz · 22 years ago
  39. b049325 Use symbolic METH_VARARGS/METH_OLDARGS instead of 1/0 for ml_flags by Neal Norwitz · 22 years ago
  40. 031829d Use symbolic METH_VARARGS instead of 1 for ml_flags by Neal Norwitz · 22 years ago
  41. 93cf79f Use docstrings for exception classes by Neal Norwitz · 22 years ago
  42. f74e46c Derive exception classes from Exception by Neal Norwitz · 22 years ago
  43. 27a3530 Stop using string exceptions by Neal Norwitz · 22 years ago
  44. 57b17ad Add one more assert that indirectly interlocking conditions are consistent by Tim Peters · 22 years ago
  45. 4c5be0c Fixed an error in a new assert. by Tim Peters · 22 years ago
  46. b1da050 Fixed a typo in a new comment. by Tim Peters · 22 years ago
  47. 2c95c99 _PyMalloc_Free(): As was already done for _PyMalloc_Malloc, rearranged by Tim Peters · 22 years ago
  48. 1e16db6 Added a long-overdue comment block giving an overview of pool operations by Tim Peters · 22 years ago
  49. e7f776a Suite to talk to the OSX Terminal application. by Jack Jansen · 22 years ago
  50. ad5dcaf Got rid of obsolete way to get at various toolbox types. by Jack Jansen · 22 years ago
  51. 77afbc0 Add Mac/Lib/lib-scriptpackages to sys.path too. by Jack Jansen · 22 years ago
  52. 4092606 Modified to allow it to run in MachoPython in a reasonable way. It still by Jack Jansen · 22 years ago
  53. c2ce91a It's once again thought safe to call the pymalloc free/realloc with an by Tim Peters · 22 years ago
  54. 7b85b4a new_arena(): In error cases, reset the number of available pools to 0. by Tim Peters · 22 years ago
  55. 1d99af8 Changed the #-of-arenas counters to uints -- no need to be insane about by Tim Peters · 22 years ago
  56. 8deda70 Eliminate DONT_SHARE_SHORT_STRINGS. by Tim Peters · 22 years ago
  57. 522cf1f Patch #536908: Add missing #include guards/extern "C". by Martin v. Löwis · 22 years ago
  58. df4d137 Turns out the off_t macro isn't used anymore, so got rid of it. by Tim Peters · 22 years ago
  59. 3c83df2 Now that we're no longer linking arenas together, there's no need to by Tim Peters · 22 years ago
  60. 1230068 Retract the claim that this is always safe if PyMem_{Del, DEL, Free, FREE} by Tim Peters · 22 years ago
  61. d97a1c0 Lots of changes: by Tim Peters · 22 years ago
  62. 61ef790 Auxiliary files used by BuildApplet for MachoPython. by Jack Jansen · 22 years ago
  63. 8134976 Auxiliary files for building the IDE applet. Running the IDE through by Jack Jansen · 22 years ago
  64. 9aa8fd0 Handle .icns and .plist files for applets. by Jack Jansen · 22 years ago
  65. 96f9e08 Missed one version number. by Jack Jansen · 22 years ago
  66. fe5a538 Use the right types for a couple of fields of the type structure. by Fred Drake · 22 years ago
  67. 0ffd14c Started updating information about defining attributes on types. by Fred Drake · 22 years ago
  68. bdcb1c4 First stab at an icon for the IDE. by Jack Jansen · 22 years ago
  69. ca3d307 repair damage: canceling the "save options" dialog now works again. by Just van Rossum · 22 years ago
  70. 8bb61c8 repair damage: now works again as a CFM app. by Just van Rossum · 22 years ago
  71. 9a38947 Completely revamped newline handling. PyEdit is now newline-preserving by Jack Jansen · 22 years ago
  72. e0ba087 Allow file without filetype as long as they end in ".py". by Jack Jansen · 22 years ago
  73. b2e33fe Implemented buildtools for MachoPython .app bundles. The API is compatible by Jack Jansen · 22 years ago
  74. 32f782c Don't attempt to create a dummy fsspec if the user cancelled out, just by Jack Jansen · 22 years ago
  75. d21c9f4 Re-raise the Res.Error if the file doesn't exist. by Jack Jansen · 22 years ago
  76. 2cce33f Added -Wno-long-double by Jack Jansen · 22 years ago
  77. c5fa303 Changed visible name (in dock, menubar) of the interpreter to PythonW. by Jack Jansen · 22 years ago
  78. cc07ec1 Add missing typecast. by Neil Schemenauer · 22 years ago
  79. f4a4fb9 [Patch #536769] Add -Xcompiler flag for adding arguments and switches for by Andrew M. Kuchling · 22 years ago
  80. 1142de3 Patch #527027: Allow building python as shared library. by Martin v. Löwis · 22 years ago
  81. eddd68d As part of fixing bug #536241, add a test case for string.zfill() with Unicode by Andrew M. Kuchling · 22 years ago
  82. 102d120 [Bug #536241] string.zfill() produces mangled output for a Unicode string. by Andrew M. Kuchling · 22 years ago
  83. c6c9c4a Add two tests for string.zfill by Andrew M. Kuchling · 22 years ago
  84. 3cef721 Allow .pyc files as applets as well as .py files. .py files have by Jack Jansen · 22 years ago
  85. 5053b70 If the file has no resource fork first check to see whether it's a by Jack Jansen · 22 years ago
  86. 695b33b Removed debug. by Jack Jansen · 22 years ago
  87. 0035fb2 In MachoPython print "Pythonw" in banner to distinguish from command-line by Jack Jansen · 22 years ago
  88. 0cd0e65 Added target "installunixprograms" which installs python and pythonw in by Jack Jansen · 22 years ago
  89. ab10ce6 Shell script that invokes Python.app from the command line. Called pythonw by Jack Jansen · 22 years ago
  90. 1f7df35 Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols. by Tim Peters · 22 years ago
  91. 8358405 Call PyObject_GC_UnTrack before putting an object on the list of trash. by Neil Schemenauer · 22 years ago
  92. f589c05 If the GC is enabled then don't use the ob_type pointer to create a list by Neil Schemenauer · 22 years ago
  93. b883310 Make _PyObject_GC_UnTrack do nothing if WITH_CYCLE_GC is not defined. by Neil Schemenauer · 22 years ago
  94. 95b62a6 News for SF #535905. by Guido van Rossum · 22 years ago
  95. b1af637 Mark a couple of types that had not been marked. by Fred Drake · 22 years ago
  96. 0f9a34d Added comments for more entries of the type structure in the example by Fred Drake · 22 years ago
  97. 2ab0a10 The new files included by \verbatiminput in newtypes.tex. by Fred Drake · 22 years ago
  98. 81b750d Move some of the longer example code to external fragments, and by Fred Drake · 22 years ago
  99. b4c17c8 Fix getcomments() so that it doesn't fail with TypeErrors. by Jeremy Hylton · 22 years ago
  100. e9fba91 Added index entries. by Fred Drake · 22 years ago