Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fiddled things so that test_normalization is expected to be skipped if | Tim Peters | 2002-11-24 | 2 | -39/+60 |
| | | | | and only if the test input file doesn't exist. | ||||
* | Delete bsddb from sys.modules if _bsddb cannot be imported. | Martin v. Löwis | 2002-11-24 | 1 | -1/+8 |
| | |||||
* | Skip test_normalization on Windows until it's at least clear why the | Tim Peters | 2002-11-24 | 1 | -0/+1 |
| | | | | | data it needs doesn't exist in the project. If it's a huge file, maybe the test should be changed to be one of the -u thingies. | ||||
* | Split long line. | Tim Peters | 2002-11-24 | 1 | -2/+3 |
| | | | | | XXX If NormalizationTest.txt is required to run this test, why isn't it checked into the project? | ||||
* | Whitespace normalization. | Tim Peters | 2002-11-24 | 20 | -36/+13 |
| | |||||
* | Patch #626485: Support Unicode normalization. | Martin v. Löwis | 2002-11-23 | 1 | -0/+68 |
| | |||||
* | Update character names. | Martin v. Löwis | 2002-11-23 | 1 | -3/+3 |
| | |||||
* | Implement names for CJK unified ideographs. Add name to KeyError output. | Martin v. Löwis | 2002-11-23 | 2 | -6/+19 |
| | | | | Verify that the lookup for an existing name succeeds. | ||||
* | Add test cases for Hangul syllables. Update output. | Martin v. Löwis | 2002-11-23 | 2 | -1/+26 |
| | |||||
* | Remove duplicate test | Neal Norwitz | 2002-11-23 | 1 | -2/+0 |
| | |||||
* | Regenerate. Fixes #618012. | Martin v. Löwis | 2002-11-23 | 1 | -15/+28 |
| | |||||
* | Merge with bsddb3 2002.11.23.10.42.36 | Martin v. Löwis | 2002-11-23 | 5 | -39/+84 |
| | |||||
* | Patch #642500 with slight modifications: allow keyword arguments in | Just van Rossum | 2002-11-23 | 1 | -11/+12 |
| | | | | | | | dict() constructor. Example: >>> dict(a=1, b=2) {'a': 1, 'b': 2} >>> | ||||
* | (This is hopefully the last large, funny checkin message for | Thomas Heller | 2002-11-22 | 2 | -400/+4 |
| | | | | | | | | | | bdist_wininst.py we will see.) Removed the base64 encoded binary contents, wininst.exe must be in the same directory as this file now. wininst.exe must be recompiled and commited each time the sources in PC/bdist_wininst are changed. | ||||
* | get_python_version was not imported. | Thomas Heller | 2002-11-22 | 1 | -0/+1 |
| | |||||
* | Two bugs: | Fred Drake | 2002-11-22 | 1 | -7/+7 |
| | | | | | - assertRaises() wasn't being called correctly - test_warning() no longer applies | ||||
* | Move Windows Python away from bsddb 1.85 and toward Sleepycat's latest. | Tim Peters | 2002-11-22 | 1 | -0/+1 |
| | | | | | | | The bsddb subproject is gone. The _bsddb subproject is new. There are problems here, but I'm out of time to work on this now. If anyone can address an XXX comment or two in readme.txt, please do! | ||||
* | Comment out the warnings about mktemp(). These are too annoying, and | Guido van Rossum | 2002-11-22 | 1 | -3/+3 |
| | | | | often unavoidable. | ||||
* | Use False instead of 0. | Fred Drake | 2002-11-22 | 1 | -1/+1 |
| | |||||
* | Patch #486438: Make module argument to testmod optional. | Martin v. Löwis | 2002-11-22 | 1 | -4/+12 |
| | |||||
* | Patch #550765: Add daemon_threads flag. | Martin v. Löwis | 2002-11-22 | 1 | -1/+8 |
| | |||||
* | added new IMAP4_stream class; added proxyauth command; added login_cram_md5 ↵ | Piers Lauder | 2002-11-22 | 1 | -12/+109 |
| | | | | method | ||||
* | Implement dict() style constructor. | Raymond Hettinger | 2002-11-22 | 2 | -3/+11 |
| | | | | | | | | | | | Already supported dict() and dict(mapping). Now supports dict(itemsequence) and Just van Rossum's new syntax for dict(keywordargs). Also, added related unittests. The docs already promise dict-like behavior so no update is needed there. | ||||
* | Patch #633547: Support plural forms. Do TODOs in test suite. | Martin v. Löwis | 2002-11-21 | 3 | -162/+383 |
| | |||||
* | The _Event class should be more careful with releasing its lock when | Guido van Rossum | 2002-11-21 | 1 | -8/+14 |
| | | | | | | | | interrupted. A try/finally will do nicely. Maybe other classes need this too, but since they manipulate more state it's less clear that that is always the right thing, and I'm in a hurry. Backport candidate. | ||||
* | Reflow comment | Andrew M. Kuchling | 2002-11-21 | 1 | -3/+3 |
| | |||||
* | Patch #642019: Recognize gcc-x.y as gcc. | Martin v. Löwis | 2002-11-21 | 1 | -1/+1 |
| | |||||
* | Bug #639118 from Ollie Oldham: archiver should use zipfile before zip | Andrew M. Kuchling | 2002-11-21 | 1 | -28/+30 |
| | | | | | | | | | | | Previously archive_util.py attempted to spawn an external 'zip' program for the zip action, if this fails, an attempt to import zipfile.py is made... This bites folks who have 'old' or non-conforming zip programs on windows platforms. This change tries the 'zipfile' module first, falling back to spawning a zip process if the module isn't available. | ||||
* | _RandomNameSequence(): style guide changes, small speedup, don't | Tim Peters | 2002-11-21 | 1 | -8/+8 |
| | | | | | put more in the critical section than absolutely needed, acquire the mutex before the "try". | ||||
* | _TemporaryFileWrapper: changed self.close_called to a proper bool. | Tim Peters | 2002-11-21 | 1 | -2/+2 |
| | |||||
* | Apply Nicolas Riley's Patch. | Kurt B. Kaiser | 2002-11-21 | 1 | -5/+5 |
| | | | | | | | | [ 634250 ] SearchDialogBase.py fix for Tk 8.4.1 SearchDialogBase refers to the grid 'col' option considered ambiguous with Python 2.2.2 and Tk 8.4.1. The correct name is 'column'. | ||||
* | Fix SF #640094, on win32 getpass runs into unix_getpass | Neal Norwitz | 2002-11-20 | 1 | -1/+4 |
| | | | | | | | | Make sure we have a UNIX-compatible termios. Apparently, McMillan Installer made a termios on windows which caused unix_getpass() to be used instead of win_getpass(). Will backport. | ||||
* | Add missing import | Andrew M. Kuchling | 2002-11-20 | 1 | -1/+1 |
| | |||||
* | Add missing documentation for the PEP 293 functionality to | Walter Dörwald | 2002-11-19 | 1 | -7/+22 |
| | | | | the codecs docstrings. | ||||
* | Change int() so that passing a string, unicode, float or long argument | Walter Dörwald | 2002-11-19 | 3 | -22/+28 |
| | | | | | | | that is outside the integer range no longer raises OverflowError, but returns a long object instead. This fixes SF bug http://www.python.org/sf/635115 | ||||
* | Replace bsddb3 and _db occurrences. | Martin v. Löwis | 2002-11-19 | 3 | -4/+4 |
| | |||||
* | Importing test suite from bsddb3 3.4.0 (with modifications). | Martin v. Löwis | 2002-11-19 | 17 | -1/+3304 |
| | |||||
* | Add comment to Distutil files about requiring 1.5.2 compatibility, as | Andrew M. Kuchling | 2002-11-19 | 37 | -1/+78 |
| | | | | suggested by PEP 291. | ||||
* | Import PyBSDDB 3.4.0. Rename historical wrapper to bsddb185. | Martin v. Löwis | 2002-11-19 | 7 | -0/+1638 |
| | |||||
* | Add __mod__ method to UserString. | Neil Schemenauer | 2002-11-18 | 1 | -0/+2 |
| | |||||
* | check for str.__mod__ | Neil Schemenauer | 2002-11-18 | 1 | -0/+3 |
| | |||||
* | check for unicode.__mod__ | Neil Schemenauer | 2002-11-18 | 1 | -0/+1 |
| | |||||
* | Improve comments. Clarify docs. | Raymond Hettinger | 2002-11-18 | 1 | -15/+14 |
| | | | | | Replace "type(0)" with "int". Replace "while 1" with "while True" | ||||
* | Improve DictMixin. | Raymond Hettinger | 2002-11-18 | 2 | -29/+43 |
| | | | | | | | | | | | Replaced docstring with comments. Prevents subclass contamination. Added the missing __cmp__() method and a test for __cmp__(). Used try/except style in preference to has_key() followed by a look-up. Used iteritem() where possible to save creating a long key list and to save redundant lookups. Expanded .update() to look for the most helpful methods first and gradually work down to a mininum expected interface. Expanded documentation to be more clear on how to use the class. | ||||
* | Guard against error if .netrc is missing. | Eric S. Raymond | 2002-11-17 | 1 | -7/+10 |
| | |||||
* | SF Patch #638825 | Neal Norwitz | 2002-11-15 | 1 | -4/+7 |
| | | | | | Fix pychecker warnings, port arg was unused (it was always the default) Need a global statement for _listener | ||||
* | SF Patch #638825 logging module | Neal Norwitz | 2002-11-15 | 1 | -3/+3 |
| | | | | Fix pychecker warnings, remove unused imports and rename root | ||||
* | Style guide reformats. I saw this test fail on a very heavily loaded | Tim Peters | 2002-11-15 | 1 | -6/+9 |
| | | | | | | Win98SE box, but whatever the cause, it had scrolled off the DOS box. (There was just the "test_queue failed" summary at the end of the regrtest run.) | ||||
* | SF patch #520382: Expand shelve.py to have a full dictionary interface | Raymond Hettinger | 2002-11-15 | 1 | -0/+98 |
| | | | | | and add a mixin to UserDict.py to make it easier to implement a full dictionary interface. | ||||
* | SF patch #520382: Expand shelve.py to have a full dictionary interface | Raymond Hettinger | 2002-11-15 | 2 | -1/+67 |
| | | | | | and add a mixin to UserDict.py to make it easier to implement a full dictionary interface. |