Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | The "more" cmd varies across Windows flavors, sometimes adding stray | Tim Peters | 2000-09-01 | 1 | -7/+16 |
| | | | | | | | | newlines at the start or end. Fiddle test_popen2 and popen2._test() to tolerate this. Also change all "assert"s in these tests to raise explicit exceptions, so that python -O doesn't render them useless. Also, in case of error, make the msg display the reprs of what we wrote and what we read, so we can tell exactly why it's failing. | ||||
* | Applying patch #100994 to allow JPython to use more of the standard | Barry Warsaw | 2000-09-01 | 4 | -12/+19 |
| | | | | | | | | | | | | | Python test suite. Specifically, - import time instead of strop in test_b1 - test for ClassType of exceptions using isinstance instead of equality in test_exceptions - remove __builtins__ from dir() output in test_pkg test_pkg output needs to be regenerated. | ||||
* | closes bug #112468 (and all the other bugs that surfaced when | Fredrik Lundh | 2000-08-31 | 1 | -15/+38 |
| | | | | I fixed the a bug in the regression test harness...) | ||||
* | Test case to exercise fix for error propogation bug in dictionarys. | Fred Drake | 2000-08-31 | 2 | -2/+28 |
| | |||||
* | fixes bug #111951 | Jeremy Hylton | 2000-08-31 | 2 | -0/+15 |
| | | | | | | applies patch #101369 by Moshe Zadke use explicit list of always safe characters instead of string.letters add test case | ||||
* | Expand the test suite to test both the GNU gettext and translation | Barry Warsaw | 2000-08-30 | 2 | -257/+154 |
| | | | | class-based APIs. | ||||
* | Fix for two problems on FreeBSD: | Andrew M. Kuchling | 2000-08-29 | 1 | -3/+6 |
| | | | | | | | In test_poll1(), unregister file descriptors as they're closed, and also close the read end of the pipe In test_poll2(), make the code assume less about the combinations of flag bits that will be returned | ||||
* | Add support for FreeBSD-[45]. | Guido van Rossum | 2000-08-29 | 1 | -1/+1 |
| | | | | -- tg@FreeBSD.org | ||||
* | Added tests of "print >> None" | Barry Warsaw | 2000-08-29 | 2 | -0/+26 |
| | |||||
* | Added os.popen2() and os.popen3() for non-Windows platforms. | Fred Drake | 2000-08-28 | 2 | -1/+39 |
| | |||||
* | Open binary files in binary mode. Fixes test failure under Windows. | Tim Peters | 2000-08-26 | 1 | -1/+1 |
| | |||||
* | Tim Peters: | Moshe Zadka | 2000-08-26 | 1 | -26/+0 |
| | | | | | Again due to the duplicate copies of test_support, the checked-in "expected output" file actually contains verbose-mode output. | ||||
* | Another new test using "from test.test_support import ...", causing | Tim Peters | 2000-08-26 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | subtle breakage on Windows (the test is skipped here, but the TestSkipped exception wasn't recognized as such, because of duplicate copies of test_support got loaded; so the test looks like a failure under Windows instead of a skip). Repaired the import, but THIS TEST *WILL* FAIL ON OTHER SYSTEMS NOW! Again due to the duplicate copies of test_support, the checked-in "expected output" file actually contains verbose-mode output. I can't generate the *correct* non-verbose output on my system. So, somebody please do that. | ||||
* | Update the parser module to support augmented assignment. | Fred Drake | 2000-08-25 | 2 | -43/+122 |
| | | | | Add some test cases. | ||||
* | Output of the new test | Marc-André Lemburg | 2000-08-25 | 1 | -0/+1 |
| | |||||
* | New test suite for file objects by Jeremy Hilton. This will need | Marc-André Lemburg | 2000-08-25 | 1 | -0/+45 |
| | | | | | to be extended somewhat -- right now it only tests the .writelines() method. | ||||
* | Closing patch #101120 -- After everyone agreed. | Moshe Zadka | 2000-08-25 | 1 | -3/+13 |
| | |||||
* | Group consensus is that supporting alternative locale categories is | Barry Warsaw | 2000-08-25 | 1 | -6/+0 |
| | | | | useless. So the test of the dcgettext() function is removed. | ||||
* | Set this test up so that we don't have to create xx/LC_MESSAGES in the | Barry Warsaw | 2000-08-25 | 1 | -66/+320 |
| | | | | | cvs tree. It creates the directory and gettext.mo file on the fly, from the base64 encode binary data. | ||||
* | updated test output | Barry Warsaw | 2000-08-25 | 1 | -3/+24 |
| | |||||
* | output from test_gettext.py test suite | Barry Warsaw | 2000-08-25 | 1 | -0/+4 |
| | |||||
* | Test suite for new gettext.py module. | Barry Warsaw | 2000-08-25 | 1 | -0/+76 |
| | |||||
* | Test suite for poll() interface (SF patch #100852) | Andrew M. Kuchling | 2000-08-25 | 2 | -0/+214 |
| | |||||
* | Support for augmented assignment in the UserList, UserDict, UserString and | Thomas Wouters | 2000-08-24 | 2 | -0/+280 |
| | | | | | | rfc822 (Addresslist) modules. Also a preliminary testcase for augmented assignment, which should actually be merged with the test_class testcase I added last week. | ||||
* | 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") | ||||
* | 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. | ||||
* | 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.) | ||||
* | 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 |
| | |||||
* | 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. | ||||
* | require list comprehensions to start with a for clause | Skip Montanaro | 2000-08-22 | 2 | -0/+7 |
| | |||||
* | 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 |
| | |||||
* | 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 | 2 | -427/+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). | ||||
* | 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 |
| | |||||
* | 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. | ||||
* | Convert some old-style string exceptions to class exceptions. | Fred Drake | 2000-08-18 | 2 | -2/+4 |
| | |||||
* | Apply SF patch #101135, adding 'import module as m' and 'from module import | Thomas Wouters | 2000-08-17 | 2 | -0/+34 |
| | | | | | | | | 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. | ||||
* | Chris Herborth <chrish@pobox.com>: | Fred Drake | 2000-08-15 | 1 | -0/+9 |
| | | | | | | | | | Minor updates for BeOS R5. Use of OSError in test.test_fork1 changed to TestSkipped, with corresponding change in BeOS/README (by Fred). This closes SourceForge patch #100978. | ||||
* | Update test output to reflect change in SyntaxError formatting. | Fred Drake | 2000-08-15 | 1 | -1/+1 |
| | | | | This closes SourceForge bug #110628 (Jitterbug PR#278). | ||||
* | tests for binascii.b2a_hex() and binascii.a2b_hex(). | Barry Warsaw | 2000-08-15 | 1 | -0/+19 |
| |