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
...
*
This is my patch
Michael W. Hudson
2002-08-15
5
-78/+199
*
provide less mysterious error messages when seeing end-of-line in
Skip Montanaro
2002-08-15
1
-0/+6
*
Py_InitModule4(): Accept NULL for the 'methods' argument. This makes
Fred Drake
2002-08-14
1
-14/+16
*
Added a FutureWarning for constructs that will change semantically in
Barry Warsaw
2002-08-14
2
-2/+10
*
Patch #550192: Set softspace to 0 in raw_input().
Martin v. Löwis
2002-08-14
1
-18/+22
*
Patch #505705: Remove eval in pickle and cPickle.
Martin v. Löwis
2002-08-14
1
-98/+5
*
Use PyErr_WarnExplicit() to warn about hex/oct constants, so the
Guido van Rossum
2002-08-12
1
-4/+9
*
Reset errno to zero after calling PyErr_Warn(). It can potentially do
Guido van Rossum
2002-08-11
1
-0/+1
*
Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level.
Marc-André Lemburg
2002-08-11
1
-34/+1
*
Implement stage B0 of PEP 237: add warnings for operations that
Guido van Rossum
2002-08-11
1
-1/+9
*
Add weakref support generator-iterators.
Fred Drake
2002-08-09
1
-1/+7
*
Use Py_FatalError instead of abort.
Martin v. Löwis
2002-08-07
1
-2/+3
*
Fix PEP 263 code --without-unicode. Fixes #591943.
Martin v. Löwis
2002-08-07
1
-0/+10
*
get rid of GETNAMEV macro - use GETITEM directly
Skip Montanaro
2002-08-06
1
-12/+11
*
small speedup for constant and name access
Skip Montanaro
2002-08-04
1
-3/+6
*
Patch #534304: Implement phase 1 of PEP 263.
Martin v. Löwis
2002-08-04
3
-14/+143
*
SF patch #578297:
Andrew MacIntyre
2002-08-04
1
-7/+7
*
Added one call to Py_Main(), for OSX framework builds only, that will get the
Jack Jansen
2002-08-02
1
-0/+88
*
Whitespace normalization.
Thomas Heller
2002-07-30
1
-4/+4
*
Fix SF 588452: debug build crashes on marshal.dumps([128] * 1000).
Thomas Heller
2002-07-30
1
-6/+6
*
New functions for extension writers on Windows:
Thomas Heller
2002-07-29
1
-3/+17
*
Excise DL_IMPORT/EXPORT from object.h, and related files. This patch
Mark Hammond
2002-07-29
1
-2/+2
*
Patch #554716: Use __va_copy where available.
Martin v. Löwis
2002-07-28
2
-0/+8
*
remove spurious SET_LINENO from com_list_for and com_list_if. All they do
Skip Montanaro
2002-07-25
1
-2/+0
*
Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT.
Mark Hammond
2002-07-19
1
-5/+0
*
Fix bug [ 549731 ] Unicode encoders appears to leak references.
Mark Hammond
2002-07-18
1
-4/+10
*
SF patch 552161 - Py_AddPendingCall doesn't unlock on fail (Daniel
Guido van Rossum
2002-07-17
1
-1/+3
*
Removed more stray instances of statichere, but left _sre.c alone.
Tim Peters
2002-07-17
1
-1/+1
*
staticforward bites the dust.
Jeremy Hylton
2002-07-17
1
-1/+1
*
There's no need for generators to define an explicit next() method.
Tim Peters
2002-07-17
1
-22/+1
*
SF patch # 580411, move frame macros from frameobject.h into ceval.c
Neal Norwitz
2002-07-14
1
-3/+10
*
Don't stomp on an exception set by PyCell_Get()
Jeremy Hylton
2002-07-11
1
-1/+4
*
_Py_AskYesNo(): Removed this function. It was defined only in a
Tim Peters
2002-07-09
1
-20/+0
*
Fix SF Bug 564931: compile() traceback must include filename.
Thomas Heller
2002-07-09
1
-2/+27
*
The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added
Tim Peters
2002-07-09
1
-1/+1
*
Rearranged and added comments to object.h, to clarify many things
Tim Peters
2002-07-07
1
-2/+3
*
Patch #569753: Remove support for WIN16.
Martin v. Löwis
2002-06-30
7
-49/+18
*
Got rid of an extraneous semicolon.
Jack Jansen
2002-06-26
1
-1/+1
*
Silence compiler warning
Jeremy Hylton
2002-06-25
1
-1/+1
*
SF 569257 -- Name mangle double underscored variable names in __slots__.
Raymond Hettinger
2002-06-20
1
-6/+6
*
Fix the docstring for sys.getrefcount().
Fred Drake
2002-06-20
1
-2/+3
*
PyModule_AddObject(): Added missing exceptions.
Fred Drake
2002-06-17
1
-7/+14
*
Apply diff2.txt from SF patch http://www.python.org/sf/566999
Walter Dörwald
2002-06-17
1
-7/+29
*
SF patch 568629 by Oren Tirosh: types made callable.
Guido van Rossum
2002-06-14
3
-67/+67
*
Now FOR_LOOP is gone, loop_subscript can go too.
Michael W. Hudson
2002-06-14
1
-19/+0
*
Fix SF bug # 561858 Assertion with very long lists
Neal Norwitz
2002-06-14
1
-7/+7
*
Fix SF bug # 561858 Assertion with very long lists
Neal Norwitz
2002-06-14
2
-12/+12
*
Patch #568124: Add doc string macros.
Martin v. Löwis
2002-06-13
3
-211/+171
*
The opcode FOR_LOOP no longer exists.
Guido van Rossum
2002-06-13
1
-31/+0
*
SF bug 567538: Generator can crash the interpreter (Finn Bock).
Guido van Rossum
2002-06-12
1
-2/+2
[prev]
[next]