4284 Commits (0cb8e5131d0797d3bdb1494de842e98798174cf2)

Author SHA1 Message Date
Jeremy Hylton 6b4ec5135b Fix for SF bug #117241 26 years ago
Guido van Rossum c8fcdcba36 Patch 102114, Bug 11725. On OpenBSD (but apparently not on the other 26 years ago
Fred Drake 661ea26b3d Ka-Ping Yee <ping@lfw.org>: 26 years ago
Fred Drake 237b5f44c7 Andy Dustman <adustman@users.sourceforge.net>: 26 years ago
Thomas Wouters 0be483fd4d Do a better job at staying on-screen :P (Sorry, it's late here.) I'm 26 years ago
Thomas Wouters 8fb62a2e9a Adjust debugging code in the implementation of the DUP_TOPX bytecode, use 26 years ago
Fred Drake 48fba733b9 Remove the last gcc -Wall warning about possible use of an uninitialized 26 years ago
Tim Peters 35ba689cab Attempt to fix bogus gcc -Wall warnings reported by Marc-Andre Lemburg, 26 years ago
Fred Drake e693df94ed Avoid a couple of "value computed is not used" warnings from gcc -Wall; 26 years ago
Fred Drake a6c2eb5e1e Donn Cave <donn@u.washington.edu>: 26 years ago
Tim Peters 98dc065c1b SF "bug" 115973: patches from Norman Vine so that shared libraries and 26 years ago
Mark Hammond 1f7838bcc0 Detect conflicting Python DLL on module import under Windows - as per [ Patch #101676 ] 26 years ago
Barry Warsaw 84294487df _PyImport_Fini(): Closed small memory leak when an embedded app calls 26 years ago
Tim Peters 42c83afd14 The 2.0b2 change to write .pyc files in exclusive mode (if possible) 26 years ago
Fred Drake d5fadf75e4 Rationalize use of limits.h, moving the inclusion to Python.h. 26 years ago
Fred Drake 9e2851566c Andrew Kuchling <akuchlin@mems-exchange.org>: 26 years ago
Marc-André Lemburg 0afff388ce Special case the "s#" PyArg_Parse() token for Unicode objects: 26 years ago
Guido van Rossum 55a8338d7f On Unix, use O_EXCL when creating the .pyc/.pyo files, to avoid a race condition 26 years ago
Marc-André Lemburg d1ba443206 This patch adds a new Python C API called PyString_AsStringAndSize() 26 years ago
Tim Peters e84b74039b Obscure marshal fixes: 26 years ago
Guido van Rossum 9e8181b809 Make better use of GNU Pth -- patch by Andy Dustman. 26 years ago
Marc-André Lemburg 691270feee Deferred the attribute name object type checking to the underlying 26 years ago
Guido van Rossum 6f25618be5 Add PyOS_getsig() and PyOS_setsig() -- wrappers around signal() or 26 years ago
Jack Jansen a454ebd924 Added B format char to Py_BuildValue (same as b,h,i, but makes 26 years ago
Jack Jansen b763b9d9d5 Cast UCHAR_MAX to int before doing the comparison for overflow of the 26 years ago
Fred Drake fd1f1be98d com_continue_stmt(): Improve error message when continue is found 26 years ago
Marc-André Lemburg bbcf2a7c81 This patch hopefully fixes the problem with "es#" and "es" in 26 years ago
Guido van Rossum f26cda62b6 The GCC version is loooooooooong; put it on a new line. 26 years ago
Guido van Rossum f4d189f70b All right. More uniformity, and extra blank lines. 26 years ago
Guido van Rossum 7ca7b5ac93 Use periods, not semicolons between Copyright and All Rights Reserved. 26 years ago
Vladimir Marangozov 547936c86f Fix the char* vs. const char* mismatch for the argument of aix_loaderror() 26 years ago
Guido van Rossum 76ad68ae6e Change the copyright notice according to CNRI's wishes, with 26 years ago
Fredrik Lundh 1fa0b895ec changed \x to consume exactly two hex digits. implements PEP-223 26 years ago
Tim Peters 412f246024 PyInterpreterState_New is not thread-safe, and the recent fix to _PyPclose 26 years ago
Guido van Rossum 8586991099 REMOVED all CWI, CNRI and BeOpen copyright markings. 26 years ago
Vladimir Marangozov 7bd25be508 Cosmetics on Py_Get/SetRecursionLimit (for the style guide) 26 years ago
Jeremy Hylton b69a27e5b2 code part of patch #100895 by Fredrik Lundh 26 years ago
Tim Peters d320c348f8 Revert removal of void from function definition. Guido sez I can take it 26 years ago
Jeremy Hylton b709df3810 refactor __del__ exception handler into PyErr_WriteUnraisable 26 years ago
Guido van Rossum 349ff6f7e2 Set the recursion limit to 1000 -- 2500 was not enough, let's be 26 years ago
Tim Peters 51de6906be Supply missing prototypes for new Py_{Get,Set}RecursionLimit; fixes compiler wngs; 26 years ago
Jeremy Hylton ee5adfbae6 add user-modifiable recursion_limit 26 years ago
Fred Drake 592f2d6c85 _PySys_Init(): When setting up sys.version_info, use #if/#elif.../#endif 26 years ago
Fred Drake 399739f79f PyOS_CheckStack(): Better ANSI'fy this while we're at it. 26 years ago
Fred Drake e8de31cbd0 Add a comment explaining the return value of PyOS_CheckStack(). 26 years ago
Paul Prescod e68140dd3c Better error message with UnboundLocalError 26 years ago
Barry Warsaw 093abe005d eval_code2(): Guido provides this patch for his suggested elaboration 26 years ago
Thomas Wouters dd13e4f91f Replace the run-time 'future-bytecode-stream-inspection' hack to find out 26 years ago
Tim Peters e868211e10 Hard to believe Guido compiled this! Function lacked a return stmt. 26 years ago
Thomas Wouters e753ef8d1b Re-allow 'import mod.submod as s', and change its meaning to what it should 26 years ago