Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Typo fix. | Georg Brandl | 2009-09-13 | 1 | -1/+1 |
| | |||||
* | unittest.TestLoader.loadTestsFromName honors the loader suiteClass ↵ | Michael Foord | 2009-09-13 | 3 | -2/+46 |
| | | | | attribute. Issue 6866. | ||||
* | Tutorial tweaks. Issue 6849. | Michael Foord | 2009-09-13 | 1 | -12/+10 |
| | |||||
* | Note that sys._getframe is not guaranteed to exist in all implementations of ↵ | Michael Foord | 2009-09-13 | 2 | -1/+7 |
| | | | | Python, and a corresponding note in inspect.currentframe. Issue 6712. | ||||
* | Objects that compare equal automatically pass or fail assertAlmostEqual and ↵ | Michael Foord | 2009-09-13 | 4 | -1/+24 |
| | | | | assertNotAlmostEqual tests on unittest.TestCase. Issue 6567. | ||||
* | Change to tutorial wording for reading text / binary files on Windows. Issue ↵ | Michael Foord | 2009-09-13 | 1 | -2/+2 |
| | | | | #6301. | ||||
* | Issue #6635: Fix profiler printing usage message. | Matthias Klose | 2009-09-13 | 2 | -2/+4 |
| | |||||
* | Fix potential signed-overflow bug in _PyLong_Format; also fix | Mark Dickinson | 2009-09-13 | 1 | -9/+11 |
| | | | | a couple of whitespace issues. | ||||
* | update urls | Benjamin Peterson | 2009-09-13 | 1 | -4/+2 |
| | |||||
* | #6026 - fix tests that failed without zlib | Ezio Melotti | 2009-09-12 | 7 | -6/+51 |
| | |||||
* | Issue #6856: Add a filter keyword argument to TarFile.add(). | Lars Gustäbel | 2009-09-12 | 4 | -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 Brandl | 2009-09-11 | 1 | -7/+9 |
| | |||||
* | Properly document copy and deepcopy as functions. | Georg Brandl | 2009-09-09 | 1 | -10/+13 |
| | |||||
* | revert unintended changes | Benjamin Peterson | 2009-09-09 | 2 | -130/+8 |
| | |||||
* | tabbify | Benjamin Peterson | 2009-09-09 | 3 | -9/+131 |
| | |||||
* | Issue #6163: Fixed HP-UX runtime library dir options in distutils.unixcompiler | Tarek Ziadé | 2009-09-09 | 3 | -2/+24 |
| | |||||
* | #6865 fix ref counting in initialization of pwd module | Benjamin Peterson | 2009-09-08 | 2 | -0/+4 |
| | |||||
* | Issue #6857: Fix Decimal formatting to be consistent with existing float | Mark Dickinson | 2009-09-08 | 3 | -2/+9 |
| | | | | formatting: both are now right-aligned by default. | ||||
* | Make ctypes compile again with older Python versions. | Thomas Heller | 2009-09-08 | 1 | -0/+49 |
| | |||||
* | This is an update to r74701. How hard can it be to get a configure test right. | Ronald Oussoren | 2009-09-08 | 2 | -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 Dickinson | 2009-09-07 | 3 | -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 formats | Mark Dickinson | 2009-09-07 | 3 | -1/+7 |
| | | | | with no type specifier. | ||||
* | revert r74699 since it loses useful error information | Benjamin Peterson | 2009-09-07 | 1 | -2/+13 |
| | |||||
* | Fix typo in configure.in | Ronald Oussoren | 2009-09-07 | 2 | -9/+43 |
| | |||||
* | PyObject_GetIter can set an error for its self just fine | Benjamin Peterson | 2009-09-06 | 1 | -13/+2 |
| | |||||
* | Issue #6848: Fix curses module build failure on OS X 10.6. | Mark Dickinson | 2009-09-06 | 2 | -1/+8 |
| | |||||
* | Remove redundant assignment | Mark Dickinson | 2009-09-06 | 1 | -1/+0 |
| | |||||
* | Fix for issue 4937 | Ronald Oussoren | 2009-09-06 | 2 | -1/+7 |
| | |||||
* | Issue #6847: s/bytes/bytearray/ in some bytearray error messages. Thanks ↵ | Mark Dickinson | 2009-09-06 | 1 | -4/+4 |
| | | | | Hagen Fürstenau. | ||||
* | Issue #6846: bytearray.pop was returning ints in the range [-128, 128) | Mark Dickinson | 2009-09-06 | 3 | -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 Oussoren | 2009-09-06 | 10 | -78/+253 |
| | |||||
* | #6843: add link from filterwarnings to where the meaning of the arguments is ↵ | Georg Brandl | 2009-09-05 | 1 | -17/+19 |
| | | | | covered. | ||||
* | Add configure-time checks for gamma and error functions. | Mark Dickinson | 2009-09-05 | 3 | -3/+117 |
| | |||||
* | #6841: remove duplicated word. | Georg Brandl | 2009-09-05 | 1 | -1/+1 |
| | |||||
* | news entry matching r74655 | Chris Withers | 2009-09-04 | 1 | -0/+5 |
| | |||||
* | Fixes issue #6838: use a list to accumulate the value instead of repeatedly ↵ | Chris Withers | 2009-09-04 | 1 | -12/+9 |
| | | | | concatenating strings. | ||||
* | #6777: dont discourage usage of Exception.args or promote usage of ↵ | Georg Brandl | 2009-09-04 | 1 | -17/+14 |
| | | | | Exception.message. | ||||
* | #6756: add some info about the "acct" parameter. | Georg Brandl | 2009-09-04 | 1 | -1/+2 |
| | |||||
* | #5101: add back tests to test_funcattrs that were lost during unittest ↵ | Georg Brandl | 2009-09-04 | 1 | -61/+119 |
| | | | | conversion, and make some PEP8 cleanups. | ||||
* | Issue #5275: In Cookie's Cookie.load(), properly handle non-string arguments ↵ | Georg Brandl | 2009-09-04 | 2 | -1/+6 |
| | | | | as documented. | ||||
* | #5047: remove Monterey support from configure. | Georg Brandl | 2009-09-04 | 3 | -51/+3 |
| | |||||
* | Issue #2666: Handle BROWSER environment variable properly for unknown ↵ | Georg Brandl | 2009-09-04 | 2 | -1/+6 |
| | | | | browser names in the webbrowser module. | ||||
* | test_platform fails on OS X Snow Leopard because the UNIX command to get the | Brett Cannon | 2009-09-03 | 2 | -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 version | Armin Rigo | 2009-09-03 | 2 | -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 Rigo | 2009-09-03 | 1 | -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 Rigo | 2009-09-03 | 1 | -0/+11 |
| | |||||
* | #6757: complete the list of types that marshal can serialize. | Georg Brandl | 2009-09-03 | 1 | -6/+8 |
| | |||||
* | #6828: fix wrongly highlighted blocks. | Georg Brandl | 2009-09-03 | 1 | -5/+9 |
| | |||||
* | #6821: fix signature of PyBuffer_Release(). | Georg Brandl | 2009-09-02 | 1 | -2/+2 |
| | |||||
* | remove the check that classmethod's argument is a callable | Benjamin Peterson | 2009-09-01 | 4 | -17/+5 |
| |