index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
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
*
Reverse the search order for the Don Beaudry hook so that the first
Guido van Rossum
1997-08-22
1
-4/+3
*
Added new Py_IsInitalized() API function to test the 'initialized' flag.
Guido van Rossum
1997-08-22
1
-0/+8
*
Added missing newline to warning msg
Guido van Rossum
1997-08-21
1
-1/+1
*
Use a counter instead of a Boolean to check for initialized; n calls
Guido van Rossum
1997-08-20
1
-5/+5
*
set sharedlib extensions properly for NeXT (Ted Horst)
Guido van Rossum
1997-08-16
1
-0/+2
*
Keep gcc -Wall happy
Guido van Rossum
1997-08-15
2
-3/+2
*
Use _beginthread() and _endthread() in favor of CreateThread() and
Guido van Rossum
1997-08-14
1
-16/+8
*
Added Jim Fulton's PyImport_Import(), which calls whatever
Guido van Rossum
1997-08-14
1
-0/+78
*
Use string interning and caching to get speedups on the mac (Jack).
Guido van Rossum
1997-08-12
1
-1/+17
*
Use strerror on the mac if using MSL (Jack).
Guido van Rossum
1997-08-12
1
-6/+0
*
Remove unised variable
Guido van Rossum
1997-08-07
1
-1/+0
*
Merge Py_Cleanup() into Py_Finalize(). Call the various small Fini()
Guido van Rossum
1997-08-05
1
-36/+43
*
New rules for deleting modules. Rather than having an elaborate
Guido van Rossum
1997-08-05
1
-1/+29
*
Renamed a local label that was accidentally grandly renamed to
Guido van Rossum
1997-08-05
1
-3/+3
*
The last of the mass checkins for separate (sub)interpreters.
Guido van Rossum
1997-08-02
7
-218/+542
*
Removed fatal errors from Py_Initmodule4() (and thus from
Guido van Rossum
1997-08-02
1
-12/+12
[next]