| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Tagging for release of Python 3.0a1.v3.0a1 | Guido van Rossum | 2007-08-31 | 1 | -0/+1 |
| | | |||||
| * | Got test_plistlib working. Don't ask how. | Guido van Rossum | 2007-08-31 | 1 | -4/+4 |
| | | |||||
| * | Fix fall-out of str.decode removal. | Guido van Rossum | 2007-08-31 | 1 | -1/+1 |
| | | |||||
| * | Neal sent real performance numbers. :-( | Guido van Rossum | 2007-08-31 | 1 | -2/+3 |
| | | |||||
| * | Per Georg's suggestion, get rid of str.decode() (which always raises an | Guido van Rossum | 2007-08-31 | 2 | -35/+9 |
| | | | | | | exception) and change bytes.find() to use _getbuffer(), so b"".find("") will raise TypeError instead of SystemError. | ||||
| * | Add a workaround for a strange bug on win64, when _ctypes is compiled | Thomas Heller | 2007-08-31 | 1 | -0/+6 |
| | | | | | | with the SDK compiler. This should fix the failing Lib\ctypes\test\test_as_parameter.py test. | ||||
| * | Restore test_email for a1. It passes completely. | Barry Warsaw | 2007-08-31 | 2 | -2/+15 |
| | | |||||
| * | Explicitly convert err->text to Unicode. Fixes #1069. | Martin v. Löwis | 2007-08-31 | 1 | -3/+12 |
| | | |||||
| * | Change %s argument for PyUnicode_FromFormat to | Martin v. Löwis | 2007-08-31 | 1 | -2/+46 |
| | | | | | be UTF-8. Fixes #1070. | ||||
| * | Make test_email.py completely pass. This is cheating though because the two | Barry Warsaw | 2007-08-31 | 2 | -25/+29 |
| | | | | | | | | | | line splitting examples don't split things the way they used to -- or should. In these cases, change the test case and add an XXX. The final failure was in Charset.body_encode() with euc-jp charset. These return the original string unencoded, which isn't right. XXX and comment this out for now; we'll fix it after a1. | ||||
| * | string.maketrans() now produces translation tables for bytes.translate() -- ↵ | Georg Brandl | 2007-08-31 | 9 | -62/+39 |
| | | | | | | | wrong module? Fix all remaining instances that did bad things with the new str.translate(). | ||||
| * | Add bytes methods documentation. | Georg Brandl | 2007-08-31 | 3 | -61/+243 |
| | | |||||
| * | Mark registry components as 64-bit on Win64. | Martin v. Löwis | 2007-08-31 | 1 | -4/+6 |
| | | |||||
| * | Fix a buggy test. str8 objects contained NUL-terminated strings, | Thomas Heller | 2007-08-31 | 1 | -1/+1 |
| | | | | | bytes objects don't. | ||||
| * | Commit #1068: new docs for PEP 3101. Also document the old string formatting ↵ | Georg Brandl | 2007-08-31 | 9 | -389/+513 |
| | | | | | as "old", and begin documenting str/unicode unification. | ||||
| * | round(1e20) wrongly returned 0. | Thomas Heller | 2007-08-31 | 1 | -1/+0 |
| | | | | | | | | This fixes test_builtin on windows. (bug was introduced by the merge of the int/long unification branch, rev 53421) | ||||
| * | Update the first two parts of the reference manual for Py3k, | Georg Brandl | 2007-08-31 | 3 | -234/+175 |
| | | | | | mainly concerning PEPs 3131 and 3120. | ||||
| * | Revert 57722. Move error dialog APIs to msvcrt instead, | Martin v. Löwis | 2007-08-31 | 4 | -23/+97 |
| | | | | | add -n option to regrtest, and use it on the buildbot. | ||||
| * | Regenerate Lib/symbol.py. | Georg Brandl | 2007-08-31 | 1 | -81/+73 |
| | | |||||
| * | Fix unicode issue in tutorial. | Georg Brandl | 2007-08-31 | 1 | -4/+2 |
| | | |||||
| * | Fix test_startfile and remove duplicated test. | Thomas Heller | 2007-08-31 | 1 | -8/+0 |
| | | |||||
| * | Insert "startfile" into posix_methods again; it was accidentially | Thomas Heller | 2007-08-31 | 1 | -0/+3 |
| | | | | | removed in rev 55543. | ||||
| * | Fix sphinx-build so that it runs with 2.x and 3.x but refuses to start with 3.x. | Georg Brandl | 2007-08-31 | 1 | -7/+6 |
| | | |||||
| * | Correct a few typos. | Georg Brandl | 2007-08-31 | 1 | -76/+75 |
| | | |||||
| * | Ugh, hopefully I can get this right. The code is only compiled on Win64 | Neal Norwitz | 2007-08-31 | 1 | -1/+1 |
| | | |||||
| * | Try to fix the problem of passing a non-int on Win64 right this time. | Neal Norwitz | 2007-08-31 | 1 | -2/+5 |
| | | |||||
| * | Remove checking redundantly for checks of PyInt and PyLong. | Neal Norwitz | 2007-08-31 | 7 | -15/+14 |
| | | |||||
| * | Try to fix a problem with large values on Win64. Diagnosed by Thomas Heller | Neal Norwitz | 2007-08-31 | 1 | -1/+1 |
| | | |||||
| * | Force test_mailbox and test_old_mailbox into submission. | Guido van Rossum | 2007-08-31 | 3 | -9/+12 |
| | | | | | | | | | | (a) Several tests in test_mailbox were failing because we were writing text to a file opened in binary mode. Switching to text fixed these. (b) test_unix_mbox() in each test does a wacko comparison which apparently no longer works due to a different way the message gets parsed. I disabled this, I don't think the test was testing what it thought it was testing. | ||||
| * | Remove chr8, we're not likely to need it at this point | Neal Norwitz | 2007-08-31 | 1 | -26/+1 |
| | | |||||
| * | 1. Don't encode input strings to bytes. | Kurt B. Kaiser | 2007-08-31 | 1 | -7/+1 |
| | | | | | 2. Re-enable stderr redirection. | ||||
| * | Thomas removed all the SLICE op codes | Neal Norwitz | 2007-08-31 | 1 | -65/+0 |
| | | |||||
| * | Customary 2nd submit of this file after it's been changed. | Guido van Rossum | 2007-08-31 | 1 | -2/+2 |
| | | |||||
| * | A few more fixes to the tutorial | Neal Norwitz | 2007-08-31 | 2 | -7/+6 |
| | | |||||
| * | More email package fixes. | Barry Warsaw | 2007-08-31 | 2 | -10/+9 |
| | | | | | | | | | | Fix a couple of tests since .body_encode()'s arguments have changed. Also, I think body_encode() should take a string not a byte array for consistency with the rest of the api (but I'm not positive about this). In quoprimime.body_encode(), body_check() must be passed an int. Current status: 7F (no errors!) | ||||
| * | Tutorial update for 3.0 by Paul Dubois. | Guido van Rossum | 2007-08-31 | 12 | -352/+378 |
| | | | | | | | I had to fix a few markup issues in controlflow.rst and modules.rst. There's a unicode issue on line 448 in introduction.rst that someone else needs to fix. | ||||
| * | More email package fixes. | Barry Warsaw | 2007-08-31 | 4 | -34/+10 |
| | | | | | | | | | | | MIMEApplication() requires a bytes object for its _data, so fix the tests. We no longer need utils._identity() or utils._bdecode(). The former isn't used anywhere AFAICT (where's "make test's" lint? <wink>) and the latter is a kludge that is eliminated by base64.b64encode(). Current status: 5F/5E | ||||
| * | More email package fixes. | Barry Warsaw | 2007-08-31 | 2 | -14/+16 |
| | | | | | | | | | This repairs the linear whitespace insertion between RFC 2047 encoded words without leaving bogus trailing spaces at the end lines that end in encoded words. Current status: 7F/9E | ||||
| * | Changed signature of string.Formatter.get_field, per suggestion by | Eric Smith | 2007-08-31 | 2 | -7/+27 |
| | | | | | | | Ron Adam. Added test case for using all parameters in string.Formatter. | ||||
| * | Fixed test name. | Eric Smith | 2007-08-31 | 1 | -1/+1 |
| | | |||||
| * | Added test cases for string.Formatter subclassing. | Eric Smith | 2007-08-31 | 3 | -20/+76 |
| | | | | | | Made format_spec parameter to builtin format optional, defaults to empty string. Added test cases. | ||||
| * | Fix a compile error on Windows. | Collin Winter | 2007-08-31 | 1 | -1/+1 |
| | | |||||
| * | Cut test_raise down to size. | Collin Winter | 2007-08-31 | 1 | -278/+0 |
| | | |||||
| * | Update import.c's MAGIC value for the new raise syntax (as opposed to merely ↵ | Collin Winter | 2007-08-31 | 1 | -1/+1 |
| | | | | | updating the comment). | ||||
| * | Minor tweaks. | Guido van Rossum | 2007-08-31 | 1 | -4/+6 |
| | | |||||
| * | First draft of a what's new document. | Guido van Rossum | 2007-08-31 | 1 | -26/+248 |
| | | | | | (There's something wrong with my network right now so I can't build it.) | ||||
| * | Use pow() instead of repeated multiplication by 10 in round(x, n). | Guido van Rossum | 2007-08-31 | 1 | -15/+5 |
| | | |||||
| * | Fix test_smtplib by munging asynchat some more. | Thomas Wouters | 2007-08-31 | 2 | -3/+12 |
| | | |||||
| * | Issue #1066: implement PEP 3109, 2/3 of PEP 3134. | Collin Winter | 2007-08-31 | 32 | -253/+761 |
| | | |||||
| * | Remove curses temp file consistently. | Guido van Rossum | 2007-08-30 | 1 | -0/+6 |
| | | |||||
