Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a ↵ | Georg Brandl | 2009-09-19 | 1 | -0/+3 |
| | | | | SystemError is set. Also clean up another usage of PyArg_ParseTuple. | ||||
* | typo | Benjamin Peterson | 2009-09-18 | 1 | -1/+1 |
| | |||||
* | add keyword arguments support to str/unicode encode and decode #6300 | Benjamin Peterson | 2009-09-18 | 2 | -0/+4 |
| | |||||
* | Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...) | Thomas Heller | 2009-09-18 | 1 | -2/+5 |
| | | | | does now always result in NULL. | ||||
* | Issue #5042: Structure sub-subclass does now initialize correctly with | Thomas Heller | 2009-09-18 | 1 | -0/+3 |
| | | | | base class positional arguments. | ||||
* | Add Gawain Bolton to Misc/ACKS for his work on base 10 integer -> string ↵ | Mark Dickinson | 2009-09-18 | 1 | -0/+1 |
| | | | | optimizations. | ||||
* | #6938: "ident" is always a string, so use a format code which works. | Georg Brandl | 2009-09-18 | 1 | -0/+3 |
| | |||||
* | Issue #6922: Fix an infinite loop when trying to decode an invalid | Georg Brandl | 2009-09-17 | 1 | -0/+3 |
| | | | | UTF-32 stream with a non-raising error handler like "replace" or "ignore". | ||||
* | Issue #6713: Improve performance of str(n) and repr(n) for integers n | Mark Dickinson | 2009-09-16 | 1 | -0/+2 |
| | | | | | (up to 3.1 times faster in tests), by special-casing base 10 in _PyLong_Format. (Backport of r74851 from py3k.) | ||||
* | Add news entry for r74841. | Thomas Wouters | 2009-09-16 | 1 | -0/+2 |
| | |||||
* | #6844: do not emit DeprecationWarnings on access if Exception.message has ↵ | Georg Brandl | 2009-09-16 | 1 | -0/+3 |
| | | | | | | been set by the user. This works by always setting it in __dict__, except when it's implicitly set in __init__. | ||||
* | Add Armin Ronacher. | Georg Brandl | 2009-09-15 | 1 | -0/+4 |
| | |||||
* | Issue #6635: Fix profiler printing usage message. | Matthias Klose | 2009-09-13 | 1 | -0/+2 |
| | |||||
* | update urls | Benjamin Peterson | 2009-09-13 | 1 | -4/+2 |
| | |||||
* | Issue #6856: Add a filter keyword argument to TarFile.add(). | Lars Gustäbel | 2009-09-12 | 1 | -0/+2 |
| | | | | | | | | | 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. | ||||
* | Issue #6163: Fixed HP-UX runtime library dir options in distutils.unixcompiler | Tarek Ziadé | 2009-09-09 | 1 | -0/+4 |
| | |||||
* | #6865 fix ref counting in initialization of pwd module | Benjamin Peterson | 2009-09-08 | 1 | -0/+3 |
| | |||||
* | Issue #6857: Fix Decimal formatting to be consistent with existing float | Mark Dickinson | 2009-09-08 | 1 | -0/+3 |
| | | | | formatting: both are now right-aligned by default. | ||||
* | #Issue 6795: Fix infinite recursion in long(Decimal('nan')); change ↵ | Mark Dickinson | 2009-09-07 | 1 | -0/+4 |
| | | | | 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 | 1 | -0/+3 |
| | | | | with no type specifier. | ||||
* | Issue #6848: Fix curses module build failure on OS X 10.6. | Mark Dickinson | 2009-09-06 | 1 | -0/+2 |
| | |||||
* | Fix for issue 4937 | Ronald Oussoren | 2009-09-06 | 1 | -0/+7 |
| | |||||
* | Issue #6846: bytearray.pop was returning ints in the range [-128, 128) | Mark Dickinson | 2009-09-06 | 1 | -0/+2 |
| | | | | 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 | 1 | -0/+2 |
| | |||||
* | news entry matching r74655 | Chris Withers | 2009-09-04 | 1 | -0/+5 |
| | |||||
* | Issue #5275: In Cookie's Cookie.load(), properly handle non-string arguments ↵ | Georg Brandl | 2009-09-04 | 1 | -0/+3 |
| | | | | as documented. | ||||
* | Issue #2666: Handle BROWSER environment variable properly for unknown ↵ | Georg Brandl | 2009-09-04 | 1 | -0/+3 |
| | | | | 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 | 1 | -0/+3 |
| | | | | | | | | 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. | ||||
* | remove the check that classmethod's argument is a callable | Benjamin Peterson | 2009-09-01 | 1 | -0/+2 |
| | |||||
* | #6750: TextIOWrapped could duplicate output when several threads write to it. | Amaury Forgeot d'Arc | 2009-08-29 | 1 | -0/+3 |
| | | | | this affect text files opened with io.open(), and the print() function of py3k | ||||
* | fixed #6801: symmetric_difference_update also accepts pipe | Tarek Ziadé | 2009-08-29 | 1 | -0/+3 |
| | |||||
* | Issue #6054: Do not normalize stored pathnames. | Lars Gustäbel | 2009-08-28 | 1 | -0/+2 |
| | | | | | | No longer use tarfile.normpath() on pathnames. Store pathnames unchanged, i.e. do not remove "./", "../" and "//" occurrences. However, still convert absolute to relative paths. | ||||
* | Issue #6794: Fix handling of NaNs in Decimal.compare_total and | Mark Dickinson | 2009-08-28 | 1 | -0/+3 |
| | | | | Decimal.compare_total_mag. | ||||
* | Restore alphabetic order. | Georg Brandl | 2009-08-23 | 1 | -1/+1 |
| | |||||
* | fixed misplaced Issue line | Tarek Ziadé | 2009-08-21 | 1 | -3/+6 |
| | |||||
* | Fixed #6556: Corrected doc on how Distutils looks for its user configuration ↵ | Tarek Ziadé | 2009-08-21 | 1 | -0/+3 |
| | | | | file under Windows | ||||
* | #6693: New functions in site.py to get user/global site packages paths. | Tarek Ziadé | 2009-08-20 | 1 | -0/+2 |
| | |||||
* | Add weakref support to the thread.lock type. | Gregory P. Smith | 2009-08-20 | 1 | -0/+2 |
| | |||||
* | Issue #1356969: Add missing info methods in Tix.HList. | Guilherme Polo | 2009-08-18 | 1 | -0/+2 |
| | |||||
* | Issue #1522587: New constants and methods for the Tix.Grid widget. | Guilherme Polo | 2009-08-18 | 1 | -0/+2 |
| | |||||
* | Issue #1250469: Fix the return value of Tix.PanedWindow.panes. | Guilherme Polo | 2009-08-18 | 1 | -0/+2 |
| | |||||
* | Issue #1119673: Do not override Tkinter.Text methods when creating a ↵ | Guilherme Polo | 2009-08-18 | 1 | -0/+3 |
| | | | | ScrolledText. | ||||
* | typos | Benjamin Peterson | 2009-08-17 | 1 | -2/+2 |
| | |||||
* | Issue 6665: Fix fnmatch to properly match filenames with newlines in them. | Gregory P. Smith | 2009-08-16 | 1 | -0/+2 |
| | |||||
* | Wrong place for issue #6244. | Guilherme Polo | 2009-08-16 | 1 | -2/+2 |
| | |||||
* | Issue #6244: Allow detect_tkinter to look for Tcl/Tk 8.6. | Guilherme Polo | 2009-08-16 | 1 | -0/+2 |
| | |||||
* | better col_offsets for "for" statements with tuple unpacking #6704 | Benjamin Peterson | 2009-08-15 | 2 | -0/+4 |
| | | | | Patch from Frank Wierzbicki. | ||||
* | #6707 fix a crash with dir() on an uninitialized module | Benjamin Peterson | 2009-08-15 | 1 | -0/+2 |
| | |||||
* | Issue #1135: Add the XView and YView mix-ins to avoid duplicating | Guilherme Polo | 2009-08-14 | 1 | -0/+3 |
| | | | | the xview* and yview* methods. | ||||
* | Expat could crash if given the wrong kind of input by never stopping its | Brett Cannon | 2009-08-13 | 2 | -1/+5 |
| | | | | | | tokenizing step. Thanks to Ivan Krstić for the patch. |