summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* #6841: remove duplicated word.Georg Brandl2009-09-051-1/+1
|
* news entry matching r74655Chris Withers2009-09-041-0/+5
|
* Fixes issue #6838: use a list to accumulate the value instead of repeatedly ↵Chris Withers2009-09-041-12/+9
| | | | concatenating strings.
* #6777: dont discourage usage of Exception.args or promote usage of ↵Georg Brandl2009-09-041-17/+14
| | | | Exception.message.
* #6756: add some info about the "acct" parameter.Georg Brandl2009-09-041-1/+2
|
* #5101: add back tests to test_funcattrs that were lost during unittest ↵Georg Brandl2009-09-041-61/+119
| | | | conversion, and make some PEP8 cleanups.
* Issue #5275: In Cookie's Cookie.load(), properly handle non-string arguments ↵Georg Brandl2009-09-042-1/+6
| | | | as documented.
* #5047: remove Monterey support from configure.Georg Brandl2009-09-043-51/+3
|
* Issue #2666: Handle BROWSER environment variable properly for unknown ↵Georg Brandl2009-09-042-1/+6
| | | | browser names in the webbrowser module.
* test_platform fails on OS X Snow Leopard because the UNIX command to get theBrett Cannon2009-09-032-1/+10
| | | | | | | | canonical version, sw_vers, leaves off trailing zeros in the version number (e.g. 10.6 instead of 10.6.0). Test now compensates by tacking on extra zeros for the test comparison. Fixes issue #6806.
* Sorry, sorry! Ignore my previous two commits. I mixed up the versionArmin Rigo2009-09-032-21/+0
| | | | | of python with which I tried running the crashers. They don't crash the current HEAD.
* Does not terminate: consume all memory without responding to Ctrl-C.Armin Rigo2009-09-031-0/+10
| | | | I am not too sure why, but you can surely find out by gdb'ing a bit...
* Found the next crasher by thinking about this logic in PyPy.Armin Rigo2009-09-031-0/+11
|
* #6757: complete the list of types that marshal can serialize.Georg Brandl2009-09-031-6/+8
|
* #6828: fix wrongly highlighted blocks.Georg Brandl2009-09-031-5/+9
|
* #6821: fix signature of PyBuffer_Release().Georg Brandl2009-09-021-2/+2
|
* remove the check that classmethod's argument is a callableBenjamin Peterson2009-09-014-17/+5
|
* #6638: fix wrong parameter name and markup a class.Georg Brandl2009-09-011-3/+4
|
* #6810: add a link to the section about frame objects instead of just a ↵Georg Brandl2009-09-012-3/+5
| | | | description where to find it.
* #6765: hint that log(x, base) is not very sophisticated.Georg Brandl2009-09-011-3/+6
|
* #6808: clarification.Georg Brandl2009-09-011-3/+3
|
* #6813: better documentation for numberless string formats.Georg Brandl2009-09-012-5/+14
|
* Doc fix for the issue2637.Senthil Kumaran2009-08-311-3/+4
|
* Issue #6297: Add autogenerated Misc/python.pc file to make distclean target. ↵Mark Dickinson2009-08-311-1/+2
| | | | Thanks Jerry Chen.
* other -> others where multiple arguments are accepted.Georg Brandl2009-08-311-2/+2
|
* #6801: fix copy-paste oversight.Georg Brandl2009-08-301-1/+1
|
* #6803: fix old name.Georg Brandl2009-08-301-2/+2
|
* #6750: TextIOWrapped could duplicate output when several threads write to it.Amaury Forgeot d'Arc2009-08-293-4/+33
| | | | this affect text files opened with io.open(), and the print() function of py3k
* fixed #6801: symmetric_difference_update also accepts pipeTarek Ziadé2009-08-292-1/+4
|
* Silence gcc 'comparison always false' warningMark Dickinson2009-08-282-2/+6
|