4844 Commits (48842714b948fa239392ddd7e207151d5fcb8bc7)

Author SHA1 Message Date
Serhiy Storchaka 48842714b9 Issue #22570: Renamed Py_SETREF to Py_XSETREF. 10 years ago
Victor Stinner 244e12088d Use Py_uintptr_t for atomic pointers 10 years ago
Victor Stinner a2e5e044af Py_FatalError: disable faulthandler earlier 10 years ago
Victor Stinner 4ddee7f5fd Fix Py_FatalError() if called without the GIL 10 years ago
Yury Selivanov c724bae51c coroutines: Error when awaiting on coroutine that's being awaited 10 years ago
Martin Panter 3263f6874a Issue #22836: Keep exception reports sensible despite errors 10 years ago
Brett Cannon 4f38cb41fe Issue #26367: Have importlib.__init__() raise RuntimeError when 10 years ago
Serhiy Storchaka 48a583b1d8 Issue #25698: Prevent possible replacing imported module with the empty one 10 years ago
Serhiy Storchaka c4b813d05d Issue #26198: Fixed error messages for some argument parsing errors. 10 years ago
Martin Panter b5944220ab Issue #4806: Avoid masking original TypeError in call with * unpacking 10 years ago
Victor Stinner 3cdd5fb970 code_richcompare() now uses the constants types 10 years ago
Victor Stinner bfd316e750 Add _PyThreadState_UncheckedGet() 10 years ago
Benjamin Peterson 75e3630c60 2016 will be another year of writing copyrighted code 10 years ago
Benjamin Peterson 3cc8f4b969 make recording and reporting errors and nonlocal and global directives more robust (closes #25973) 10 years ago
Serhiy Storchaka 191321d11b Issue #20440: More use of Py_SETREF. 10 years ago
Serhiy Storchaka 4a1e70fc31 Issue #20440: Applied yet one patch for using Py_SETREF. 10 years ago
Serhiy Storchaka 5a57ade58e Issue #20440: Massive replacing unsafe attribute setting code with special 10 years ago
Serhiy Storchaka 225821c653 Issue #25899: Converted non-ASCII characters in docstrings and manpage 10 years ago
Martin Panter 6f9b010242 Fix a couple of typos in code comments 10 years ago
Victor Stinner c379ade1bb pytime.c: rename pygettimeofday_new() to pygettimeofday() 10 years ago
Martin Panter eeb896c411 Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary 10 years ago
Victor Stinner f9827ea618 Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when 10 years ago
Victor Stinner 60a1d3cd15 Issue #25556: Fix LOAD_GLOBAL bytecode when globals type is not dict and the 10 years ago
Martin Panter 7462b64911 Issue #25523: Correct "a" article to "an" article 10 years ago
Victor Stinner 50856d5ae7 sys.setrecursionlimit() now raises RecursionError 10 years ago
Victor Stinner bc5b80bac1 Close #24784: Fix compilation without thread support 10 years ago
Martin Panter c9a6ab56cf Issue #24402: Fix input() when stdout.fileno() fails; diagnosed by Eryksun 10 years ago
Martin Panter 9955a373a8 Various minor typos in documentation and comments 10 years ago
Serhiy Storchaka f731bc09fa Issue #25280: Import trace messages emitted in verbose (-v) mode are no 10 years ago
Victor Stinner 78cc2e8968 Issue #25003: os.urandom() doesn't use getentropy() on Solaris because 10 years ago
Victor Stinner bae2d6203f Issue #25003: On Solaris 11.3 or newer, os.urandom() now uses the getrandom() 10 years ago
Benjamin Peterson 58b53953f8 make opening brace of container literals and comprehensions correspond to the line number and col offset of the AST node (closes #25131) 10 years ago
Victor Stinner ec26f83f2e Issue #25155: Fix _PyTime_Divide() rounding 10 years ago
Victor Stinner 9a8b177e60 Issue #25155: Add _PyTime_AsTimevalTime_t() function 10 years ago
Victor Stinner cd6e69439c Issue #25160: Fix import_init() comments and messages 10 years ago
Benjamin Peterson b685515039 compute stack effect of BUILD_MAP correctly (closes #25060) 10 years ago
Larry Hastings 714e49371b Issue #24305: Prevent import subsystem stack frames from being counted 10 years ago
Victor Stinner 6fb5bae252 Fix race condition in create_stdio() 10 years ago
Victor Stinner 38b8ae0f5b Issue #24993: Handle import error in namereplace error handler 10 years ago
Victor Stinner 5ad5821d09 oops, rename pymonotonic_new() to pymonotonic() 10 years ago
Victor Stinner c3c616c3d1 Issue #24707: Remove assertion in monotonic clock 10 years ago
Yury Selivanov b3d531348c Issue #24975: Fix AST compilation for PEP 448 syntax. 10 years ago
Larry Hastings 01b1ff6970 Rebuilt Clinic generated code. 10 years ago
Larry Hastings 1df0b35e3d Issue #24769: Interpreter now starts properly when dynamic loading 10 years ago
Brett Cannon 3008bc0f4a Issue #24492: make sure that ``from ... import ...` raises an 11 years ago
Berker Peksag 0bd5fb0112 Issue #24728: Fix building without threads. 11 years ago
Yury Selivanov 14acf5f41d Issue #24791: Fix grammar regression for call syntax: 'g(*a or b)'. 11 years ago
Victor Stinner 61d5aab9b9 py_getrandom(): getrandom() *can* return EINTR 11 years ago
Stefan Krah c0cbed1554 Fix refleak. 11 years ago
Yury Selivanov f315c1c016 Issue #24687: Plug refleak on SyntaxError in function parameters annotations. 11 years ago