- 9c0afe5 Fix a curious bug: statements like "import sys.time" would succeed, by Guido van Rossum · 27 years ago
- 6b07787 Remove use of RTLD_GLOBAL. by Guido van Rossum · 27 years ago
- fccfe89 Another veeeeeery old patch... by Guido van Rossum · 27 years ago
- 859b16c In debug mode on MS Windows, DLLs are called foo_d.pyd or foo_d.dll. by Guido van Rossum · 27 years ago
- 532246e Improved version of patch for HPUX from David Arnold. by Guido van Rossum · 27 years ago
- 09cae1f New APIs for embedding applications that want to add their own entries by Guido van Rossum · 27 years ago
- ba7cc0c Remove unnecessary PyErr_Clear(). by Guido van Rossum · 27 years ago
- 234e260 Since PyDict_GetItem() can't raise an exception any more, there's no by Guido van Rossum · 27 years ago
- 2e4c899 DELETE_FAST should issue an exception when the local variable is undefined. by Guido van Rossum · 27 years ago
- a890e68 New APIs to write to sys.stdout or sys.stderr using a printf-like interface. by Guido van Rossum · 27 years ago
- 1e162d3 Implement round() slightly different, so that for negative ndigits no by Guido van Rossum · 27 years ago
- 89df70b Support HPUX 10.20 DCE threads. by Guido van Rossum · 27 years ago
- a937d14 Fred's right -- we need PyList_SET_ITEM(). by Guido van Rossum · 27 years ago
- 507338e In-line the code in range() to set the list items; there's really no by Guido van Rossum · 27 years ago
- 1f74016 Support for OpenBSD :-( by Guido van Rossum · 27 years ago
- 111c20b Reject empty module names -- otherwise __import__("") does something weird! by Guido van Rossum · 27 years ago
- cecadc4 Move #include <sys/param.h> to before osdefs.h (Donn Cave). by Guido van Rossum · 27 years ago
- 8766a77 Comment out a label on an #endif. by Guido van Rossum · 27 years ago
- 730806d Make new gcc -Wall happy by Guido van Rossum · 27 years ago
- 39b0f89 Address warnings issued by the MSVC++ compiler by Guido van Rossum · 27 years ago
- ede0439 /* An extension mechanism to store arbitrary additional per-thread state. by Guido van Rossum · 27 years ago
- 560e8ad Translate E_INDENT to the clearest error message I can think of. by Guido van Rossum · 27 years ago
- d295f12 Make first raise argument optional by Guido van Rossum · 27 years ago
- bf02fb2 Make sure that the message "Error in sys.exitfunc:" goes to sys.stderr by Guido van Rossum · 27 years ago
- 6deac7a Make calls into ../PC/frozen_dllmain.c on MS_WIN32. by Guido van Rossum · 27 years ago
- f015e18 Add primitive test for frozen package. by Guido van Rossum · 27 years ago
- 8f74571 Use a faster way to check for null bytes in the string argument for by Guido van Rossum · 27 years ago
- a5568d3 Support for frozen packages, matching the revamped Tools/freeze. by Guido van Rossum · 27 years ago
- d65911b Oops -- overuse of dabbrev-expand introduced a strange bug, where by Guido van Rossum · 27 years ago
- 75acc9c Add a single Python-wide (!) lock on import. Only one thread at a by Guido van Rossum · 27 years ago
- 0829c75 Fix the handling of errors in Py_FlushLine() in a few places. by Guido van Rossum · 27 years ago
- 05f9dce Moved clear_carefully() to _PyModule_Clear() in moduleobject.c by Guido van Rossum · 27 years ago
- bd36dba Make backup copies of stdin, stdout, stderr as __stdin__, __stdout__, by Guido van Rossum · 27 years ago
- aeca79b Small patches to the DJGPP version of check_case(). by Guido van Rossum · 27 years ago
- 4d1b3b9 Added DJGPP version of check_case(), by Pit Scrorpion (Hans Nowak). by Guido van Rossum · 27 years ago
- 0980bd9 Add case checking feature on import. by Guido van Rossum · 27 years ago
- e32bf6e Added PyImport_ExecCodeModuleEx(), which adds an extra parameter to by Guido van Rossum · 27 years ago
- 919b83d Set Py_FrozenFlag, to suppress error messages from getpath.c. by Guido van Rossum · 27 years ago
- a61691e Ehm, three unrelated changes. by Guido van Rossum · 27 years ago
- a0fec2b Two more refinements of the cleanup process. by Guido van Rossum · 27 years ago
- 42e8e5d Protect PyErr_Format format string argument from overflow. by Guido van Rossum · 27 years ago
- 0d6b49e Protect PyErr_Format format string argument from overflow (ironically, by Guido van Rossum · 27 years ago
- 73bacfc Add unistd.h for isatty(). by Guido van Rossum · 27 years ago
- 15af20a Better #ifdefs for NetBSD, taking into account that at least on netBSD by Guido van Rossum · 27 years ago
- 4cc462e It seems obvious that when Py_Finalize() decides that there's nothing by Guido van Rossum · 27 years ago
- 758eec0 Rewritten PyImport_Cleanup() and its helper, clear_carefully(). They by Guido van Rossum · 27 years ago
- 8f18320 Last-minute fix for Jim H: don't die after del sys.stdout by Guido van Rossum · 27 years ago
- aa06b0e Plug the most annoying recursive printing problem -- reset '_' to None by Guido van Rossum · 27 years ago
- 7d4f68c Oops -- '(' is also a legal start character of a new format... by Guido van Rossum · 27 years ago
- e8c27bb Oops! Should've renamed dos_8x3 to dos-8x3 here, too. by Guido van Rossum · 27 years ago
- 330aafb For base 10, cast unsigned long to long before testing overflow. by Guido van Rossum · 27 years ago
- d6af46d Need a cast when comparing type object in isinstance() by Guido van Rossum · 27 years ago
- 231a41e Add explicit check for correct next character in format at end of by Guido van Rossum · 27 years ago
- 19b55f2 Fix subtle bug in cleanup code in PyErr_NormalizeException(), detected by Guido van Rossum · 27 years ago
- 1707aad Changed the finalization order again so that the reference count by Guido van Rossum · 27 years ago
- 595d7ba Jeff Rush: add definition for S_IFMT for VisualAge C/C++ under OS2. by Guido van Rossum · 27 years ago
- 08052c7 Add the flag RTLD_GLOBAL to the dlopen() options. by Guido van Rossum · 27 years ago
- c425d2f Make stdin unbuffered too, when PYTHONUNBUFFERED is specified. by Guido van Rossum · 27 years ago
- f5dd914 Support type objects in isinstance(). by Guido van Rossum · 27 years ago
- ddc3fb5 Apply str() to sys.ps1 or sys.ps2 before using them as a prompt, so by Guido van Rossum · 27 years ago
- 8e9ebfd os2 patch by Jeff Rush by Guido van Rossum · 27 years ago
- db847bd Plug memory leak in Py_BuildValue when using {...} to construct dictionaries. by Guido van Rossum · 27 years ago
- 2e58ff3 Fix importing of shared libraries from inside packages. by Guido van Rossum · 27 years ago
- 858cb73 Two changes (here we go again :-( ). by Guido van Rossum · 27 years ago
- df9db1e Give more detailed error message when the argument count isn't right. by Guido van Rossum · 27 years ago
- dfed725 Fix memory leak in exec statement with code object -- the None returned by Guido van Rossum · 27 years ago
- 4a1f39a Undo half of the previous change :-( by Guido van Rossum · 27 years ago
- 25c649f Get rid of another reference to _PyImport_Inittab (now a static array) by Guido van Rossum · 27 years ago
- 22348dc The warning about thread still having a frame now only happens in verbose mode. by Guido van Rossum · 27 years ago
- 3a44e1b Two independent changes (alas): by Guido van Rossum · 27 years ago
- 197346f New policy for package imports: only a directory containing by Guido van Rossum · 27 years ago
- 771c6c8 Instead of using _PyImport_Inittab[] directly, use the new "official" by Guido van Rossum · 27 years ago
- e85da65 Some patches to Lee Busby's fpectl mods that accidentally didn't make it by Guido van Rossum · 27 years ago
- ed1100f Don't use sscanf(s, "%x", &c) to parse \xX... escapes; hardcode it. by Guido van Rossum · 27 years ago
- 3b31cd2 Shared libraries didn't quite work under AIX because of the change in by Guido van Rossum · 27 years ago
- 9a61dc9 Moved mac-specific speedup to a different place (Jack) by Guido van Rossum · 27 years ago
- ac1fc95 Fixed for WITHOUT_COMPLEX compilation (Jack) by Guido van Rossum · 27 years ago
- 2ac650f New version of PyErr_NewException() that is compatible with -X option. by Guido van Rossum · 27 years ago
- 999e5e9 Initialize Py_UseClassExceptionsFlag to 1. by Guido van Rossum · 27 years ago
- a7f2e81 Remove unreachable "return 1" at end of ensure_fromlist(). by Guido van Rossum · 27 years ago
- aa9606f Fix small omission: with all the new code, sys.exit(None) would print by Guido van Rossum · 27 years ago
- b74eca9 Change PyEval_SaveThread() and PyEval_RestoreThread() to always do the by Guido van Rossum · 27 years ago
- b4102bf Fix a bug in this code that made it do the wrong thing when an option by Guido van Rossum · 27 years ago
- 3a74993 PyErr_NormalizeException(): If the exception's type is a class and the by Barry Warsaw · 27 years ago
- 6c1e5f2 Get DLL version from a variable. by Guido van Rossum · 27 years ago
- ee81af8 Release interpreter lock around readline call in [raw_]input(). by Guido van Rossum · 27 years ago
- 963b871 Py_Initialize(): move the call to _PyImport_FixupExtension() to after by Barry Warsaw · 27 years ago
- b01a7fa initerrors(): Eliminate circular reference which was causing a small by Barry Warsaw · 27 years ago
- 412cdc2 [Py_Exc]NumberError => [Py_Exc]ArithmeticError by Barry Warsaw · 27 years ago
- 2f5f6a2 PyErr_Print(): When printing a class exception, try to dig out the by Barry Warsaw · 27 years ago
- 7617e05 New API PyErr_NewException(name, base, dict) to create simple new exceptions. by Guido van Rossum · 27 years ago
- 0474832 Introduce PyExc_Exception as the conceptual root class for all exceptions. by Guido van Rossum · 27 years ago
- 0207e6d Added docstrings. Not for the obsolete functions though. by Guido van Rossum · 27 years ago
- c172f26 Deleted find_module_in_package and find_module_in_directory -- they by Guido van Rossum · 27 years ago
- a86f77d Crrected a flow control error that caused the wrong error message when by Guido van Rossum · 27 years ago
- 9905ef9 Added support for __all__, which should be a list of modules to be by Guido van Rossum · 27 years ago
- 0c81945 Bugfix: import A.B from inside package was busted by mark_miss optimization. by Guido van Rossum · 27 years ago
- f5f5fdb Significant speedup -- when a submodule imports a global module, add a by Guido van Rossum · 27 years ago
- 222ef56 Fix reload() for package submodules. by Guido van Rossum · 27 years ago
- 17fc85f Phase two of package import. "import a.b.c" and all variants now do the by Guido van Rossum · 27 years ago