summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Apply str() to sys.ps1 or sys.ps2 before using them as a prompt, soGuido van Rossum1997-11-251-16/+14
* os2 patch by Jeff RushGuido van Rossum1997-11-223-2/+44
* Plug memory leak in Py_BuildValue when using {...} to construct dictionaries.Guido van Rossum1997-11-201-3/+5
* Fix importing of shared libraries from inside packages.Guido van Rossum1997-11-192-3/+26
* Two changes (here we go again :-( ).Guido van Rossum1997-11-191-35/+3
* Give more detailed error message when the argument count isn't right.Guido van Rossum1997-11-191-4/+6
* Fix memory leak in exec statement with code object -- the None returnedGuido van Rossum1997-11-111-2/+4
* Undo half of the previous change :-(Guido van Rossum1997-11-041-7/+6
* Get rid of another reference to _PyImport_Inittab (now a static array)Guido van Rossum1997-11-041-2/+2
* The warning about thread still having a frame now only happens inGuido van Rossum1997-11-031-1/+1
* Two independent changes (alas):Guido van Rossum1997-11-031-19/+16
* New policy for package imports: only a directory containingGuido van Rossum1997-10-311-2/+38
* Instead of using _PyImport_Inittab[] directly, use the new "official"Guido van Rossum1997-10-311-4/+8
* Some patches to Lee Busby's fpectl mods that accidentally didn't make itGuido van Rossum1997-10-201-2/+1
* Don't use sscanf(s, "%x", &c) to parse \xX... escapes; hardcode it.Guido van Rossum1997-10-201-3/+10
* Shared libraries didn't quite work under AIX because of the change inGuido van Rossum1997-10-101-0/+11
* Moved mac-specific speedup to a different place (Jack)Guido van Rossum1997-10-081-5/+5
* Fixed for WITHOUT_COMPLEX compilation (Jack)Guido van Rossum1997-10-081-1/+2
* New version of PyErr_NewException() that is compatible with -X option.Guido van Rossum1997-10-031-14/+35
* Initialize Py_UseClassExceptionsFlag to 1.Guido van Rossum1997-10-031-1/+1
* Remove unreachable "return 1" at end of ensure_fromlist().Guido van Rossum1997-10-031-1/+1
* Fix small omission: with all the new code, sys.exit(None) would printGuido van Rossum1997-10-031-0/+2
* Change PyEval_SaveThread() and PyEval_RestoreThread() to always do theGuido van Rossum1997-09-301-12/+9
* Fix a bug in this code that made it do the wrong thing when an optionGuido van Rossum1997-09-301-1/+4
* PyErr_NormalizeException(): If the exception's type is a class and theBarry Warsaw1997-09-301-0/+8
* Get DLL version from a variable.Guido van Rossum1997-09-291-1/+3
* Release interpreter lock around readline call in [raw_]input().Guido van Rossum1997-09-261-0/+2
* Py_Initialize(): move the call to _PyImport_FixupExtension() to afterBarry Warsaw1997-09-181-1/+1
* initerrors(): Eliminate circular reference which was causing a smallBarry Warsaw1997-09-181-3/+3
* [Py_Exc]NumberError => [Py_Exc]ArithmeticErrorBarry Warsaw1997-09-161-7/+7
* PyErr_Print(): When printing a class exception, try to dig out theBarry Warsaw1997-09-161-6/+21
* New API PyErr_NewException(name, base, dict) to create simple new exceptions.Guido van Rossum1997-09-161-0/+31
* Introduce PyExc_Exception as the conceptual root class for all exceptions.Guido van Rossum1997-09-161-0/+7
* Added docstrings. Not for the obsolete functions though.Guido van Rossum1997-09-091-6/+46
* Deleted find_module_in_package and find_module_in_directory -- theyGuido van Rossum1997-09-091-53/+0
* Crrected a flow control error that caused the wrong error message whenGuido van Rossum1997-09-091-22/+6
* Added support for __all__, which should be a list of modules to beGuido van Rossum1997-09-081-3/+16
* Bugfix: import A.B from inside package was busted by mark_miss optimization.Guido van Rossum1997-09-071-1/+1
* Significant speedup -- when a submodule imports a global module, add aGuido van Rossum1997-09-061-5/+20
* Fix reload() for package submodules.Guido van Rossum1997-09-061-2/+24
* Phase two of package import. "import a.b.c" and all variants now do theGuido van Rossum1997-09-061-17/+299
* Fixed some details of printing the str() of an exception. This fixesGuido van Rossum1997-09-051-2/+6
* First part of package support.Guido van Rossum1997-09-055-148/+460
* Inline PyObject_CallObject (Marc-Andre Lemburg).Guido van Rossum1997-08-301-0/+5
* Two independent changes (oops):Guido van Rossum1997-08-291-4/+35
* Removed obsolete exception PyExc_AccessError.Barry Warsaw1997-08-291-43/+171
* Added Py_UseClassExceptionsFlag, the variable containing the state ofBarry Warsaw1997-08-291-5/+106
* PyErr_NoMemory(): If the pre-instantiated memory exception is non-nullBarry Warsaw1997-08-291-1/+9
* Cprrect stuoid tyops -- was comparing variabes with themselves becauseGuido van Rossum1997-08-291-3/+3
* eval_code2(), set_exc_info(): Call PyErr_NormalizeException() theBarry Warsaw1997-08-281-2/+2