| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix missing assignments of marshal.load() values. Closes #1214662. | Skip Montanaro | 2005-06-04 | 1 | -7/+7 |
|
|
* | Whitespace normalization. | Tim Peters | 2005-06-03 | 3 | -9/+9 |
|
|
* | Bug #1194181: bz2.BZ2File didn't handle mode 'U' correctly. | Georg Brandl | 2005-06-03 | 1 | -0/+10 |
|
|
* | [ 1197218 ] test_locale fix on modern linux | Anthony Baxter | 2005-06-03 | 1 | -8/+10 |
|
|
* | This is my patch: | Michael W. Hudson | 2005-06-03 | 1 | -1/+15 |
|
|
* | Bug #1213894: os.path.realpath didn't resolve symlinks that were the first | Georg Brandl | 2005-06-03 | 1 | -0/+20 |
|
|
* | M-x untabify | Michael W. Hudson | 2005-06-03 | 1 | -9/+9 |
|
|
* | [Bug #1177831] Exercise (?(id)yes|no) for a group other than the first one | Andrew M. Kuchling | 2005-06-02 | 1 | -0/+10 |
|
|
* | Fix compiler.ast.flatten function so that it works on lists. | Neil Schemenauer | 2005-06-02 | 1 | -0/+5 |
|
|
* | This is my patch: | Michael W. Hudson | 2005-05-27 | 1 | -0/+110 |
|
|
* | Fix test_site to not call open('...', 'wU'), as that now raises an error. | Michael W. Hudson | 2005-05-27 | 1 | -1/+1 |
|
|
* | Disallow opening files with modes 'aU' or 'wU' as specified by PEP | Skip Montanaro | 2005-05-20 | 1 | -0/+10 |
|
|
* | This test relied on short-circuiting details of dictobject.py to avoid | Armin Rigo | 2005-05-15 | 1 | -4/+2 |
|
|
* | Add better datetime support to xmlrpclib module. Closes patch #1120353. | Skip Montanaro | 2005-05-14 | 1 | -6/+38 |
|
|
* | Don't use 'is not' to compare strings. | Michael W. Hudson | 2005-05-04 | 1 | -1/+1 |
|
|
* | Fix error in a docstring where a single quote started the docstring but triple | Brett Cannon | 2005-04-30 | 1 | -1/+1 |
|
|
* | Make subclasses of int, long, complex, float, and unicode perform type | Brett Cannon | 2005-04-26 | 4 | -1/+245 |
|
|
* | Update test to the current readline() behaviour. | Walter Dörwald | 2005-04-21 | 1 | -0/+2 |
|
|
* | Fix tests dependent on the exception raised by non-settable descriptors. | Barry Warsaw | 2005-04-20 | 3 | -5/+6 |
|
|
* | Whitespace normalization. | Tim Peters | 2005-04-20 | 2 | -2/+2 |
|
|
* | Flush out support for ``class B(): pass`` syntax by adding support to the | Brett Cannon | 2005-04-09 | 2 | -0/+6 |
|
|
* | Add test for ``class B1(): pass``. | Brett Cannon | 2005-04-09 | 1 | -1/+2 |
|
|
* | test_default_encoding_issues(): Fully restore sys.setdefaultencoding. | Tim Peters | 2005-04-08 | 1 | -0/+7 |
|
|
* | Fix for SF bug #1175396: readline() will now read one more character, if | Walter Dörwald | 2005-04-04 | 1 | -9/+82 |
|
|
* | Fix testcase for 64bit BSD systems: long is 8 bytes for those systems | Hye-Shik Chang | 2005-04-04 | 1 | -2/+8 |
|
|
* | Fix for rather inaccurately titled bug | Michael W. Hudson | 2005-03-30 | 1 | -0/+10 |
|
|
* | Whitespace normalization. | Tim Peters | 2005-03-28 | 5 | -10/+9 |
|
|
* | SF patch #1171417: bug fix for islice() in docs | Raymond Hettinger | 2005-03-27 | 1 | -0/+5 |
|
|
* | * Fix decimal's handling of foreign types. Now returns NotImplemented | Raymond Hettinger | 2005-03-27 | 1 | -7/+50 |
|
|
* | SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior. | Raymond Hettinger | 2005-03-27 | 1 | -0/+6 |
|
|
* | Add tests for tuple, list and UserList that initialize the object from | Walter Dörwald | 2005-03-22 | 2 | -83/+97 |
|
|
* | Fix typo. | Walter Dörwald | 2005-03-22 | 1 | -1/+1 |
|
|
* | Add list tests that ensure that remove() removes the first occurrence. | Walter Dörwald | 2005-03-21 | 1 | -0/+20 |
|
|
* | Apply remove's mutation test after every equality test. | Raymond Hettinger | 2005-03-19 | 1 | -7/+8 |
|
|
* | Add a remove() method to collections.deque objects. | Raymond Hettinger | 2005-03-18 | 1 | -0/+35 |
|
|
* | Bug #1163325: "special" decimals aren't hashable | Raymond Hettinger | 2005-03-15 | 1 | -0/+3 |
|
|
* | Reset internal buffers when seek() is called. This fixes SF bug #1156259. | Walter Dörwald | 2005-03-14 | 1 | -0/+15 |
|
|
* | Patch #1159931/bug #1143895: inspect.getsource failed when functions, | Johannes Gijsbers | 2005-03-12 | 2 | -0/+21 |
|
|
* | Revised the itertools quantifier recipes to match the performance of the | Raymond Hettinger | 2005-03-11 | 1 | -8/+8 |
|
|
* | Add two new functions, any() and all(). | Raymond Hettinger | 2005-03-11 | 1 | -0/+36 |
|
|
* | Test partial() with bound/unbound methods. | Raymond Hettinger | 2005-03-11 | 1 | -1/+7 |
|
|
* | Fix test for socket.getfqdn() to also include the name returned by | Brett Cannon | 2005-03-11 | 1 | -1/+1 |
|
|
* | operator.itemgetter() and operator.attrgetter() now support extraction | Raymond Hettinger | 2005-03-09 | 1 | -5/+31 |
|
|
* | Build with --disable-unicode again. Fixes #1158607. | Martin v. Löwis | 2005-03-08 | 1 | -1/+1 |
|
|
* | Convert file names of posix.access according to the file system encoding. | Martin v. Löwis | 2005-03-08 | 1 | -0/+2 |
|
|
* | Make functional.partial() more closely match the spec by emulating | Raymond Hettinger | 2005-03-08 | 1 | -0/+17 |
|
|
* | SF #818006: merge from release24-maint branch: add useful read-only | Greg Ward | 2005-03-07 | 2 | -8/+31 |
|
|
* | Patch #918101: Add tarfile open mode r|* for auto-detection of the | Martin v. Löwis | 2005-03-05 | 1 | -2/+27 |
|
|
* | Tweak test_communicate_stderr so that it works when run under a pydebug build. | Brett Cannon | 2005-03-05 | 1 | -1/+3 |
|
|
* | SF #1149508: ensure textwrap handles hyphenated numbers correctly, | Greg Ward | 2005-03-05 | 1 | -0/+18 |
|
|