132 Commits (95f7b9fcaca03d442aa2f26fd79f093cbcbc7003)

Author SHA1 Message Date
Martin Panter 4c35964b76 Corrections for a/an in code comments and documentation 10 years ago
Serhiy Storchaka ef1585eb9a Issue #25923: Added more const qualifiers to signatures of static and private functions. 10 years ago
Yury Selivanov 8170e8c0d1 PEP 479: Change StopIteration handling inside generators. 11 years ago
Nick Coghlan d600951748 Issue #22869: Split pythonrun into two modules 11 years ago
Martin v. Löwis 1c0689c613 Issue #19526: Exclude all new API from the stable ABI. 12 years ago
Victor Stinner 95701bdf40 Issue #19512: Add PyRun_InteractiveOneObject() function 12 years ago
Serhiy Storchaka c679227e31 Issue #1772673: The type of `char*` arguments now changed to `const char*`. 12 years ago
Nick Coghlan 1805a62f1f Issue #16129: Py_SetStandardStreamEncoding cleanups 12 years ago
Nick Coghlan a0f074f398 Issue #16129: Move Py_SetStandardStreamEncoding declaration 12 years ago
Nick Coghlan 7d270ee05d Issue #16129: Add `Py_SetStandardStreamEncoding` 12 years ago
Antoine Pitrou 4879a963d4 Issue #18756: os.urandom() now uses a lazily-opened persistent file descriptor, so as to avoid using many file descriptors when run in parallel from multiple threads. 13 years ago
Victor Stinner 14e461d5b9 Close #11619: The parser and the import machinery do not encode Unicode 13 years ago
Victor Stinner 1c8f059019 Issue #18520: Add a new PyStructSequence_InitType2() function, same than 13 years ago
Antoine Pitrou 5f454a07a0 Issue #1545463: Global variables caught in reference cycles are now garbage-collected at shutdown. 13 years ago
Antoine Pitrou 957a23b088 Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again. 13 years ago
Antoine Pitrou e67f48ce5e Issue #14928: Fix importlib bootstrap issues by using a custom executable (Modules/_freeze_importlib) to build Python/importlib.h. 14 years ago
Eli Bendersky 0813168e94 Issue #14090: fix some minor C API problems in default branch (3.3) 14 years ago
Brett Cannon fd0741555b Issue #2377: Make importlib the implementation of __import__(). 14 years ago
Antoine Pitrou 776af4002b Fix crash at startup with -W options. 14 years ago
Antoine Pitrou cc3fa88a9c Fix crash at startup with -W options. 14 years ago
Antoine Pitrou 86838b02f0 Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. 14 years ago
Barry Warsaw 1e13eb084f - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED 14 years ago
Georg Brandl 2daf6ae249 Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) 14 years ago
Antoine Pitrou f34a0cdc6c Issue #10227: Add an allocation cache for a single slice object. 14 years ago
Antoine Pitrou 0d5e52d346 Issue #1856: Avoid crashes and lockups when daemon threads run while the 15 years ago
Georg Brandl 3a5508e2c0 Port build identification from default branch. 15 years ago
Georg Brandl 776e586114 Remove sys.subversion and svn build identification leftovers. 15 years ago
Georg Brandl 1ca2e7965c Commit the hg build identification patch from the pymigr repo. 15 years ago
Victor Stinner 00676d1436 Issue #9738: Document encodings of AST, compiler, parser and PyRun functions 15 years ago
Martin v. Löwis 0d012f284b Expose CompileString, not CompileStringFlags under the 15 years ago
Georg Brandl 8334fd9285 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. 15 years ago
Martin v. Löwis 4d0d471a80 Merge branches/pep-0384. 15 years ago
Kristján Valur Jónsson 3b69db27d7 issue 9910 15 years ago
Antoine Pitrou 696e03553b Issue #477863: Print a warning at shutdown if gc.garbage is not empty. 16 years ago
Antoine Pitrou 7f14f0d8a0 Recorded merge of revisions 81032 via svnmerge from 16 years ago
Antoine Pitrou f95a1b3c53 Recorded merge of revisions 81029 via svnmerge from 16 years ago
Antoine Pitrou c7c96a90bc Recorded merge of revisions 81029 via svnmerge from 16 years ago
Antoine Pitrou c83ea137d7 Untabify C files. Will watch buildbots. 16 years ago
Gregory P. Smith fb94c5f1e5 * Replaces the internals of the subprocess module from fork through exec on 16 years ago
Benjamin Peterson e39d5d5f81 Merged revisions 73782-73784 via svnmerge from 17 years ago
Benjamin Peterson ffeaa88525 a little more fiddling to make flags like 2.x 17 years ago
Benjamin Peterson 466a7822c1 the old CO_FUTURE flags can't be commented out 17 years ago
Brett Cannon e3944a5e1e The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)! 17 years ago
Mark Dickinson efc82f7e8e Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. 17 years ago
Benjamin Peterson f5b52246ed ignore the coding cookie in compile(), exec(), and eval() if the source is a string #4626 17 years ago
Amaury Forgeot d'Arc 3d17a5c5ae Merged revisions 64214 via svnmerge from 18 years ago
Amaury Forgeot d'Arc a4dd2e20e2 Restore support for Microsoft VC6 compiler. 18 years ago
Gregory P. Smith dd96db63f6 This reverts r63675 based on the discussion in this thread: 18 years ago
Christian Heimes 72b710a596 Renamed PyString to PyBytes 18 years ago
Christian Heimes 9c4756ea26 Renamed PyBytes to PyByteArray 18 years ago