| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix memory leak in exec statement with code object -- the None returned | Guido van Rossum | 1997-11-11 | 1 | -2/+4 |
|
|
* | Undo half of the previous change :-( | Guido van Rossum | 1997-11-04 | 1 | -7/+6 |
|
|
* | Get rid of another reference to _PyImport_Inittab (now a static array) | Guido van Rossum | 1997-11-04 | 1 | -2/+2 |
|
|
* | The warning about thread still having a frame now only happens in | Guido van Rossum | 1997-11-03 | 1 | -1/+1 |
|
|
* | Two independent changes (alas): | Guido van Rossum | 1997-11-03 | 1 | -19/+16 |
|
|
* | New policy for package imports: only a directory containing | Guido van Rossum | 1997-10-31 | 1 | -2/+38 |
|
|
* | Instead of using _PyImport_Inittab[] directly, use the new "official" | Guido van Rossum | 1997-10-31 | 1 | -4/+8 |
|
|
* | Some patches to Lee Busby's fpectl mods that accidentally didn't make it | Guido van Rossum | 1997-10-20 | 1 | -2/+1 |
|
|
* | Don't use sscanf(s, "%x", &c) to parse \xX... escapes; hardcode it. | Guido van Rossum | 1997-10-20 | 1 | -3/+10 |
|
|
* | Shared libraries didn't quite work under AIX because of the change in | Guido van Rossum | 1997-10-10 | 1 | -0/+11 |
|
|
* | Moved mac-specific speedup to a different place (Jack) | Guido van Rossum | 1997-10-08 | 1 | -5/+5 |
|
|
* | Fixed for WITHOUT_COMPLEX compilation (Jack) | Guido van Rossum | 1997-10-08 | 1 | -1/+2 |
|
|
* | New version of PyErr_NewException() that is compatible with -X option. | Guido van Rossum | 1997-10-03 | 1 | -14/+35 |
|
|
* | Initialize Py_UseClassExceptionsFlag to 1. | Guido van Rossum | 1997-10-03 | 1 | -1/+1 |
|
|
* | Remove unreachable "return 1" at end of ensure_fromlist(). | Guido van Rossum | 1997-10-03 | 1 | -1/+1 |
|
|
* | Fix small omission: with all the new code, sys.exit(None) would print | Guido van Rossum | 1997-10-03 | 1 | -0/+2 |
|
|
* | Change PyEval_SaveThread() and PyEval_RestoreThread() to always do the | Guido van Rossum | 1997-09-30 | 1 | -12/+9 |
|
|
* | Fix a bug in this code that made it do the wrong thing when an option | Guido van Rossum | 1997-09-30 | 1 | -1/+4 |
|
|
* | PyErr_NormalizeException(): If the exception's type is a class and the | Barry Warsaw | 1997-09-30 | 1 | -0/+8 |
|
|
* | Get DLL version from a variable. | Guido van Rossum | 1997-09-29 | 1 | -1/+3 |
|
|
* | Release interpreter lock around readline call in [raw_]input(). | Guido van Rossum | 1997-09-26 | 1 | -0/+2 |
|
|
* | Py_Initialize(): move the call to _PyImport_FixupExtension() to after | Barry Warsaw | 1997-09-18 | 1 | -1/+1 |
|
|
* | initerrors(): Eliminate circular reference which was causing a small | Barry Warsaw | 1997-09-18 | 1 | -3/+3 |
|
|
* | [Py_Exc]NumberError => [Py_Exc]ArithmeticError | Barry Warsaw | 1997-09-16 | 1 | -7/+7 |
|
|
* | PyErr_Print(): When printing a class exception, try to dig out the | Barry Warsaw | 1997-09-16 | 1 | -6/+21 |
|
|
* | New API PyErr_NewException(name, base, dict) to create simple new exceptions. | Guido van Rossum | 1997-09-16 | 1 | -0/+31 |
|
|
* | Introduce PyExc_Exception as the conceptual root class for all exceptions. | Guido van Rossum | 1997-09-16 | 1 | -0/+7 |
|
|
* | Added docstrings. Not for the obsolete functions though. | Guido van Rossum | 1997-09-09 | 1 | -6/+46 |
|
|
* | Deleted find_module_in_package and find_module_in_directory -- they | Guido van Rossum | 1997-09-09 | 1 | -53/+0 |
|
|
* | Crrected a flow control error that caused the wrong error message when | Guido van Rossum | 1997-09-09 | 1 | -22/+6 |
|
|
* | Added support for __all__, which should be a list of modules to be | Guido van Rossum | 1997-09-08 | 1 | -3/+16 |
|
|
* | Bugfix: import A.B from inside package was busted by mark_miss optimization. | Guido van Rossum | 1997-09-07 | 1 | -1/+1 |
|
|
* | Significant speedup -- when a submodule imports a global module, add a | Guido van Rossum | 1997-09-06 | 1 | -5/+20 |
|
|
* | Fix reload() for package submodules. | Guido van Rossum | 1997-09-06 | 1 | -2/+24 |
|
|
* | Phase two of package import. "import a.b.c" and all variants now do the | Guido van Rossum | 1997-09-06 | 1 | -17/+299 |
|
|
* | Fixed some details of printing the str() of an exception. This fixes | Guido van Rossum | 1997-09-05 | 1 | -2/+6 |
|
|
* | First part of package support. | Guido van Rossum | 1997-09-05 | 5 | -148/+460 |
|
|
* | Inline PyObject_CallObject (Marc-Andre Lemburg). | Guido van Rossum | 1997-08-30 | 1 | -0/+5 |
|
|
* | Two independent changes (oops): | Guido van Rossum | 1997-08-29 | 1 | -4/+35 |
|
|
* | Removed obsolete exception PyExc_AccessError. | Barry Warsaw | 1997-08-29 | 1 | -43/+171 |
|
|
* | Added Py_UseClassExceptionsFlag, the variable containing the state of | Barry Warsaw | 1997-08-29 | 1 | -5/+106 |
|
|
* | PyErr_NoMemory(): If the pre-instantiated memory exception is non-null | Barry Warsaw | 1997-08-29 | 1 | -1/+9 |
|
|
* | Cprrect stuoid tyops -- was comparing variabes with themselves because | Guido van Rossum | 1997-08-29 | 1 | -3/+3 |
|
|
* | eval_code2(), set_exc_info(): Call PyErr_NormalizeException() the | Barry Warsaw | 1997-08-28 | 1 | -2/+2 |
|
|
* | PyErr_Print(): Use PyErr_GivenExceptionMatches() instead of pointer | Barry Warsaw | 1997-08-26 | 1 | -2/+4 |
|
|
* | unpack_sequence(): In finally clause, watch out for Py_DECREF | Barry Warsaw | 1997-08-25 | 1 | -2/+2 |
|
|
* | eval_code2(): collapsed the implementations of UNPACK_TUPLE and | Barry Warsaw | 1997-08-25 | 1 | -33/+74 |
|
|
* | cmp_exception gets promoted (essentially) to the C API function | Barry Warsaw | 1997-08-22 | 1 | -59/+10 |
|
|
* | Three new C API functions: | Barry Warsaw | 1997-08-22 | 1 | -0/+105 |
|
|
* | Two new built-in functions: issubclass() and isinstance(). Both take | Barry Warsaw | 1997-08-22 | 1 | -5/+59 |
|
|