1. c92cdf7 The sys.platform identifier for Windows is just 'win32' (for all varieties). by Ka-Ping Yee · 23 years ago
  2. 7dcf84f Search /tmp before /var/tmp and /usr/tmp -- this seems preferred. by Guido van Rossum · 23 years ago
  3. 4eb0c00 Make getsourcefile() succeed even if the filename doesn't end in '.py' -- by Ka-Ping Yee · 23 years ago
  4. 9054344 Replace literal '@test' with TESTFN. by Ka-Ping Yee · 23 years ago
  5. ca956e2 When catching errors from os.rmdir(), test for os.error, not IOError! by Guido van Rossum · 23 years ago
  6. fe010e4 Add a new item to the Python 2.1 start menu: "Module Docs". by Guido van Rossum · 23 years ago
  7. b616e11 Believe it or not, but "more" on Windows requires "more <file" rather by Guido van Rossum · 23 years ago
  8. 207fda6 Refactored the warning-issuing code more. by Guido van Rossum · 23 years ago
  9. 677898a Thanks to Steven Majewski, finally putting MacOS X imports to bed for 2.1b1. by Tim Peters · 23 years ago
  10. fd85a4e Typo repair. by Tim Peters · 23 years ago
  11. 03bd26d Added William Tanksley. by Tim Peters · 23 years ago
  12. d74bc43 Make names in __future__.py bind to class instances instead of 2-tuples. by Tim Peters · 23 years ago
  13. 239432a Clean up the handling of getsourcefile/getabsfile. by Ka-Ping Yee · 23 years ago
  14. c113c24 Clarify the purpose of getsourcefile(). by Ka-Ping Yee · 23 years ago
  15. 0a8c29b Clarify synopsis line a bit. by Ka-Ping Yee · 23 years ago
  16. fc35de4 test_global was broken by some recent checkin. Repairing. by Tim Peters · 23 years ago
  17. 7a25765 When seeking the module for an object, compare absolute (not relative) paths. by Ka-Ping Yee · 23 years ago
  18. a2fe103 Use imp.get_suffixes to determine a module name in modulename(file). by Ka-Ping Yee · 23 years ago
  19. 7fc49a4 - Numeric now lives in Lib:site-python. by Jack Jansen · 23 years ago
  20. 807e701 - Numeric now lives in Lib:site-python. by Jack Jansen · 23 years ago
  21. b34d0ed Removed some stuff that shouldn't be in the dev distribution. by Jack Jansen · 23 years ago
  22. 1b45c73 Removed Extensions:Numeric from sys.path. It now lives in Lib:site-python. by Jack Jansen · 23 years ago
  23. dbd0c3a Silly typo which caused the stack browser to crash. by Jack Jansen · 23 years ago
  24. a647807 Also build Imaging for Carbon. by Jack Jansen · 23 years ago
  25. 9f324e9 Useful future statement support for the interactive interpreter by Jeremy Hylton · 23 years ago
  26. 0f6b383 Put current date into POT-Creation-Date; leave PO-Revision-Date for by Martin v. Löwis · 23 years ago
  27. 2fe289a Thank Jason Tishler and Steven Majewski for their help in the Cygwin and by Tim Peters · 23 years ago
  28. 9ef7fa8 Solaris defines VSWTCH instead of VSWTC; carefully make sure both are by Fred Drake · 23 years ago
  29. bb66a20 Wrap some long lines, use only C89 /* */ comments, and add spaces around by Fred Drake · 23 years ago
  30. 4a2261a Add Samuele Pedroni by Guido van Rossum · 23 years ago
  31. 9aa643c Test interaction of global and nested scopes -- thanks to Samuele Pedroni. by Guido van Rossum · 23 years ago
  32. 7606e4d Added entry for urllib2 documentation. by Fred Drake · 23 years ago
  33. d977e35 Also accept .so as an extension for module files. by Ka-Ping Yee · 23 years ago
  34. 8c01158 Use larger chunks for the HTML version of the Distutils documentation. by Fred Drake · 23 years ago
  35. a9a83e9 Comment out section titles for sections that have not been written yet; by Fred Drake · 23 years ago
  36. a09262e Comment out section titles for sections that have not been written yet; by Fred Drake · 23 years ago
  37. f89ad5e Document configuration flags to compile for large file support on by Guido van Rossum · 23 years ago
  38. 4f53da0 Two improvements to large file support: by Guido van Rossum · 23 years ago
  39. d1e87a8 More MacOSX fiddling. As noted in a comment, I believe all variations by Tim Peters · 23 years ago
  40. 4f64c13 Better __credits__. by Ka-Ping Yee · 23 years ago
  41. 1b6e6c0 Here we go again, another round of version bumping... by Guido van Rossum · 23 years ago
  42. 244c593 Add __author__ and __credits__ variables. by Ka-Ping Yee · 23 years ago
  43. 8b58b84 Add __author__ variable. by Ka-Ping Yee · 23 years ago
  44. 66efbc7 Docstring improvements. by Ka-Ping Yee · 23 years ago
  45. dbe6ebb More fiddling w/ the new-fangled Mac import code. by Tim Peters · 23 years ago
  46. 8a18e99 Checking in patch 404826 -- urllib2 enhancements and documentations. by Moshe Zadka · 23 years ago
  47. 2510831 Whitespace normalization. by Tim Peters · 23 years ago
  48. c63d3e9 Suppress a compiler warning under OpenVMS; time_t is unsigned on (at least) by Fred Drake · 23 years ago
  49. 7889107 Fix core dump in example from Samuele Pedroni: by Jeremy Hylton · 23 years ago
  50. a52e8fe Visit the closure during traversal and XDECREF it on during deallocation. by Jeremy Hylton · 23 years ago
  51. baee0d4 Bump the release number to 2.1b1. by Fred Drake · 23 years ago
  52. 40fc160 final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be by Skip Montanaro · 23 years ago
  53. 58eadba move import into function to avoid having to add an __all__ list... by Skip Montanaro · 23 years ago
  54. 59ade08 Add getlineno() routine to account for LINENO optimization. by Ka-Ping Yee · 23 years ago
  55. abb379e Revised version of Jason Tishler's patch to make this compile on Cygwin, by Fred Drake · 23 years ago
  56. 5c01534 Add tests for the .copy() methods of both weak dictionary classes. by Fred Drake · 23 years ago
  57. 9d2c85d Change WeakDictionary to WeakValueDictionary in a couple more places. by Fred Drake · 23 years ago
  58. 5f850ab Prepare Windows for 2.1 beta 1: installer dialogs and bump "build number". by Tim Peters · 23 years ago
  59. 1eff796 Added blurbs about difflib, doctest and Windows import (PEP 235). by Tim Peters · 23 years ago
  60. 5819aa8 Remove extra close curly in code #ifdef'ed out on my box. by Tim Peters · 23 years ago
  61. 430f5d4 In Steven's apparent absence, check in *something* with a non-zero chance by Tim Peters · 23 years ago
  62. 694e181 Fix markup nit pointed out by FLD by Andrew M. Kuchling · 23 years ago
  63. 5125773 Don't add global names to st->st_global if we're already iterating by Jeremy Hylton · 23 years ago
  64. cd81ea1 Use by Guido van Rossum · 23 years ago
  65. 895e892 Call main routine in pydoc module (pydoc.cli). by Ka-Ping Yee · 23 years ago
  66. 1d38463 Normalize case of paths in sys.path to avoid duplicates on Windows. by Ka-Ping Yee · 23 years ago
  67. 2922ea8 Add test case for global stmt at module level. by Jeremy Hylton · 23 years ago
  68. 3dd5ad3 undo introduction of st_global_star by Jeremy Hylton · 23 years ago
  69. 1874c8f Document PyErr_WarnExplicit(). by Guido van Rossum · 23 years ago
  70. c176132 Warn about global statement at the module level. by Jeremy Hylton · 23 years ago
  71. 56ba72a Document warn_explicit(). by Guido van Rossum · 23 years ago
  72. f1d7b41 Disable GetWindowSpareFlag and GetWindowGoAwayBox on carbon. by Jack Jansen · 23 years ago
  73. 42efed0 update output to reflect exception that is now raised by Jeremy Hylton · 23 years ago
  74. 0b7c4f2 Put PPC distributions back in, rearranged packages and use VISE variable magic to determine which ConfigurePythonXXX to run. by Jack Jansen · 23 years ago
  75. 99858b5 add DEF_BOUND by Jeremy Hylton · 23 years ago
  76. 7840a9c Add entry for the inspect module. by Fred Drake · 23 years ago
  77. 6dbd382 Clean up some of the markup for consistency, wrap some long lines. by Fred Drake · 23 years ago
  78. bca60c0 Fix some rules broken by typos, others by the flattening of the makefile. by Fred Drake · 23 years ago
  79. 4419ac1 Add warning/error handlin for problematic nested scopes cases as by Jeremy Hylton · 23 years ago
  80. 150a664 Fix filter for SyntaxErrors by Jeremy Hylton · 23 years ago
  81. 3da989c Fix for bug #405007: prefix subdir to scripts in order to build in by Andrew M. Kuchling · 23 years ago
  82. 8bad993 Add description of PEP235 by Andrew M. Kuchling · 23 years ago
  83. 3756fa3 Move a comment around to where it belongs (the code had alrady been moved). by Guido van Rossum · 23 years ago
  84. 74d18ed Cover pydoc by Andrew M. Kuchling · 23 years ago
  85. bf14014 Document the object allocator Minor sentence change by Andrew M. Kuchling · 23 years ago
  86. ee34ac1 Let's have some sanity. Introduce a helper to issue a symbol table warning. by Guido van Rossum · 23 years ago
  87. 58177b9 added description of NL token by Skip Montanaro · 23 years ago
  88. 0bba7f8 Use the new PyErr_WarnExplicit() API to issue better warnings for by Guido van Rossum · 23 years ago
  89. 9da7f3b SyntaxError__init__(): Be a little more robust when picking apart the by Fred Drake · 23 years ago
  90. 9c98a42 Move some constant initialization from FTP.__init__() and FTP.connect() by Fred Drake · 23 years ago
  91. 2fd4565 Add PyErr_WarnExplicit(), which calls warnings.warn_explicit(), with by Guido van Rossum · 23 years ago
  92. 1bcb7e9 Add declaration for PyErr_WarnExplicit(). by Guido van Rossum · 23 years ago
  93. 9e26318 Add a new API: by Guido van Rossum · 23 years ago
  94. d6a1d79 Mention pydoc by Andrew M. Kuchling · 23 years ago
  95. 3a95850 Leave #! lines featuring /usr/bin/env alone by Andrew M. Kuchling · 23 years ago
  96. b797f1f Now that Jeremy is asking about this code, it looks really bogus to me, by Fred Drake · 23 years ago
  97. aece427 Install the pydoc script by Andrew M. Kuchling · 23 years ago
  98. b68ef50 Add script form of pydoc so that it's present in beta1. Currently by Andrew M. Kuchling · 23 years ago
  99. b69c758 Fix for bug #404875: fix typo in setup.py by Andrew M. Kuchling · 23 years ago
  100. 6335773 Placate tabnanny by Andrew M. Kuchling · 23 years ago