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