4721 Commits (774ac377daf0da8eaddc578d883cd2002cb7a6a4)

Author SHA1 Message Date
Guido van Rossum 507338e5ca In-line the code in range() to set the list items; there's really no 28 years ago
Guido van Rossum 1f74016735 Support for OpenBSD :-( 28 years ago
Guido van Rossum 111c20b992 Reject empty module names -- otherwise __import__("") does something 28 years ago
Guido van Rossum cecadc469b Move #include <sys/param.h> to before osdefs.h (Donn Cave). 28 years ago
Guido van Rossum 8766a7797e Comment out a label on an #endif. 28 years ago
Guido van Rossum 730806d3d9 Make new gcc -Wall happy 28 years ago
Guido van Rossum 39b0f8976c Address warnings issued by the MSVC++ compiler 28 years ago
Guido van Rossum ede0439cd8 /* An extension mechanism to store arbitrary additional per-thread state. 28 years ago
Guido van Rossum 560e8adef7 Translate E_INDENT to the clearest error message I can think of. 28 years ago
Guido van Rossum d295f120ae Make first raise argument optional 28 years ago
Guido van Rossum bf02fb28d9 Make sure that the message "Error in sys.exitfunc:" goes to sys.stderr 28 years ago
Guido van Rossum 6deac7a105 Make calls into ../PC/frozen_dllmain.c on MS_WIN32. 28 years ago
Guido van Rossum f015e18d9d Add primitive test for frozen package. 28 years ago
Guido van Rossum 8f74571596 Use a faster way to check for null bytes in the string argument for 28 years ago
Guido van Rossum a5568d349b Support for frozen packages, matching the revamped Tools/freeze. 28 years ago
Guido van Rossum d65911b3f3 Oops -- overuse of dabbrev-expand introduced a strange bug, where 28 years ago
Guido van Rossum 75acc9ca1c Add a single Python-wide (!) lock on import. Only one thread at a 28 years ago
Guido van Rossum 0829c754bb Fix the handling of errors in Py_FlushLine() in a few places. 28 years ago
Guido van Rossum 05f9dce34f Moved clear_carefully() to _PyModule_Clear() in moduleobject.c 28 years ago
Guido van Rossum bd36dbaaa5 Make backup copies of stdin, stdout, stderr as __stdin__, __stdout__, 28 years ago
Guido van Rossum aeca79b0f6 Small patches to the DJGPP version of check_case(). 28 years ago
Guido van Rossum 4d1b3b921d Added DJGPP version of check_case(), by Pit Scrorpion (Hans Nowak). 28 years ago
Guido van Rossum 0980bd9233 Add case checking feature on import. 28 years ago
Guido van Rossum e32bf6ead2 Added PyImport_ExecCodeModuleEx(), which adds an extra parameter to 28 years ago
Guido van Rossum 919b83d522 Set Py_FrozenFlag, to suppress error messages from getpath.c. 28 years ago
Guido van Rossum a61691e4e9 Ehm, three unrelated changes. 28 years ago
Guido van Rossum a0fec2b5df Two more refinements of the cleanup process. 28 years ago
Guido van Rossum 42e8e5d164 Protect PyErr_Format format string argument from overflow. 28 years ago
Guido van Rossum 0d6b49eff2 Protect PyErr_Format format string argument from overflow (ironically, 28 years ago
Guido van Rossum 73bacfc3d7 Add unistd.h for isatty(). 28 years ago
Guido van Rossum 15af20a337 Better #ifdefs for NetBSD, taking into account that at least on netBSD 28 years ago
Guido van Rossum 4cc462e85b It seems obvious that when Py_Finalize() decides that there's nothing 28 years ago
Guido van Rossum 758eec0172 Rewritten PyImport_Cleanup() and its helper, clear_carefully(). They 28 years ago
Guido van Rossum 8f18320270 Last-minute fix for Jim H: don't die after del sys.stdout 28 years ago
Guido van Rossum aa06b0ede5 Plug the most annoying recursive printing problem -- reset '_' to None 28 years ago
Guido van Rossum 7d4f68c15f Oops -- '(' is also a legal start character of a new format... 28 years ago
Guido van Rossum e8c27bb3ea Oops! Should've renamed dos_8x3 to dos-8x3 here, too. 28 years ago
Guido van Rossum 330aafb0c2 For base 10, cast unsigned long to long before testing overflow. 28 years ago
Guido van Rossum d6af46d4ae Need a cast when comparing type object in isinstance() 28 years ago
Guido van Rossum 231a41e708 Add explicit check for correct next character in format at end of 28 years ago
Guido van Rossum 19b55f2d17 Fix subtle bug in cleanup code in PyErr_NormalizeException(), detected 28 years ago
Guido van Rossum 1707aad27c Changed the finalization order again so that the reference count 29 years ago
Guido van Rossum 595d7ba069 Jeff Rush: add definition for S_IFMT for VisualAge C/C++ under OS2. 29 years ago
Guido van Rossum 08052c7bb6 Add the flag RTLD_GLOBAL to the dlopen() options. 29 years ago
Guido van Rossum c425d2f87b Make stdin unbuffered too, when PYTHONUNBUFFERED is specified. 29 years ago
Guido van Rossum f5dd914196 Support type objects in isinstance(). 29 years ago
Guido van Rossum ddc3fb5734 Apply str() to sys.ps1 or sys.ps2 before using them as a prompt, so 29 years ago
Guido van Rossum 8e9ebfd337 os2 patch by Jeff Rush 29 years ago
Guido van Rossum db847bd9ea Plug memory leak in Py_BuildValue when using {...} to construct dictionaries. 29 years ago
Guido van Rossum 2e58ff3ef5 Fix importing of shared libraries from inside packages. 29 years ago