Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added math.rint() -- round according to current IEEE754 mode | Guido van Rossum | 2000-05-11 | 1 | -0/+1 |
| | |||||
* | Added test_winsound by Mark Hammond. | Guido van Rossum | 2000-04-21 | 1 | -0/+2 |
| | |||||
* | M.-A. Lemburg <mal@lemburg.com>: | Fred Drake | 2000-04-13 | 1 | -0/+1 |
| | | | | Added test output for Unicode string concatenation test. | ||||
* | Output from test_zipfile.py. | Guido van Rossum | 2000-04-10 | 1 | -0/+1 |
| | |||||
* | Marc-Andre's third try at this bulk patch seems to work (except that | Guido van Rossum | 2000-04-05 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | his copy of test_contains.py seems to be broken -- the lines he deleted were already absent). Checkin messages: New Unicode support for int(), float(), complex() and long(). - new APIs PyInt_FromUnicode() and PyLong_FromUnicode() - added support for Unicode to PyFloat_FromString() - new encoding API PyUnicode_EncodeDecimal() which converts Unicode to a decimal char* string (used in the above new APIs) - shortcuts for calls like int(<int object>) and float(<float obj>) - tests for all of the above Unicode compares and contains checks: - comparing Unicode and non-string types now works; TypeErrors are masked, all other errors such as ValueError during Unicode coercion are passed through (note that PyUnicode_Compare does not implement the masking -- PyObject_Compare does this) - contains now works for non-string types too; TypeErrors are masked and 0 returned; all other errors are passed through Better testing support for the standard codecs. Misc minor enhancements, such as an alias dbcs for the mbcs codec. Changes: - PyLong_FromString() now applies the same error checks as does PyInt_FromString(): trailing garbage is reported as error and not longer silently ignored. The only characters which may be trailing the digits are 'L' and 'l' -- these are still silently ignored. - string.ato?() now directly interface to int(), long() and float(). The error strings are now a little different, but the type still remains the same. These functions are now ready to get declared obsolete ;-) - PyNumber_Int() now also does a check for embedded NULL chars in the input string; PyNumber_Long() already did this (and still does) Followed by: Looks like I've gone a step too far there... (and test_contains.py seem to have a bug too). I've changed back to reporting all errors in PyUnicode_Contains() and added a few more test cases to test_contains.py (plus corrected the join() NameError). | ||||
* | UserString class from Peter Funk <pf@artcom-gmbh.de>. | Fred Drake | 2000-04-03 | 1 | -0/+1 |
| | |||||
* | Added test case output for pyexpat module | Andrew M. Kuchling | 2000-03-31 | 1 | -0/+31 |
| | |||||
* | Two fixes for extended call syntax: | Jeremy Hylton | 2000-03-30 | 1 | -0/+4 |
| | | | | | | | If a non-tuple sequence is passed as the *arg, convert it to a tuple before checking its length. If named keyword arguments are used in combination with **kwargs, make a copy of kwargs before inserting the new keys. | ||||
* | Output for simple test case for mmap on Unix; someone needs to write a | Andrew M. Kuchling | 2000-03-30 | 1 | -0/+0 |
| | | | | Win32 test case. | ||||
* | fix previous checkin | Jeremy Hylton | 2000-03-28 | 2 | -23/+7 |
| | |||||
* | add test cases for Greg Ewing's extended call syntax patch | Jeremy Hylton | 2000-03-28 | 2 | -0/+42 |
| | |||||
* | Mark Hammond: test suite for new winreg module. | Guido van Rossum | 2000-03-28 | 1 | -0/+4 |
| | |||||
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-03-28 | 2 | -1/+4 |
| | | | | | | | | | | | | | | | The attached patch set includes a workaround to get Python with Unicode compile on BSDI 4.x (courtesy Thomas Wouters; the cause is a bug in the BSDI wchar.h header file) and Python interfaces for the MBCS codec donated by Mark Hammond. Also included are some minor corrections w/r to the docs of the new "es" and "es#" parser markers (use PyMem_Free() instead of free(); thanks to Mark Hammond for finding these). The unicodedata tests are now in a separate file (test_unicodedata.py) to avoid problems if the module cannot be found. | ||||
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-03-24 | 1 | -1/+0 |
| | | | | | | | | | | Attached you find the latest update of the Unicode implementation. The patch is against the current CVS version. It includes the fix I posted yesterday for the core dump problem in codecs.c (was introduced by my previous patch set -- sorry), adds more tests for the codecs and two new parser markers "es" and "es#". | ||||
* | Regenerated with test for 'contains'. | Guido van Rossum | 2000-03-24 | 1 | -0/+1 |
| | |||||
* | Marc-Andre Lemburg: test script for Unicode implementation. | Guido van Rossum | 2000-03-10 | 1 | -0/+4 |
| | |||||
* | test_contains output | Guido van Rossum | 2000-03-06 | 1 | -0/+1 |
| | |||||
* | Test case for fork1() behavior. | Guido van Rossum | 2000-02-25 | 1 | -0/+1 |
| | | | | Only the main thread should survive in the child after a fork(). | ||||
* | Test output. | Guido van Rossum | 1999-10-19 | 1 | -0/+28 |
| | | | | | (XXX perhaps a bit too verbose; in particular it is sensitive to all the doc strings.) | ||||
* | Test output for test_binhex.py. | Guido van Rossum | 1999-10-19 | 1 | -0/+1 |
| | |||||
* | Output for the regression test of the new string methods. | Barry Warsaw | 1999-06-10 | 1 | -0/+3 |
| | |||||
* | Jonathan Giddy discovered this file was missing. | Guido van Rossum | 1999-03-29 | 1 | -0/+1 |
| | |||||
* | Test suite for UserList. | Guido van Rossum | 1999-03-26 | 1 | -0/+1 |
| | |||||
* | Test suite for UserDict | Guido van Rossum | 1999-03-26 | 1 | -0/+1 |
| | |||||
* | Basic regr tests for pickle/cPickle | Guido van Rossum | 1999-03-25 | 2 | -0/+22 |
| | |||||
* | Added Jeremy's test code for the sha module. | Guido van Rossum | 1999-03-24 | 1 | -0/+4 |
| | |||||
* | Test for popen2 module, by Chris Tismer. | Guido van Rossum | 1999-03-11 | 1 | -0/+5 |
| | |||||
* | New test for ntpath module | Guido van Rossum | 1999-02-03 | 1 | -0/+2 |
| | |||||
* | Test the rfc822.py module. Contains just a few simple cases, and some | Barry Warsaw | 1999-01-14 | 1 | -0/+1 |
| | | | | troublesome ones encountered on the c.l.py list. | ||||
* | New test_long.py from Tim Peters. | Guido van Rossum | 1998-10-02 | 1 | -1/+2 |
| | |||||
* | Add Tim Peters' test for long ints | Guido van Rossum | 1998-08-13 | 1 | -0/+5 |
| | |||||
* | Now that test_MimeWriter is untabified, do the same here! | Guido van Rossum | 1998-06-11 | 1 | -15/+15 |
| | |||||
* | Use hex() when outputting the various checksums so the test output is the | Guido van Rossum | 1998-04-24 | 1 | -2/+2 |
| | | | | same on 32 and 64 bit machines. | ||||
* | Add test for MimeWriter module | Guido van Rossum | 1998-04-23 | 1 | -0/+110 |
| | |||||
* | Track changes in tokenize.py | Guido van Rossum | 1998-04-03 | 1 | -30/+30 |
| | |||||
* | Adding output of test_xmllib.py | Guido van Rossum | 1998-02-13 | 1 | -0/+1 |
| | |||||
* | Tests for tokenize.py (Ka-Ping Yee) | Guido van Rossum | 1997-10-27 | 1 | -0/+592 |
| | |||||
* | Added test for __all__. | Guido van Rossum | 1997-09-08 | 1 | -0/+7 |
| | |||||
* | Added feeble test for reload() of packages and submodules. | Guido van Rossum | 1997-09-06 | 1 | -0/+2 |
| | |||||
* | Test set for package import. | Guido van Rossum | 1997-09-06 | 1 | -0/+29 |
| | |||||
* | Now produces some reassuring output. | Jeremy Hylton | 1997-09-04 | 1 | -0/+9 |
| | |||||
* | Output for sequence unpacking test | Barry Warsaw | 1997-08-25 | 1 | -0/+1 |
| | |||||
* | generated output for new tests | Barry Warsaw | 1997-08-22 | 1 | -0/+2 |
| | |||||
* | Forgot to check in the fixed output for print | Guido van Rossum | 1997-08-18 | 1 | -1/+1 |
| | |||||
* | generated by regrtest.py -g | Jeremy Hylton | 1997-08-15 | 1 | -0/+1 |
| | |||||
* | Print `a` so encrypted text is shown in ascii, not binary. | Guido van Rossum | 1997-08-14 | 1 | -1/+1 |
| | |||||
* | Add test for function comparisons | Guido van Rossum | 1997-08-05 | 1 | -0/+1 |
| | |||||
* | Corresponding output. | Guido van Rossum | 1997-07-17 | 1 | -1/+11 |
| | |||||
* | Jeffrey's latest -- seems to solve most problems! | Guido van Rossum | 1997-07-17 | 1 | -131/+19 |
| | |||||
* | Added output from new tests. | Guido van Rossum | 1997-07-15 | 1 | -0/+381 |
| |