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
*
Complete the xrange-simplification checkins: call PyRange_New() with
Guido van Rossum
2001-07-05
1
-1/+1
*
SF bug #438295: [Windows] __init__.py cause strange behavior
Tim Peters
2001-07-05
1
-11/+28
*
This change adjusts the profiling/tracing support so that the common
Fred Drake
2001-07-03
2
-47/+66
*
Another "if 0:" hack, this time to complain about otherwise invisible
Tim Peters
2001-06-28
1
-2/+61
*
Revise the interface to the profiling and tracing support for the
Fred Drake
2001-06-27
3
-151/+183
*
use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZE
Fredrik Lundh
2001-06-27
1
-1/+1
*
Encode surrogates in UTF-8 even for a wide Py_UNICODE.
Martin v. Löwis
2001-06-27
1
-0/+4
*
Cosmetic changes to MvL's change to unichr():
Guido van Rossum
2001-06-26
1
-4/+6
*
gen_getattr: make the gi_running and gi_frame members discoverable (but
Tim Peters
2001-06-26
1
-4/+17
*
Support using UCS-4 as the Py_UNICODE type:
Martin v. Löwis
2001-06-26
1
-0/+4
*
Add "gi_" (generator-iterator) prefix to names of genobject members.
Tim Peters
2001-06-26
1
-9/+13
*
more unicode tweaks: make unichr(0xdddddddd) behave like u"\Udddddddd"
Fredrik Lundh
2001-06-26
1
-6/+17
*
experimental UCS-4 support: don't assume that MS_WIN32 implies
Fredrik Lundh
2001-06-26
1
-1/+1
*
SF bug #436207: "if 0: yield x" is ignored.
Tim Peters
2001-06-26
1
-1/+33
*
Change the semantics of "return" in generators, as discussed on the
Tim Peters
2001-06-23
2
-25/+17
*
gen_iternext(): Don't assume that the current thread state's frame is
Tim Peters
2001-06-23
1
-2/+2
*
PyFrameObject: rename f_stackbottom to f_stacktop, since it points to
Tim Peters
2001-06-23
1
-5/+5
*
Disallow 'yield' in a 'try' block when there's a 'finally' clause.
Tim Peters
2001-06-23
1
-0/+10
*
Teach the UNPACK_SEQUENCE opcode how to tease an iterable object into
Tim Peters
2001-06-21
1
-32/+38
*
Try to avoid creating reference cycles involving generators. Only keep a
Neil Schemenauer
2001-06-21
1
-14/+27
*
gen_iternext(): repair subtle refcount problem.
Tim Peters
2001-06-20
1
-0/+5
*
Remove unused code.
Neil Schemenauer
2001-06-20
1
-9/+0
*
Merging the gen-branch into the main line, at Guido's direction. Yay!
Tim Peters
2001-06-18
5
-924/+1156
*
Instead of initializing & interning the strings passed to the profile
Fred Drake
2001-06-16
2
-26/+48
*
SF bug 433228: repr(list) woes when len(list) big
Tim Peters
2001-06-16
1
-2/+3
*
Temporarily disable the message to stderr. Jeremy will know what to do
Marc-André Lemburg
2001-06-13
1
-1/+3
*
SF bug 430991: wrong co_lnotab
Tim Peters
2001-06-09
1
-10/+54
*
call_trace(): Add an additional parameter -- pointer to a PyObject*
Fred Drake
2001-06-08
1
-13/+36
*
PyErr_Occurred(): Use PyThreadState_GET(), which saves a tiny function call
Tim Peters
2001-05-30
1
-1/+1
*
Change cascaded if stmts to switch stmt in vgetargs1().
Jeremy Hylton
2001-05-29
1
-19/+25
*
Internal refactoring of convertsimple() and friends.
Jeremy Hylton
2001-05-29
1
-515/+514
*
Fix bug reported by Tim Peters on python-dev:
Jeremy Hylton
2001-05-29
1
-6/+5
*
Cruft cleanup: Removed the unused last_is_sticky argument from the internal
Tim Peters
2001-05-28
1
-1/+1
*
SF bug #425836: Reference leak in filter().
Tim Peters
2001-05-21
1
-0/+1
*
Fix whitespace botch.
Fred Drake
2001-05-18
1
-1/+1
*
vgetargs1() and vgetargskeywords(): Replace uses of PyTuple_Size() and
Jeremy Hylton
2001-05-18
1
-10/+8
*
Add a second special case to the inline function call code in eval_code2().
Jeremy Hylton
2001-05-18
1
-1/+7
*
Fix the Py_FileSystemDefaultEncoding checkin - declare the variable in a file...
Mark Hammond
2001-05-14
1
-1/+8
*
Add support for Windows using "mbcs" as the default Unicode encoding when dea...
Mark Hammond
2001-05-13
2
-3/+7
*
SF patch #416249, from Mark Favas: 2.1c1 compile: unused vrbl cleanup
Tim Peters
2001-05-09
1
-2/+0
*
Always pass a full path name to LoadLibraryEx(). Fixes some Windows 9x probl...
Mark Hammond
2001-05-09
1
-17/+14
*
SF bug #422177: Results from .pyc differs from .py
Tim Peters
2001-05-08
1
-5/+3
*
Several small changes. Mostly reformatting, adding parens.
Jeremy Hylton
2001-05-08
1
-10/+11
*
Generalize zip() to work with iterators.
Tim Peters
2001-05-06
1
-18/+44
*
Make PyIter_Next() a little smarter (wrt its knowledge of iterator
Tim Peters
2001-05-05
2
-52/+17
*
Generalize reduce() to work with iterators.
Tim Peters
2001-05-04
1
-12/+19
*
Generalize map() to work with iterators.
Tim Peters
2001-05-03
1
-66/+68
*
Generalize max(seq) and min(seq) to work with iterators.
Tim Peters
2001-05-03
1
-15/+24
*
Added new parser markers 'et' and 'et#' which do not recode string
Marc-André Lemburg
2001-05-02
1
-4/+20
*
Generalize filter(f, seq) to work with iterators. This also generalizes
Tim Peters
2001-05-02
1
-40/+54
[next]