summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove strange trailing commas.Georg Brandl2009-09-161-3/+3
|
* #5621: refactor description of how class/instance attributes interact on ↵Georg Brandl2009-09-161-13/+24
| | | | a.x=a.x+1 or augassign.
* #6891: comment out dead link to Unicode article.Georg Brandl2009-09-161-5/+6
|
* #6876: fix base class constructor invocation in example.Georg Brandl2009-09-161-2/+1
|
* #6880: add reference to classes section in exceptions section, which comes ↵Georg Brandl2009-09-161-3/+4
| | | | earlier.
* Make deprecation notices as visible as warnings are right now.Georg Brandl2009-09-162-10/+21
|
* Update distutils.util tests after my changesRonald Oussoren2009-09-151-1/+21
| | | | to --with-universal-archs
* Add Armin Ronacher.Georg Brandl2009-09-151-0/+4
|
* Finish support for --with-universal-archs=intelRonald Oussoren2009-09-152-6/+26
| | | | and --with-universal-archs=3-way (issue6245)
* #6917 - typo in method nameEzio Melotti2009-09-151-1/+1
|
* MacOSX: detect the architectures supported byRonald Oussoren2009-09-151-13/+11
| | | | | | | | | Tk.framework and build _tkinter only for those architectures. This replaces the hardcoded solution that is no longer valid now that 64-bit capable versions of Tk are available on OSX.
* Py_SetPythonHome uses static storage #6913Benjamin Peterson2009-09-151-0/+4
|
* #6908: fix association of hashlib hash attributes.Georg Brandl2009-09-141-2/+2
|
* #6574: list the future features in a table.Georg Brandl2009-09-141-4/+31
|
* #6904 - fix broken linkEzio Melotti2009-09-141-1/+1
|
* Remove an extraneous space in unittest documentation.Michael Foord2009-09-131-1/+1
|
* Test discovery in unittest will only attempt to import modules that are ↵Michael Foord2009-09-134-46/+85
| | | | importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568.
* Typo fix.Georg Brandl2009-09-131-1/+1
|
* unittest.TestLoader.loadTestsFromName honors the loader suiteClass ↵Michael Foord2009-09-133-2/+46
| | | | attribute. Issue 6866.
* Tutorial tweaks. Issue 6849.Michael Foord2009-09-131-12/+10
|
* Note that sys._getframe is not guaranteed to exist in all implementations of ↵Michael Foord2009-09-132-1/+7
| | | | Python, and a corresponding note in inspect.currentframe. Issue 6712.
* Objects that compare equal automatically pass or fail assertAlmostEqual and ↵Michael Foord2009-09-134-1/+24
| | | | assertNotAlmostEqual tests on unittest.TestCase. Issue 6567.
* Change to tutorial wording for reading text / binary files on Windows. Issue ↵Michael Foord2009-09-131-2/+2
| | | | #6301.
* Issue #6635: Fix profiler printing usage message.Matthias Klose2009-09-132-2/+4
|
* Fix potential signed-overflow bug in _PyLong_Format; also fixMark Dickinson2009-09-131-9/+11
| | | | a couple of whitespace issues.
* update urlsBenjamin Peterson2009-09-131-4/+2
|
* #6026 - fix tests that failed without zlibEzio Melotti2009-09-127-6/+51
|
* Issue #6856: Add a filter keyword argument to TarFile.add().Lars Gustäbel2009-09-124-8/+76
| | | | | | | | | The filter argument must be a function that takes a TarInfo object argument, changes it and returns it again. If the function returns None the TarInfo object will be excluded from the archive. The exclude argument is deprecated from now on, because it does something similar but is not as flexible.
* Move function back to its section.Georg Brandl2009-09-111-7/+9
|
* Properly document copy and deepcopy as functions.Georg Brandl2009-09-091-10/+13
|
* revert unintended changesBenjamin Peterson2009-09-092-130/+8
|
* tabbifyBenjamin Peterson2009-09-093-9/+131
|
* Issue #6163: Fixed HP-UX runtime library dir options in distutils.unixcompilerTarek Ziadé2009-09-093-2/+24
|
* #6865 fix ref counting in initialization of pwd moduleBenjamin Peterson2009-09-082-0/+4
|
* Issue #6857: Fix Decimal formatting to be consistent with existing floatMark Dickinson2009-09-083-2/+9
| | | | formatting: both are now right-aligned by default.
* Make ctypes compile again with older Python versions.Thomas Heller2009-09-081-0/+49
|
* This is an update to r74701. How hard can it be to get a configure test right.Ronald Oussoren2009-09-082-1/+3
| | | | | This patch has already been backported as part of the backport of r74701, which is how I found this problem.
* #Issue 6795: Fix infinite recursion in long(Decimal('nan')); change ↵Mark Dickinson2009-09-073-3/+16
| | | | int(Decimal('nan')) to raise ValueError instead of either returning NaN or raising InvalidContext.
* Issue #6850: Fix bug in Decimal._parse_format_specifier for formatsMark Dickinson2009-09-073-1/+7
| | | | with no type specifier.
* revert r74699 since it loses useful error informationBenjamin Peterson2009-09-071-2/+13
|
* Fix typo in configure.inRonald Oussoren2009-09-072-9/+43
|
* PyObject_GetIter can set an error for its self just fineBenjamin Peterson2009-09-061-13/+2
|
* Issue #6848: Fix curses module build failure on OS X 10.6.Mark Dickinson2009-09-062-1/+8
|
* Remove redundant assignmentMark Dickinson2009-09-061-1/+0
|
* Fix for issue 4937Ronald Oussoren2009-09-062-1/+7
|
* Issue #6847: s/bytes/bytearray/ in some bytearray error messages. Thanks ↵Mark Dickinson2009-09-061-4/+4
| | | | Hagen Fürstenau.
* Issue #6846: bytearray.pop was returning ints in the range [-128, 128)Mark Dickinson2009-09-063-1/+5
| | | | instead of [0, 256). Thanks Hagen Fürstenau for the report and fix.
* Fix build issues on OSX 10.6 (issue 6802)Ronald Oussoren2009-09-0610-78/+253
|
* #6843: add link from filterwarnings to where the meaning of the arguments is ↵Georg Brandl2009-09-051-17/+19
| | | | covered.
* Add configure-time checks for gamma and error functions.Mark Dickinson2009-09-053-3/+117
|