Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | simple typo that makes regression test test_userstring fail | Peter Schneider-Kamp | 2000-08-24 | 1 | -1/+1 |
| | |||||
* | Update for augmented assignment, tested & approved by Guido. | Thomas Wouters | 2000-08-24 | 1 | -2/+5 |
| | |||||
* | Update for augmented assignment. | Thomas Wouters | 2000-08-24 | 2 | -54/+66 |
| | |||||
* | Support for augmented assignment in the UserList, UserDict, UserString and | Thomas Wouters | 2000-08-24 | 6 | -1/+327 |
| | | | | | | rfc822 (Addresslist) modules. Also a preliminary testcase for augmented assignment, which should actually be merged with the test_class testcase I added last week. | ||||
* | Promote the server version from a local variable to a class variable, | Guido van Rossum | 2000-08-24 | 1 | -3/+4 |
| | | | | | | | | | | so that a subclass can override it. This partly addresses Bug #112634 -- but the documentation is still wrong, since it suggests that you can set self.version *after* calling the base class __init__. In fact it must be done *before*. I'll fix that too. | ||||
* | Whitespace cleanup; now passes the regression test (the last checkin made | Fred Drake | 2000-08-24 | 1 | -21/+15 |
| | | | | | | | it fail on a TabError (inconsistent tab/space usage)). Removed a comment about including a test since there is a regression test for this module. | ||||
* | Updated test suite: test repr() and str() of cookies, and test metadata | Andrew M. Kuchling | 2000-08-24 | 2 | -1/+15 |
| | | | | fields with quoted values (as in Path="/acme") | ||||
* | Updated version of Cookie.py (rev. 2.29) from timo | Andrew M. Kuchling | 2000-08-24 | 1 | -19/+33 |
| | |||||
* | Randall Hopper <aa8vb@yahoo.com>>: | Fred Drake | 2000-08-24 | 1 | -3/+3 |
| | | | | Make it easier to use HTTP POST with urlretrieve(). | ||||
* | Charles G. Waldman <cgq@fnal.gov>: | Fred Drake | 2000-08-24 | 2 | -18/+4 |
| | | | | | | | Update the test suite for the changes introduced by the EXTENDED_ARG opcode. This closes the regression test changes of SourceForge patch #100893. | ||||
* | Charles G. Waldman <cgw@fnal.gov>: | Fred Drake | 2000-08-24 | 1 | -1/+7 |
| | | | | | | | | | Add the EXTENDED_ARG opcode to the virtual machine, allowing 32-bit arguments to opcodes instead of being forced to stick to the 16-bit limit. This is especially useful for machine-generated code, which can be too long for the SET_LINENO parameter to fit into 16 bits. This closes the implementation portion of SourceForge patch #100893. | ||||
* | style nits | Jeremy Hylton | 2000-08-23 | 1 | -4/+8 |
| | |||||
* | When skipping a test, do not include a spurious space between the exception | Fred Drake | 2000-08-23 | 1 | -1/+1 |
| | | | | name and the ":" that separates it from the value. (Minor cleanup.) | ||||
* | add docstring explaining makefile limitation | Jeremy Hylton | 2000-08-23 | 1 | -1/+11 |
| | | | | fix support for passing http version to connect in HTTP | ||||
* | test case output for dospath regr test | Skip Montanaro | 2000-08-23 | 1 | -0/+2 |
| | |||||
* | new test - like test_ntpath but without splitunc test cases | Skip Montanaro | 2000-08-23 | 1 | -0/+49 |
| | |||||
* | added commonprefix test cases | Skip Montanaro | 2000-08-23 | 1 | -0/+6 |
| | |||||
* | updated to correct failing test cases | Skip Montanaro | 2000-08-23 | 1 | -2/+2 |
| | |||||
* | Restored commonprefix() semantics. | Jack Jansen | 2000-08-23 | 1 | -23/+13 |
| | |||||
* | Rehabilitate autotest.py. | Tim Peters | 2000-08-23 | 2 | -1/+40 |
| | | | | | In README: Write up (Guido's) rules for intra-test imports; warn against asserts; document test_support.use_large_resources. | ||||
* | revert semantics of commonprefix to work character-by-character | Skip Montanaro | 2000-08-22 | 3 | -26/+11 |
| | |||||
* | * added doc strings to urlopen and unquote_plus | Skip Montanaro | 2000-08-22 | 1 | -1/+3 |
| | | | | * fixed type in doc string for quote | ||||
* | require list comprehensions to start with a for clause | Skip Montanaro | 2000-08-22 | 2 | -0/+7 |
| | |||||
* | Patch by Toby Dickenson: don't die when an error occurs during string | Guido van Rossum | 2000-08-22 | 1 | -1/+7 |
| | | | | | conversion in an exception, but instead display <unprintable %s object> where %s is the type name. | ||||
* | Don't bother to 'mkpath()' the 'dist_dir' -- that's now taken care of | Greg Ward | 2000-08-22 | 1 | -2/+0 |
| | | | | in archive_util.py. | ||||
* | Ensure destination directory exists before trying to create a tarball | Greg Ward | 2000-08-22 | 1 | -2/+4 |
| | | | | or ZIP file. | ||||
* | Don't reference a module named test.test_support. Always use plain | Guido van Rossum | 2000-08-21 | 2 | -7/+1 |
| | | | | test_support. Also fixed the expected output. | ||||
* | Add a minimal test suite for the parser module. | Fred Drake | 2000-08-21 | 2 | -0/+152 |
| | |||||
* | Denis S. Otkidach <den@analyt.chem.msu.ru>: | Fred Drake | 2000-08-21 | 1 | -2/+2 |
| | | | | | | Let UserString.translate() method work with unicode data. This closes SourceForge patch #101246. | ||||
* | Patch from Paul Schreiber <paul@commerceflow.com>: | Fred Drake | 2000-08-21 | 1 | -6/+19 |
| | | | | | | | | | | | | | | | | | | Patch description ----------------- This addresses four issues: (1) usernames and passwords in urls with special characters are now decoded properly. i.e. http://foo%2C:bar@www.whatever.com/ (2) Basic Auth support has been added to HTTPS, like it was in HTTP. (3) Version 1.92 sent the POSTed data, but did not deal with errors (HTTP responses other than 200) properly. HTTPS now behaves the same way HTTP does. (4) made URL-checking beahve the same way with HTTPS as it does with HTTP (changed == to !=). | ||||
* | Add the new PRINT_ITEM_TO and PRINT_NEWLINE_TO opcodes. | Barry Warsaw | 2000-08-21 | 1 | -0/+2 |
| | |||||
* | Add TestSkipped as another interesting item defined by test_support. | Fred Drake | 2000-08-21 | 1 | -0/+4 |
| | |||||
* | PEP 214, Extended print Statement, has been accepted by the BDFL. | Barry Warsaw | 2000-08-21 | 2 | -0/+23 |
| | | | | Additional test cases for the extended print form. | ||||
* | Remove the winreg module from the project. I don't believe any | Tim Peters | 2000-08-21 | 3 | -813/+0 |
| | | | | | | | docs changes are needed (only reference to winreg I could find was in libwinreg.tex, which is documenting _winreg, and merely mentions that a higher-level winreg module *may* appear someday; that's still true). | ||||
* | Changed the popen2.py _test function to use the "more" cmd when | Tim Peters | 2000-08-20 | 1 | -5/+10 |
| | | | | | | | | os.name == "nt". This makes test_popen2 pass under Win98SE. HOWEVER, the Win98 "more" invents a leading newline out of thin air, and I'm not sure that the other Windows flavors of "more" also do that. So, somebody please try under other Windows flavors! | ||||
* | David Goodger's new getopt test module (thanks, David!). | Tim Peters | 2000-08-20 | 2 | -0/+108 |
| | | | | | https://sourceforge.net/patch/?func=detailpatch&patch_id=101110&group_id=5470 Accepted as-is, except for purging an "import *". | ||||
* | Adding tests of the "attrs" optional argument, and of the js_output | Moshe Zadka | 2000-08-19 | 2 | -0/+20 |
| | | | | functionality. | ||||
* | Test case for Cookie.py | Andrew M. Kuchling | 2000-08-19 | 2 | -0/+33 |
| | |||||
* | Added Tim O'Malley's Cookie.py module (master version at | Andrew M. Kuchling | 2000-08-19 | 1 | -0/+718 |
| | | | | | http://www.timo-tasi.org/python/Cookie.py) This is revision 2.26 according to Tim's RCS history. | ||||
* | Better conformance to the Python Style Guide: use spaces around operators. | Fred Drake | 2000-08-18 | 1 | -32/+33 |
| | |||||
* | When a KeyboardInterrupt is caught, just use the "raise" syntax to | Fred Drake | 2000-08-18 | 1 | -2/+2 |
| | | | | re-raise it instead of re-raising it "manually" the ugly way. | ||||
* | Revise to use atexit instead of monkeying with sys.exitfunc directly. | Fred Drake | 2000-08-18 | 1 | -9/+2 |
| | |||||
* | Convert some old-style string exceptions to class exceptions. | Fred Drake | 2000-08-18 | 8 | -10/+20 |
| | |||||
* | Convert some old-style string exceptions to class exceptions. | Fred Drake | 2000-08-18 | 2 | -2/+4 |
| | |||||
* | Update to reflect the recent Grammar changes. | Fred Drake | 2000-08-17 | 1 | -40/+42 |
| | |||||
* | Apply SF patch #101135, adding 'import module as m' and 'from module import | Thomas Wouters | 2000-08-17 | 3 | -1/+35 |
| | | | | | | | | name as n'. By doing some twists and turns, "as" is not a reserved word. There is a slight change in semantics for 'from module import name' (it will now honour the 'global' keyword) but only in cases that are explicitly undocumented. | ||||
* | Apply SF patch #101029: call __getitem__ with a proper slice object if there | Thomas Wouters | 2000-08-17 | 2 | -0/+320 |
| | | | | | | | | is no __getslice__ available. Also does the same for C extension types. Includes rudimentary documentation (it could use a cross reference to the section on slice objects, I couldn't figure out how to do that) and a test suite for all Python __hooks__ I could think of, including the new behaviour. | ||||
* | Convert some old-style string exceptions to class exceptions. | Fred Drake | 2000-08-17 | 6 | -12/+17 |
| | |||||
* | Convert some old-style string exceptions to class exceptions. | Fred Drake | 2000-08-17 | 6 | -6/+14 |
| | |||||
* | updated occurences of fqdn algorithm (closes patch #101197) | Peter Schneider-Kamp | 2000-08-16 | 3 | -36/+8 |
| |