summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* jcompile(): inherit the CO_GENERATOR_ALLOWED flag from the 'base'Guido van Rossum2001-07-161-0/+1
* PyRun_StringFlags(): forgot to pass the flags on toGuido van Rossum2001-07-161-1/+4
* Ugly. A pile of new xxxFlags() functions, to communicate to the parserTim Peters2001-07-161-9/+30
* future.c: insert a cosmetic space.Tim Peters2001-07-162-2/+2
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-165-29/+54
* Preliminary support for "from __future__ import generators" to enableGuido van Rossum2001-07-151-0/+2
* GC for generator objects.Neil Schemenauer2001-07-121-4/+12
* Re-add 'advanced' xrange features, adding DeprecationWarnings as discussedThomas Wouters2001-07-091-1/+1
* Complete the xrange-simplification checkins: call PyRange_New() withGuido van Rossum2001-07-051-1/+1
* SF bug #438295: [Windows] __init__.py cause strange behaviorTim Peters2001-07-051-11/+28
* This change adjusts the profiling/tracing support so that the commonFred Drake2001-07-032-47/+66
* Another "if 0:" hack, this time to complain about otherwise invisibleTim Peters2001-06-281-2/+61
* Revise the interface to the profiling and tracing support for theFred Drake2001-06-273-151/+183
* use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZEFredrik Lundh2001-06-271-1/+1
* Encode surrogates in UTF-8 even for a wide Py_UNICODE.Martin v. Löwis2001-06-271-0/+4
* Cosmetic changes to MvL's change to unichr():Guido van Rossum2001-06-261-4/+6
* gen_getattr: make the gi_running and gi_frame members discoverable (butTim Peters2001-06-261-4/+17
* Support using UCS-4 as the Py_UNICODE type:Martin v. Löwis2001-06-261-0/+4
* Add "gi_" (generator-iterator) prefix to names of genobject members.Tim Peters2001-06-261-9/+13
* more unicode tweaks: make unichr(0xdddddddd) behave like u"\Udddddddd"Fredrik Lundh2001-06-261-6/+17
* experimental UCS-4 support: don't assume that MS_WIN32 impliesFredrik Lundh2001-06-261-1/+1
* SF bug #436207: "if 0: yield x" is ignored.Tim Peters2001-06-261-1/+33
* Change the semantics of "return" in generators, as discussed on theTim Peters2001-06-232-25/+17
* gen_iternext(): Don't assume that the current thread state's frame isTim Peters2001-06-231-2/+2
* PyFrameObject: rename f_stackbottom to f_stacktop, since it points toTim Peters2001-06-231-5/+5
* Disallow 'yield' in a 'try' block when there's a 'finally' clause.Tim Peters2001-06-231-0/+10
* Teach the UNPACK_SEQUENCE opcode how to tease an iterable object intoTim Peters2001-06-211-32/+38
* Try to avoid creating reference cycles involving generators. Only keep aNeil Schemenauer2001-06-211-14/+27
* gen_iternext(): repair subtle refcount problem.Tim Peters2001-06-201-0/+5
* Remove unused code.Neil Schemenauer2001-06-201-9/+0
* Merging the gen-branch into the main line, at Guido's direction. Yay!Tim Peters2001-06-185-924/+1156
* Instead of initializing & interning the strings passed to the profileFred Drake2001-06-162-26/+48
* SF bug 433228: repr(list) woes when len(list) bigTim Peters2001-06-161-2/+3
* Temporarily disable the message to stderr. Jeremy will know what to doMarc-André Lemburg2001-06-131-1/+3
* SF bug 430991: wrong co_lnotabTim Peters2001-06-091-10/+54
* call_trace(): Add an additional parameter -- pointer to a PyObject*Fred Drake2001-06-081-13/+36
* PyErr_Occurred(): Use PyThreadState_GET(), which saves a tiny function callTim Peters2001-05-301-1/+1
* Change cascaded if stmts to switch stmt in vgetargs1().Jeremy Hylton2001-05-291-19/+25
* Internal refactoring of convertsimple() and friends.Jeremy Hylton2001-05-291-515/+514
* Fix bug reported by Tim Peters on python-dev:Jeremy Hylton2001-05-291-6/+5
* Cruft cleanup: Removed the unused last_is_sticky argument from the internalTim Peters2001-05-281-1/+1
* SF bug #425836: Reference leak in filter().Tim Peters2001-05-211-0/+1
* Fix whitespace botch.Fred Drake2001-05-181-1/+1
* vgetargs1() and vgetargskeywords(): Replace uses of PyTuple_Size() andJeremy Hylton2001-05-181-10/+8
* Add a second special case to the inline function call code in eval_code2().Jeremy Hylton2001-05-181-1/+7
* Fix the Py_FileSystemDefaultEncoding checkin - declare the variable in a file...Mark Hammond2001-05-141-1/+8
* Add support for Windows using "mbcs" as the default Unicode encoding when dea...Mark Hammond2001-05-132-3/+7
* SF patch #416249, from Mark Favas: 2.1c1 compile: unused vrbl cleanupTim Peters2001-05-091-2/+0
* Always pass a full path name to LoadLibraryEx(). Fixes some Windows 9x probl...Mark Hammond2001-05-091-17/+14
* SF bug #422177: Results from .pyc differs from .pyTim Peters2001-05-081-5/+3