summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Patch #912410: Replace HTML entity references for attribute valuesMartin v. Löwis2007-03-062-6/+29
* Patch #1663234: you can now run doctest on test files and modulesGeorg Brandl2007-03-061-2/+17
* A test case for the defaultdict KeyError bug.Georg Brandl2007-03-061-0/+9
* Patch #1672481: fix bug in idlelib.MultiCall.Georg Brandl2007-03-061-0/+2
* A test case for the fix in #1674228.Georg Brandl2007-03-061-0/+11
* Patch #1121142: Implement ZipFile.open.Martin v. Löwis2007-03-062-49/+637
* Patch #1674228: when assigning a slice (old-style), check for theGeorg Brandl2007-03-051-0/+14
* Minor corrections to docs, and an explanation comentaryFacundo Batista2007-03-051-13/+14
* Fix a bug in test_dict and test_userdict, found at the PyPy sprint.Georg Brandl2007-03-042-6/+6
* Fix embarrassing typo and fix constantification of NoneRaymond Hettinger2007-03-021-0/+5
* Bug #1628895: some better tries to find HTML documentation in pydoc.Georg Brandl2007-03-021-7/+12
* Add collections.NamedTupleRaymond Hettinger2007-03-012-1/+117
* Prepare collections module for pure python code entries.Raymond Hettinger2007-02-281-0/+3
* Docstring nit.Raymond Hettinger2007-02-281-1/+1
* Add a test for instantiating SyntaxError with no arguments.Brett Cannon2007-02-281-0/+3
* Modify the segfaulting example to show why r53997 is not a solution toArmin Rigo2007-02-281-0/+20
* Add checking for a number of metaclass error conditions.Jeremy Hylton2007-02-272-64/+103
* Fix long-standing bug in name mangling for package importsJeremy Hylton2007-02-271-0/+13
* When printing an unraisable error, don't print exceptions. before the name.Neal Norwitz2007-02-261-2/+2
* Do not copy free variables to locals in class namespaces.Jeremy Hylton2007-02-261-0/+33
* Backported r51621 from p3yk:Thomas Wouters2007-02-252-4/+4
* Refactor PEP 352 tests to make it easier in the future to make sure certainBrett Cannon2007-02-231-18/+34
* Fix typo in commentNeal Norwitz2007-02-231-1/+1
* Add itertools.izip_longest().Raymond Hettinger2007-02-211-0/+54
* Fixup docstrings for merge().Raymond Hettinger2007-02-191-2/+2
* Patch #1490190: posixmodule now includes os.chflags() and os.lchflags()Martin v. Löwis2007-02-193-1/+28
* Add test for merge stabilityRaymond Hettinger2007-02-191-0/+15
* Use C heapreplace() instead of slower _siftup() in pure python.Raymond Hettinger2007-02-191-2/+2
* Add tie-breaker count to preserve sort stability.Raymond Hettinger2007-02-191-6/+6
* Add merge() function to heapq.Raymond Hettinger2007-02-192-3/+49
* Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash().Raymond Hettinger2007-02-191-0/+20
* Minor fix for currentframe (SF #1652788).Vinay Sajip2007-02-161-5/+5
* Make the __import__ call in encodings.__init__ absolute with a level 0 call.Brett Cannon2007-02-161-4/+4
* Update the encoding package's search function to use absolute imports whenBrett Cannon2007-02-151-2/+4
* A missing binary mode in AppendTest caused failures in WindowsLars Gustäbel2007-02-141-2/+2
* Strip the '.gz' extension from the filename that is written to theLars Gustäbel2007-02-131-3/+6
* Patch #1647484: Renamed GzipFile's filename attribute to name. TheLars Gustäbel2007-02-132-8/+20
* Patch #1517891: Make 'a' create the file if it doesn't exist.Martin v. Löwis2007-02-132-1/+30
* Patch #698833: Support file decryption in zipfile.Martin v. Löwis2007-02-132-2/+126
* Patch #685268: Consider a package's __path__ in imputil.Martin v. Löwis2007-02-131-0/+4
* Fix the line to what is my guess at the original author's meaning.Armin Rigo2007-02-121-1/+1
* Patch 1463026: Support default namespace in XMLGenerator.Martin v. Löwis2007-02-122-17/+57
* fix trace.py --ignore-dirSkip Montanaro2007-02-111-1/+1
* Bug #1600860: Search for shared python library in LIBDIR, notMartin v. Löwis2007-02-091-3/+12
* Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;Kurt B. Kaiser2007-02-083-21/+103
* Bug #1653736: Complain about keyword arguments to time.isoformat.Martin v. Löwis2007-02-081-0/+5
* Fix docstring bugRaymond Hettinger2007-02-081-1/+1
* Do not let overflows in enumerate() and count() pass silently.Raymond Hettinger2007-02-081-2/+1
* Bug #1575169: operator.isSequenceType() now returns False for subclasses of d...Raymond Hettinger2007-02-071-0/+2
* Check for a common user error with defaultdict().Raymond Hettinger2007-02-071-3/+4