summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fill in actual issue number in testsAntoine Pitrou2009-01-013-3/+3
|
* Issue #3680: Reference cycles created through a dict, set or deque iterator ↵Antoine Pitrou2009-01-017-23/+96
| | | | did not get collected.
* #4767: Use correct submodules for all MIME classes.Georg Brandl2009-01-011-0/+15
|
* Handlers are in the `logging.handlers` module.Georg Brandl2009-01-011-0/+4
|
* #4776: add data_files and package_dir arguments.Georg Brandl2009-01-011-2/+9
|
* #4782: Fix markup error that hid load() and loads().Georg Brandl2009-01-011-2/+2
|
* #4784: ... on three counts ...Georg Brandl2009-01-011-1/+1
|
* Point to types module in new module deprecation notice.Georg Brandl2009-01-011-2/+2
|
* #4228: Pack negative values the same way as 2.4Georg Brandl2009-01-013-6/+15
| | | | in struct's L format.
* #4222: document dis.findlabels() and dis.findlinestarts() andGeorg Brandl2009-01-012-3/+17
| | | | put them into dis.__all__.
* #4185: clarify escape behavior of replacement strings.Georg Brandl2009-01-011-2/+4
|
* #4156: make clear that "protocol" is to be replaced with the protocol name.Georg Brandl2009-01-011-26/+35
|
* #4100: note that element children are not necessarily present on "start" events.Georg Brandl2009-01-011-0/+10
|
* simplfy codeBenjamin Peterson2009-01-011-4/+2
|
* #4795 inspect.isgeneratorfunction() should return False instead of NoneBenjamin Peterson2008-12-312-0/+4
|
* Just inserted blank line.Hirokazu Yamamoto2008-12-311-0/+1
|
* Fixed compile error on windows.Hirokazu Yamamoto2008-12-311-1/+2
|
* fix name collision issuesBenjamin Peterson2008-12-311-3/+3
|
* #4788 qualify some bare except clausesBenjamin Peterson2008-12-311-2/+2
|
* Fixed #4702: Throwing DistutilsPlatformError instead of IOError under win32 ↵Tarek Ziadé2008-12-303-2/+38
| | | | if MSVC is not found
* #4778: attributes can't be called.Georg Brandl2008-12-301-1/+1
|
* Minor documentation change relating to NullHandler.Vinay Sajip2008-12-301-4/+4
|
* Issue #4701: implicitly call PyType_Ready from PyObject_HashNick Coghlan2008-12-304-1/+139
|
* fixed #4646 : distutils was choking on empty options arg in the setup function.Tarek Ziadé2008-12-293-1/+28
|
* fix FrenchBenjamin Peterson2008-12-291-1/+1
|
* Issue #1040026: Fix os.times result on systems where HZ is incorrect.Martin v. Löwis2008-12-292-9/+18
|
* #4764 in io.open, set IOError.filename when trying to open a directory on ↵Benjamin Peterson2008-12-293-4/+8
| | | | POSIX platforms
* #4764 set IOError.filename when trying to open a directory on POSIX platformsBenjamin Peterson2008-12-293-2/+18
|
* Issue #3767: Convert Tk object to string in tkColorChooser.Martin v. Löwis2008-12-292-5/+9
|
* Issue #3248: Allow placing ScrolledText in a PanedWindow.Martin v. Löwis2008-12-292-33/+44
|
* #4763 PyErr_ExceptionMatches won't blow up with NULL argumentsBenjamin Peterson2008-12-281-5/+4
|
* Update the fix for issue4064 to deal correctly with all three variants ofRonald Oussoren2008-12-282-2/+7
| | | | universal builds that are presented by the configure script.
* Issue4064: architecture string for universal builds on OSXRonald Oussoren2008-12-282-4/+27
|
* Issue #2153: modernize coding style of unittest.py, remove obsolete ↵Antoine Pitrou2008-12-281-46/+25
| | | | | | compatibility stuff. Patch by Virgil Dupras.
* fix WORD_BIGEDIAN declaration in Universal builds; fixes #4060 and #4728Benjamin Peterson2008-12-282-0/+16
|
* wrong version number in doc changes committed in r67979Antoine Pitrou2008-12-281-1/+1
|
* Issue #4444: Allow assertRaises() to be used as a context handler.Antoine Pitrou2008-12-284-10/+79
|
* #4731: clarify message about missing module prerequisites.Georg Brandl2008-12-281-1/+2
|
* Backport r67974:Georg Brandl2008-12-283-16/+38
| | | | | | #4759: allow None as first argument of bytearray.translate(), for consistency with bytes.translate(). Also fix segfault for bytearray.translate(x, None) -- will backport this part to 3.0 and 2.6.
* Document Py_VaBuildValue.Alexandre Vassalotti2008-12-281-0/+5
|
* Sort UCS-2/UCS-4 name mangling list.Alexandre Vassalotti2008-12-281-8/+8
|
* Fix name mangling of PyUnicode_ClearFreeList.Alexandre Vassalotti2008-12-281-1/+1
|
* fix markupBenjamin Peterson2008-12-271-1/+1
|
* Issue #4677: add two list comprehension tests to pybench.Antoine Pitrou2008-12-272-0/+60
|
* #4671: document that pydoc imports modules.Georg Brandl2008-12-271-0/+7
|
* Use :samp: role.Georg Brandl2008-12-271-2/+2
|
* #4695: fix backslashery.Georg Brandl2008-12-271-2/+2
|
* #4682: 'b' is actually unsigned char.Georg Brandl2008-12-271-2/+3
|
* #4754: improve winsound documentation.Georg Brandl2008-12-271-2/+7
|
* Follow-up to r67746 in order to restore backwards-compatibility forGeorg Brandl2008-12-271-7/+19
| | | | those who (monkey-)patch TextWrapper.wordsep_re with a custom RE.