summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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
* Several small changes. Mostly reformatting, adding parens.Jeremy Hylton2001-05-081-10/+11
* Generalize zip() to work with iterators.Tim Peters2001-05-061-18/+44
* Make PyIter_Next() a little smarter (wrt its knowledge of iteratorTim Peters2001-05-052-52/+17
* Generalize reduce() to work with iterators.Tim Peters2001-05-041-12/+19
* Generalize map() to work with iterators.Tim Peters2001-05-031-66/+68
* Generalize max(seq) and min(seq) to work with iterators.Tim Peters2001-05-031-15/+24
* Added new parser markers 'et' and 'et#' which do not recode stringMarc-André Lemburg2001-05-021-4/+20
* Generalize filter(f, seq) to work with iterators. This also generalizesTim Peters2001-05-021-40/+54
* SF bug #417093: Case sensitive import: dir and .py file w/ same nameTim Peters2001-04-291-8/+5
* Fix buglet reported on c.l.py: map(fnc, file.xreadlines()) blows up.Tim Peters2001-04-281-9/+19
* Fix 2.1 nested scopes crash reported by Evan SimpsonJeremy Hylton2001-04-271-6/+20
* improved error message-- names the type of the unexpected objectJeremy Hylton2001-04-271-2/+3
* Mondo changes to the iterator stuff, without changing how Python codeGuido van Rossum2001-04-231-27/+16
* SF but #417587: compiler warnings compiling 2.1.Tim Peters2001-04-211-1/+0
* Iterators phase 1. This comprises:Guido van Rossum2001-04-205-19/+82
* Make some private symbols static.Guido van Rossum2001-04-142-3/+4
* split long lineJeremy Hylton2001-04-131-1/+2
* Change error message raised when free variable is not yet bound. ItJeremy Hylton2001-04-131-10/+16
* Patch by Ping (SF bug 415879, Exception.__init__() causes segfault):Guido van Rossum2001-04-131-3/+2
* Because this code was derived from Python 1.6.1 (amongst others), theGuido van Rossum2001-04-121-1/+1
* Update copyright to PSF.Guido van Rossum2001-04-121-1/+1
* Fix exception handling for non-PyFunction objects, SF bug 414743.Jeremy Hylton2001-04-111-16/+54
* Updated version of RISCOS support. SF patch 411213 by Dietmar SchwertbergerGuido van Rossum2001-04-101-0/+4
* test_pickle works on sizeof(long)==8 boxes again.Tim Peters2001-04-101-1/+1
* Warn when assigning to __debug__ instead of raising an error.Jeremy Hylton2001-04-091-7/+2
* SF patch #413552 - Premature decref on objectTim Peters2001-04-071-3/+7
* Bug fix: compile() called from a nested-scopes-enable Python was notJeremy Hylton2001-03-261-1/+1
* Finishing touch to Ping's changes. This is a patch that Ping sent meGuido van Rossum2001-03-231-11/+11
* call_sys_exitfunc(): Remove unused variable f.Fred Drake2001-03-231-1/+1
* Allow sys.excepthook and sys.exitfunc to quietly exit with a sys.exit().Ka-Ping Yee2001-03-231-32/+37
* Make it illegal to assign to __debug__ as per Guido's request.Jeremy Hylton2001-03-231-1/+12
* Fix memory leak with SyntaxError. (The DECREF was originally hiddenGuido van Rossum2001-03-231-0/+1
* Add sys.excepthook.Ka-Ping Yee2001-03-232-20/+83
* Set the line number correctly for a nested function with an exec orJeremy Hylton2001-03-221-2/+5
* Make error messages clearer for illegal combinations of nestedJeremy Hylton2001-03-221-15/+36
* Extend support for from __future__ import nested_scopesJeremy Hylton2001-03-223-16/+112
* If a code object is compiled with nested scopes, define the CO_NESTED flag.Jeremy Hylton2001-03-222-1/+11
* Use PyObject_IsInstance() to check whether the first argument to anGuido van Rossum2001-03-211-13/+19
* Update PyNode_CompileSymtable() to understand future statementsJeremy Hylton2001-03-211-9/+15
* Move the code implementing isinstance() and issubclass() to new CGuido van Rossum2001-03-211-96/+6
* Fix PyFrame_FastToLocals() and counterpart to deal with cells andJeremy Hylton2001-03-212-55/+114
* Case-checking was broken on the Macintosh. Fixed.Jack Jansen2001-03-201-3/+2
* Fixup handling of free variables in methods when the class scope alsoJeremy Hylton2001-03-201-3/+12
* Fix crashes in nested list comprehensionsJeremy Hylton2001-03-191-8/+10
* Variety of small INC/DECREF patches that fix reported memory leaksJeremy Hylton2001-03-131-4/+7