1. 727ba7c Issue #28637: No longer use re in site.py. by Serhiy Storchaka · 8 years ago
  2. c6ef503 Issue #28323: Remove vestigal MacOS 9 checks from exit() and quit(). by Ned Deily · 8 years ago
  3. 313523c Issue #28192: Don't import readline in isolated mode by Steve Dower · 8 years ago
  4. 4db86bc Changes pyvenv.cfg trick into an actual sys.path file. by Steve Dower · 8 years ago
  5. f5aba58 Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec lookup by Steve Dower · 8 years ago
  6. 0b7d84d Issue #27171: Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  7. e26da7c Issue #27171: Fix typos in documentation, comments, and test function names by Martin Panter · 8 years ago
  8. 5f0507d Issue #26587: Allow .pth files to specify file paths as well as directories. by Brett Cannon · 8 years ago
  9. 0a85c69 Revert back to 3.6.0, buildbots do not want chocolate for 04-01 by Ned Deily · 8 years ago
  10. 49f324f Python 8: no pep8, no chocolate! by Victor Stinner · 8 years ago
  11. 885bdc4 Issue #25985: sys.version_info is now used instead of sys.version by Serhiy Storchaka · 8 years ago
  12. e3560a7 site: error on sitecustomize import error by Victor Stinner · 8 years ago
  13. 2934fd6 Closes #25185: merged fix from 3.4. by Vinay Sajip · 9 years ago
  14. f223c53 Closes #25185: Use UTF-8 encoding when reading pyvenv.cfg. by Vinay Sajip · 9 years ago
  15. 2d37cb2 Fixes sys.path for applocal environments. by Steve Dower · 9 years ago
  16. 32439d6 Issue #23911: Move path-based bootstrap code to a separate frozen module. by Eric Snow · 9 years ago
  17. ad9f99e merge 3.4 by Benjamin Peterson · 9 years ago
  18. d40f136 https goodness by Benjamin Peterson · 9 years ago
  19. 9e82b17 Issue #21711: support for "site-python" directories has now been removed from the site module (it was deprecated in 3.4). by Antoine Pitrou · 10 years ago
  20. 5f8784b Issue #21572: Change license command to fallback to generic license URL. by Ned Deily · 10 years ago
  21. c00d39e Issue #16047: Fix module exception list and __file__ handling in freeze. by Martin v. Löwis · 10 years ago
  22. 4d91490 Issue #20411: Use readline.get_current_history_length to check for the presence of a history, rather than get_history_item, which assumes a history is present. by Jason R. Coombs · 10 years ago
  23. 3b2f0f0 Issue #19375: The site module adding a "site-python" directory to sys.path, if it exists, is now deprecated. by Antoine Pitrou · 11 years ago
  24. bfc3a9a Issue #19205 fix 406529adf156 I forgot to hit save. by Christian Heimes · 11 years ago
  25. 8c9cd5a Issue #19205: Don't import the 're' module in site and sysconfig module to by Christian Heimes · 11 years ago
  26. fd4722c Issue #9548: Add a minimal "_bootlocale" module that is imported by the _io module instead of the full locale module. by Antoine Pitrou · 11 years ago
  27. 5d23e6d Issue #5845: In site.py, only load readline history from ~/.python_history if no history has been read already. This avoids double writes to the history file at shutdown. by Antoine Pitrou · 11 years ago
  28. 692ee9e #18206: Re-fix license URL. by R David Murray · 11 years ago
  29. 4a04301 #18852: Handle readline.__doc__ being None in site.py readline activation. by R David Murray · 11 years ago
  30. 853395b Issue #18621: Prevent the site module's patched builtins from keeping too many references alive for too long. by Antoine Pitrou · 11 years ago
  31. f93c7b8 Remove Lib/site.py hack to unregister patched builtins. by Antoine Pitrou · 11 years ago
  32. dcedaf6 Issue #18214: Improve finalization of Python modules to avoid setting their globals to None, in most cases. by Antoine Pitrou · 11 years ago
  33. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  34. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  35. 9d35133 Issue #5845: avoid an exception at startup on OS X if no .editrc file exists. by Mark Dickinson · 11 years ago
  36. 1a6cb30 Issue #5845: Enable tab-completion in the interactive interpreter by default, thanks to a new sys.__interactivehook__. by Antoine Pitrou · 11 years ago
  37. 2581bdb Issue #16804: Fix 'python -S -m site' failure. by Meador Inge · 11 years ago
  38. 9a7a811 Issue #16804: Fix 'python -S -m site' failure. by Meador Inge · 11 years ago
  39. 663a390 #17585: merge with 3.3. by Roger Serwy · 11 years ago
  40. 1eafd10 #17585: Fixed IDLE regression. Now closes when using exit() or quit(). by Roger Serwy · 11 years ago
  41. 2f50aaf modernize some modules' code by using with statement around open() by Giampaolo Rodola' · 11 years ago
  42. 13252b8 Issue #16972: Have site.addpackage() consider known paths even when by Brett Cannon · 11 years ago
  43. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 11 years ago
  44. ad28c7f Issue #16706: get rid of os.error by Andrew Svetlov · 11 years ago
  45. 70adf6f Closes #16519: Merged fix from 3.3. by Vinay Sajip · 12 years ago
  46. 27e4b60 Issue #16519: Used os.path.abspath, removed unnecessary code for executable_name. by Vinay Sajip · 12 years ago
  47. de0b962 Remove sys.platform == 'riscos' checks from some Python and test files. #16501 by Christian Heimes · 12 years ago
  48. 4791a24 #16135: Removal of OS/2 support (Python code partial cleanup) by Jesus Cea · 12 years ago
  49. abd344c Issue 15241: Improved site.py documentation relating to venvs. by Vinay Sajip · 12 years ago
  50. 2895244 Closes #15173: Tidied up copyright statements and removed pythonv references. by Vinay Sajip · 12 years ago
  51. 7ded1f0 Implemented PEP 405 (Python virtual environments). by Vinay Sajip · 12 years ago
  52. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  53. 6553211 site: don't import traceback at startup to speed up Python startup by Victor Stinner · 12 years ago
  54. 54540ec Remove redundant imports. by Florent Xicluna · 13 years ago
  55. 4e86d5b Replace open(filename, 'rU') by open(filename, 'r') by Victor Stinner · 13 years ago
  56. c09fca6 Do not touch sys.path when site is imported and python was started with -S. by Éric Araujo · 13 years ago
  57. b4ca59b #5258/#10642: print fn, line, traceback and continue when .pth file is broken by R. David Murray · 13 years ago
  58. b103a93 Issue #6612: Fix site and sysconfig to catch os.getcwd() error, eg. if the by Victor Stinner · 14 years ago
  59. fce7fd6 Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding() by Antoine Pitrou · 14 years ago
  60. e9b428f Reimplement addbuilddir() in C inside getpath.c, so as to execute it by Antoine Pitrou · 14 years ago
  61. bda4672 Ensure that test_site actually passes with a framework build by Ronald Oussoren · 14 years ago
  62. 3e5cd1d Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge from by Benjamin Peterson · 14 years ago
  63. 4cda46a Merged revisions 80967 via svnmerge from by Ronald Oussoren · 14 years ago
  64. 28a691b PEP 3147 by Barry Warsaw · 14 years ago
  65. fb1d3c1 Merged revisions 80022 via svnmerge from by Brian Curtin · 14 years ago
  66. fd1b093 Merged revisions 79297,79310,79382,79425-79427,79450 via svnmerge from by Florent Xicluna · 14 years ago
  67. 52f6dd7 Merged revisions 78826 via svnmerge from by Victor Stinner · 14 years ago
  68. edacea3 Merged revisions 77704,77752 via svnmerge from by Tarek Ziadé · 14 years ago
  69. 4a608c0 Merged revisions 74526 via svnmerge from by Tarek Ziadé · 15 years ago
  70. fa1fcd1 Merged revisions 70778 via svnmerge from by Ronald Oussoren · 15 years ago
  71. a79e33e Merged revisions 62954-62959,62961,62963-62967,62969-62970,62972-62973,62975-62976,62978-62982,62984,62987-62996 via svnmerge from by Alexandre Vassalotti · 16 years ago
  72. 6461e10 Merged revisions 62914-62916,62918-62919,62921-62922,62924-62942,62944-62945,62947-62949 via svnmerge from by Alexandre Vassalotti · 16 years ago
  73. 8dc226f Merged revisions 62774-62775,62785,62787-62788 via svnmerge from by Christian Heimes · 16 years ago
  74. 1af737c Merged revisions 60176-60209 via svnmerge from by Christian Heimes · 16 years ago
  75. d348b25 Remove several mentions of old Python versions that don't apply anymore. by Georg Brandl · 16 years ago
  76. 862543a Don't close sys.stdin with quit() if sys.stdin wraps fd 0. Otherwise it will raise a warning: Lib/io.py:1221: RuntimeWarning: Trying to close unclosable fd by Christian Heimes · 16 years ago
  77. 704b34d Fix issue #1667. The _Printer() class was using sys.stdin.readline() by Guido van Rossum · 16 years ago
  78. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 16 years ago
  79. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  80. fb67be2 Three patches from issue #1047, by Amaury Forgeot d'Arc: by Guido van Rossum · 17 years ago
  81. 289bc05 some RiscOS stuff I missed before (was only looking for "RISCOS") by Skip Montanaro · 17 years ago
  82. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  83. f39317a Hack to avoid a nasty recursion issue when Python is invoked by Guido van Rossum · 17 years ago
  84. fc3436b Add an encoding property to TextIOBase instances. by Guido van Rossum · 17 years ago
  85. 6f376c4 Enable new I/O. Disable creation of old files. by Guido van Rossum · 17 years ago
  86. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  87. 7ac9d40 Protect abs__file__() from changes to sys.modules while it's running. by Guido van Rossum · 17 years ago
  88. 74302db Get rid of 'file' built-in. Get rid of types.StringType and friends. by Guido van Rossum · 17 years ago
  89. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  90. 2fa74bb If $PYTHONNEWIO is set and nonempty, by Guido van Rossum · 17 years ago
  91. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  92. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 17 years ago
  93. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  94. 01c77c6 Anna Ravenscroft identified many occurrences of "file" used to open a file by Alex Martelli · 18 years ago
  95. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  96. c6fe983 When sitecustomize.py fails, don't make all of site.py fail, by Guido van Rossum · 18 years ago
  97. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  98. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  99. ce96f69 Get rid of a bunch more raw_input references by Neal Norwitz · 18 years ago
  100. 88ca467 Whitespace normalization. by Tim Peters · 18 years ago