635 Commits (b2df6319e3a3bd5cecebd2b3ca8e95b0cc87b554)

Author SHA1 Message Date
Thomas Wouters 448db2155f Merged revisions 74841 via svnmerge from 17 years ago
Thomas Wouters c4dcb3801e Fix issue #1590864, multiple threads and fork() can cause deadlocks, by 17 years ago
Georg Brandl 01a30523f9 Merged revisions 74264 via svnmerge from 17 years ago
Alexandre Vassalotti e223eb8477 Merged revisions 74075,74187,74197,74201,74216,74225 via svnmerge from 17 years ago
Amaury Forgeot d'Arc 982b2fa32d Better name a variable: 'buf' seems to imply a mutable buffer. 17 years ago
R. David Murray 07fc01f9ef Merged revisions 74058 via svnmerge from 17 years ago
R. David Murray e38b0a8ec0 Merged revisions 73870,73879,73899-73900,73905-73906 via svnmerge from 17 years ago
Alexandre Vassalotti 9d58e3eb02 Merged revisions 73870,73879,73899-73900,73905-73906 via svnmerge from 17 years ago
R. David Murray 3310a10a68 Update issue 6070 patch to match the patch that was actually tested 17 years ago
R. David Murray 23a736a4f0 Issue 6070: when creating a compiled file, after copying the mode bits, on 17 years ago
Benjamin Peterson 876b2f286b Merged revisions 72912,72920,72940 via svnmerge from 17 years ago
Benjamin Peterson 1880d8b823 add a SETUP_WITH opcode 17 years ago
Brett Cannon a826f32054 Merged revisions 71031 via svnmerge from 17 years ago
Brett Cannon 238cedcd63 Fix two issues introduced by issue #71031 by changing the signature of 17 years ago
Brett Cannon c4f90ebea7 PyImport_AppendInittab() took a char * as a first argument even though that 17 years ago
Kristján Valur Jónsson 92af5d9fec Fix a leaking "pathname" in import.c 17 years ago
Kristján Valur Jónsson e1b0445ff9 get_file() no longer leaks a FILE structure. If given a file descriptor, it calls dup() to get a new handle. Then both the FILE object and the fd can be closed. 17 years ago
Guido van Rossum 0ad59d467d Issue #5604: non-ASCII characters in module name passed to 17 years ago
Brett Cannon 8d11013169 Implement InspectLoader for FrozenImporter. 17 years ago
Brett Cannon 3c2ac448ec Fix a typo in a comment. 18 years ago
Hirokazu Yamamoto 4f447fb9a1 Issue #5273: Fixed import failure on unicode path. (especially on windows) 18 years ago
Jeffrey Yasskin 68d6852006 Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with 18 years ago
Jeffrey Yasskin 9de7ec7868 http://bugs.python.org/issue4715 18 years ago
Mark Dickinson e94c679df0 Issue #1717: rename tp_compare to tp_reserved. I'll change the 18 years ago
Hirokazu Yamamoto 90eaaf623a Issue #5041: Fixed memory leak. 18 years ago
Kristján Valur Jónsson 92cb438448 Issue 3677: Release the path string on py3k 18 years ago
Hirokazu Yamamoto 21cbf5f896 Merged revisions 68457 via svnmerge from 18 years ago
Georg Brandl c04c2890c7 Merged revisions 68292,68344,68361,68378,68424,68426,68429-68430,68450,68457,68480-68481,68493,68495,68499,68501,68512,68514-68515 via svnmerge from 18 years ago
Kristján Valur Jónsson 3b2a6b819d Issue 3677: Fix import from UNC paths on Windows. 18 years ago
Antoine Pitrou d35cbf6e61 Merged revisions 68360-68361 via svnmerge from 18 years ago
Antoine Pitrou 5b0767c31d Merged revisions 68360 via svnmerge from 18 years ago
Antoine Pitrou e96d4ea4e2 Issue #1180193: When importing a module from a .pyc (or .pyo) file with 18 years ago
Martin v. Löwis ffe431d8bd Merged revisions 68203 via svnmerge from 18 years ago
Martin v. Löwis 0fa10b3cd5 Issue #4817: Remove unused function PyOS_GetLastModificationTime. 18 years ago
Antoine Pitrou f289ae6f01 Merged revisions 67818 via svnmerge from 18 years ago
Antoine Pitrou d0c3515bc5 Issue #2183: Simplify and optimize bytecode for list comprehensions. 18 years ago
Amaury Forgeot d'Arc 9a5499b4e5 #3705: Command-line arguments were not correctly decoded when the 18 years ago
Benjamin Peterson d968e27581 fix #4211: the __path__ of a frozen package should be a list. 18 years ago
Amaury Forgeot d'Arc 8530e8590f Revert r33661, which broke all buildbots. 18 years ago
Amaury Forgeot d'Arc 14b785192b #3705: Fix crash when given a non-ascii value on the command line for the "-c" and "-m" parameters 18 years ago
Amaury Forgeot d'Arc 1b933ed50a #3773: Check for errors around the use of PyTokenizer_FindEncoding(). 18 years ago
Benjamin Peterson ad9565338c Fix a memory leak in reloading extension modules #3667 18 years ago
Benjamin Peterson 3e4f055602 Merged revisions 66045,66048-66049,66053,66060,66062-66063,66065,66067,66071-66074,66080,66082-66083,66090-66093,66097-66099,66103,66105,66110,66118 via svnmerge from 18 years ago
Benjamin Peterson 17f03ca962 Fix compilation when --without-threads is given #3683 18 years ago
Marc-André Lemburg 4cc0f24857 Rename PyUnicode_AsString -> _PyUnicode_AsString and 18 years ago
Brett Cannon 3aa2a49ec9 Add imp.reload(). This to help with transitioning to 3.0 the reload() built-in 18 years ago
Georg Brandl 8494d573b9 #3368: free string allocated by "es" ParseTuple format. 18 years ago
Georg Brandl 2ee470f7f9 Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 18 years ago
Nick Coghlan b028f50911 Fix issue 3221 by emitting a RuntimeWarning instead of raising SystemError when the parent module can't be found during an absolute import (likely due to non-PEP 361 aware code which sets a module level __package__ attribute) 18 years ago
Amaury Forgeot d'Arc f1ca0b11b5 Issue 1342: Python could not start if installed in a directory 18 years ago