1. beef5dc Merged revisions 87607 via svnmerge from by Benjamin Peterson · 14 years ago
  2. 834cb39 update copyright to 2011 by Benjamin Peterson · 14 years ago
  3. 8aa7e99 Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric in #1772833. by Georg Brandl · 14 years ago
  4. 92be939 Issue #10780: PyErr_SetFromWindowsErrWithFilename() and by Victor Stinner · 14 years ago
  5. cb428f0 Issue #10779: PyErr_WarnExplicit() decodes the filename from the filesystem by Victor Stinner · 14 years ago
  6. 810023d Issue #8844: Regular and recursive lock acquisitions can now be interrupted by Antoine Pitrou · 14 years ago
  7. 13d49ee Issue #10601: sys.displayhook uses 'backslashreplace' error handler on by Victor Stinner · 14 years ago
  8. 8334fd9 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. by Georg Brandl · 14 years ago
  9. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  10. ebc0052 import: use PyUnicode_FSConverter to support bytes path and PEP 383 by Victor Stinner · 14 years ago
  11. b2ddf79 Issue #9573: os.fork now works when triggered as a side effect of import (the wisdom of actually relying on this remains questionable!) by Nick Coghlan · 14 years ago
  12. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  13. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 14 years ago
  14. e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 14 years ago
  15. 0a4dae5 fix refleak by Benjamin Peterson · 14 years ago
  16. 5a96b52 Issue #10255: Fix reference leak in Py_InitializeEx(). Patch by Neil by Antoine Pitrou · 14 years ago
  17. 787cddc Merged revisions 86545 via svnmerge from by Benjamin Peterson · 14 years ago
  18. d8f6597 new plan: functions that want 'tmp' can declare it by Benjamin Peterson · 14 years ago
  19. e82c169 Merged revisions 86540 via svnmerge from by Benjamin Peterson · 14 years ago
  20. 0e9e98e c89 declarations by Benjamin Peterson · 14 years ago
  21. aab9585 Merged revisions 86538 via svnmerge from by Benjamin Peterson · 14 years ago
  22. 5b06681 use %R format code; fixes invalid dereferencing #10391 by Benjamin Peterson · 14 years ago
  23. f609654 handle dict subclasses gracefully in PyArg_ValidateKeywordArguments by Benjamin Peterson · 14 years ago
  24. cf9f980 Issue #10372: Import the warnings module only after the IO library is by Antoine Pitrou · 14 years ago
  25. 3e2b717 Issue #10359: Remove ";" after function definition, invalid in ISO C by Victor Stinner · 14 years ago
  26. 19de4c3 _Py_char2wchar() frees the memory on conversion error by Victor Stinner · 14 years ago
  27. 2f02a51 PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails by Victor Stinner · 14 years ago
  28. 3d89751 Merged revisions 85980 via svnmerge from by Hirokazu Yamamoto · 14 years ago
  29. daf83ac Issue #10157: Fixed refleaks in pythonrun.c. Patch by Stefan Krah. by Hirokazu Yamamoto · 14 years ago
  30. c8850d0 Merged revisions 85817,85904 via svnmerge from by Benjamin Peterson · 14 years ago
  31. a95e977 decrement offset when it points to a newline (#10186 followup) by Benjamin Peterson · 14 years ago
  32. 98e2b45 Merged revisions 85896 via svnmerge from by Antoine Pitrou · 14 years ago
  33. 07e20ef Issue #5437: A preallocated MemoryError instance should not hold traceback by Antoine Pitrou · 14 years ago
  34. 07e4f15 sys_update_path(): update sys.path even if argc==0 by Victor Stinner · 14 years ago
  35. 08be72d Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, by Georg Brandl · 14 years ago
  36. d4519c1 tighten loop by Benjamin Peterson · 14 years ago
  37. 9831611 Merged revisions 85814 via svnmerge from by Benjamin Peterson · 14 years ago
  38. 503d6c5 remove broken code accounting an offset the size of the line #10186 by Benjamin Peterson · 14 years ago
  39. 8035bc5 follow up to #9778: define and use an unsigned hash type by Benjamin Peterson · 14 years ago
  40. 3aa6cea Issue #10077: Fix logging of site module errors at startup. by Victor Stinner · 14 years ago
  41. 9583cac Issue #10089: Add support for arbitrary -X options on the command-line. by Antoine Pitrou · 14 years ago
  42. 4d3d08f Merged revisions 85757 via svnmerge from by Benjamin Peterson · 14 years ago
  43. b8ffb60 fix uninitialized struct member #10152 by Benjamin Peterson · 14 years ago
  44. 15244f7 Recorded merge of revisions 85569-85570 via svnmerge from by Victor Stinner · 14 years ago
  45. e474309 initfsencoding(): get_codeset() failure is now a fatal error by Victor Stinner · 14 years ago
  46. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  47. c049982 compiler_error(): use PyUnicode_DecodeFSDefault() to decode the filename, by Victor Stinner · 14 years ago
  48. 15a71cd PyErr_SyntaxLocationEx() uses PyUnicode_DecodeFSDefault(), instead of by Victor Stinner · 14 years ago
  49. ed7916d find_module(): use FS encoding to display the missing __init__ warning by Victor Stinner · 14 years ago
  50. 49d3f25 _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding by Victor Stinner · 14 years ago
  51. 168e117 Add an optional size argument to _Py_char2wchar() by Victor Stinner · 14 years ago
  52. 0a1b8cb _Py_wrealpath() uses _Py_char2wchar() to decode the result, to support by Victor Stinner · 14 years ago
  53. 350147b _Py_wreadlink(): catch _Py_char2wchar() failure by Victor Stinner · 14 years ago
  54. 3f711f4 _Py_wreadlink() uses _Py_char2wchar() to decode the result, to support by Victor Stinner · 14 years ago
  55. 2f2ed1f Fix ast_error_finish() and err_input(): filename can be NULL by Victor Stinner · 14 years ago
  56. 4c7c8c3 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects by Victor Stinner · 14 years ago
  57. e963349 Merged revisions 85562 via svnmerge from by Benjamin Peterson · 14 years ago
  58. 230b206 don't identify the toplevel namespace by name #9997 by Benjamin Peterson · 14 years ago
  59. 294a9fc fix refleak by Benjamin Peterson · 14 years ago
  60. 8cf4eae First (uncontroversial) part of issue 9807. by Barry Warsaw · 14 years ago
  61. 88bd891 Fix imp_cache_from_source(): Decode make_compiled_pathname() result from the by Victor Stinner · 14 years ago
  62. 1a56303 imp_load_module() uses PyUnicode_FSConverter() to support surrogates in module by Victor Stinner · 14 years ago
  63. 3ea23dd imp.cache_from_source() uses PyUnicode_FSConverter() to support surrogates in by Victor Stinner · 14 years ago
  64. 8dbf629 imp.load_dynamic() uses PyUnicode_FSConverter() to support surrogates by Victor Stinner · 14 years ago
  65. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  66. 6a4aff1 redecode_filename(): don't need to initialize variables by Victor Stinner · 14 years ago
  67. 5d1e3438 Mark _Py_char2wchar() input argument as constant by Victor Stinner · 14 years ago
  68. 3d400b7 Merged revisions 85497 via svnmerge from by Antoine Pitrou · 14 years ago
  69. b86680e Explicitly close some files (from issue #10093) by Antoine Pitrou · 14 years ago
  70. f4061da _Py_wgetcwd() decodes the path using _Py_char2wchar() to support surrogates by Victor Stinner · 14 years ago
  71. 8f6b6b0 Issue #9992: Remove PYTHONFSENCODING environment variable. by Victor Stinner · 14 years ago
  72. a000645 ceval.c: catch recursion error on _PyUnicode_AsString(co->co_filename) by Victor Stinner · 14 years ago
  73. 19f8edc Issue #10062: Allow building on platforms which do not have sem_timedwait. by Antoine Pitrou · 14 years ago
  74. 6672d0c fileutils.c: document which encodings are used by Victor Stinner · 14 years ago
  75. 015f4d8 _Py_wrealpath() requires the size of the output buffer by Victor Stinner · 14 years ago
  76. a4a7595 _Py_stat() and _Py_fopen(): avoid PyUnicode_AsWideCharString() on Windows by Victor Stinner · 14 years ago
  77. b306d75 Fix fileutils for Windows by Victor Stinner · 14 years ago
  78. e7c8083 Ooops, fileutils.c contains twice the same code by Victor Stinner · 14 years ago
  79. 4e31443 Create fileutils.c/.h by Victor Stinner · 14 years ago
  80. 7ae7c87 _wrealpath() and _Py_wreadlink() support surrogates (PEP 383) by Victor Stinner · 14 years ago
  81. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  82. c08ec9f Create a subfunction for PySys_SetArgvEx() by Victor Stinner · 14 years ago
  83. 7955fb6 Merged revisions 85236 via svnmerge from by Amaury Forgeot d'Arc · 14 years ago
  84. 90774dd #9060 Let platforms without dup2() compile the replacement fonction without error. by Amaury Forgeot d'Arc · 14 years ago
  85. 748cace Remove an unreferenced variable. len is no longer needed. by Brian Curtin · 14 years ago
  86. c39211f Issue #9630: Redecode filenames when setting the filesystem encoding by Victor Stinner · 14 years ago
  87. 255dfdb Issue #9979: Use PyUnicode_AsWideCharString() in import.c by Victor Stinner · 14 years ago
  88. 5305a99 Since __import__ is not designed for general use, have its docstring point by Brett Cannon · 14 years ago
  89. aa7fbd9 revert r85003, poorly considered; breaks tests by Benjamin Peterson · 14 years ago
  90. 81437c9 don't count keyword arguments as positional #9943 by Benjamin Peterson · 14 years ago
  91. d4efd9e add column offset to all syntax errors by Benjamin Peterson · 14 years ago
  92. 2c53971 add PyErr_SyntaxLocationEx, to support adding a column offset by Benjamin Peterson · 14 years ago
  93. b0b384b Issue #9901: Destroying the GIL in Py_Finalize() can fail if some other by Antoine Pitrou · 14 years ago
  94. 2fea9b9 issue 9786 Native TLS support for pthreads by Kristján Valur Jónsson · 14 years ago
  95. bc2eff3 PyImport_Import was using the old import hack of sticking a dummy value into by Brett Cannon · 14 years ago
  96. 1df1536 Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properly by Antoine Pitrou · 14 years ago
  97. cd419ab Fix incorrect comment regarding MAGIC and TAG in import.c by Nick Coghlan · 14 years ago
  98. e208b7c typo by Benjamin Peterson · 14 years ago
  99. d0de25d use Py_REFCNT by Benjamin Peterson · 14 years ago
  100. d2be5b4 remove gil_drop_request in --without-threads by Benjamin Peterson · 14 years ago