4426 Commits (575596e19a8f0be382f08a2dc9190100ff811b97)

Author SHA1 Message Date
Victor Stinner 590cebe391 Issue #19787: PyThread_set_key_value() now always set the value 12 years ago
Victor Stinner 441adb8c57 Backout changeset 46393019b650 12 years ago
Victor Stinner cd0cb8ccd3 Close #19787: PyThread_set_key_value() now always set the value. In Python 3.3, 12 years ago
Victor Stinner fdeb6ec45a Issue #14432: Remove the thread state field from the frame structure. Fix a 12 years ago
Victor Stinner 62ca10051b Close #19576: PyGILState_Ensure() now initializes threads. At startup, Python 12 years ago
Eric Snow b282b3d804 Issue #18864: Add a setter for ModuleSpec.has_location. 12 years ago
Victor Stinner 52ce3b04d0 Issue #19817: Fix print_exception(), clear the exception on error 12 years ago
Benjamin Peterson 933142a8f2 document that compile() can take bytes (closes #19910) 12 years ago
Christian Heimes 724b828e79 upcast int to size_t to silence two autological-constant-out-of-range-compare warnings with clang. 12 years ago
Victor Stinner be0708f066 Closes #19831: Stop tracemalloc later at Python shutdown to be able to use 12 years ago
Brett Cannon d2476c6e4b Issue #19698: Remove exec_module() from the built-in and extension 12 years ago
Mark Dickinson f45bbb6211 Issue #19638: Raise ValueError instead of crashing when converting billion character strings to float. 12 years ago
Zachary Ware a4b7a7548c Issue #3158: doctest can now find doctests in functions and methods 12 years ago
Larry Hastings 3a9079742f Issue #19722: Added opcode.stack_effect(), which accurately 12 years ago
Antoine Pitrou 8933521b3d Fix refleak introduced by 4f730c045f5f (issue #18408) and unveiled by 95eea8624d05 (issue #16596). 12 years ago
Victor Stinner ed3b0bca3e Issue #18874: Implement the PEP 454 (tracemalloc) 12 years ago
Brett Cannon 224b261258 User the repr for a module name in more places 12 years ago
Brett Cannon 175e7257b1 Remove a commented-out line 12 years ago
Brett Cannon fddc311fe8 Don't assume trying to find a builtin will succeed (e.g. posix isn't on Windows) 12 years ago
Eric Snow b523f8433a Implement PEP 451 (ModuleSpec). 12 years ago
Nick Coghlan c72e4e6dcc Issue #19619: Blacklist non-text codecs in method API 12 years ago
Guido van Rossum 8820c239f7 Better behavior when stepping over yield[from]. Fixes issue 16596. By Xavier de Gaye. 12 years ago
Christian Heimes a5bcd7c0ee Issue #19183: too many tests depend on the sort order of repr(). 12 years ago
Christian Heimes 985ecdcfc2 ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. 12 years ago
Victor Stinner f8e3221fa5 Issue #9566, #19617: Fix more compiler warnings in compile.c on Windows 64-bit 12 years ago
Victor Stinner 85fe8a645e Issue #9566, #19617: New try to fix compilation on Windows 12 years ago
Victor Stinner b679a2eb78 Issue #9566, #19617: Fix compilation on Windows 12 years ago
Victor Stinner ad9a066050 Issue #9566: compile.c uses Py_ssize_t instead of int to store sizes to fix 12 years ago
Victor Stinner 4a58707a34 Add _PyUnicodeWriter_WriteASCIIString() function 12 years ago
Serhiy Storchaka 58cf607d13 Issue #12892: The utf-16* and utf-32* codecs now reject (lone) surrogates. 12 years ago
Victor Stinner cb29ec5f74 PY_FORMAT_SIZE_T should not be used with PyErr_Format(), PyErr_Format("%zd") is 12 years ago
Victor Stinner 74387f5cac Use Py_ssize_t type for sizes in getargs.c 12 years ago
Victor Stinner b11d6cb711 fileutils.c: use MAXPATHLEN instead of PATH_MAX 12 years ago
Victor Stinner 2384714819 sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to get the size of 12 years ago
Victor Stinner 2f5bbc6a12 pythonrun.c: fix Py_GetPythonHome(), use Py_ARRAY_LENGTH() to get the size of 12 years ago
Victor Stinner da062558db Fix compiler warning (on Windows 64-bit): explicit cast Py_ssize_t to unsigned 12 years ago
Victor Stinner 0c083461a5 Fix compiler warning in win32_urandom(): explicit cast to DWORD in 12 years ago
Nick Coghlan c4c2580d43 Close 19609: narrow scope of codec exc chaining 12 years ago
Victor Stinner 5eb4f59cd9 Issue #19437: Fix init_builtin(), handle _PyImport_FindExtensionObject() 12 years ago
Stefan Krah 49d0479357 Add unused third arg for the benefit of Valgrind. 12 years ago
Victor Stinner c82729e44f Issue #19437: Fix fold_unaryops_on_constants() of the peephole optimizer, clear 12 years ago
Nick Coghlan 8b097b4ed7 Close #17828: better handling of codec errors 12 years ago
Victor Stinner 22af2599a9 Issue #19437: Fix PyImport_ImportModuleLevelObject(), handle 12 years ago
Victor Stinner 3f36a5736b Issue #19515: Remove identifiers duplicated in the same file. 12 years ago
Victor Stinner dcf17f8a55 Issue #19466: Fix typo. Patch written by Vajrasky Kok. 12 years ago
Victor Stinner 45956b9a33 Close #19466: Clear the frames of daemon threads earlier during the Python 12 years ago
Victor Stinner bd303c165b Issue #19512, #19515: remove shared identifiers, move identifiers where they 12 years ago
Victor Stinner efa7a0e155 print_error_text() doesn't encode the filename anymore 12 years ago
Victor Stinner 79ed4c744a remove an outdated comment 12 years ago
Victor Stinner 53e9ec48e5 Issue #19512: Use the new _PyId_builtins identifier 12 years ago