summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Saving a file containing unicode failed.Kurt B. Kaiser2007-09-011-14/+11
|
* I'm not actually an authorAndrew M. Kuchling2007-09-011-1/+1
|
* Document PyCFunctionWithKeywords, add comment for PEP 3123.Georg Brandl2007-09-011-1/+10
|
* Document sets' "<" and ">" operations.Georg Brandl2007-09-011-0/+10
|
* Use symbolic name for METH_VARARGS.Georg Brandl2007-09-011-14/+14
|
* Use symbolic name for METH_VARAGS.Georg Brandl2007-09-011-1/+1
|
* Get rid of METH_OLDARGS.Georg Brandl2007-09-013-24/+5
|
* Get rid of the remaining versionadded/versionchanged directives.Georg Brandl2007-09-01161-2197/+335
|
* Remove versionadded/versionchanged in the reference.Georg Brandl2007-09-013-57/+5
|
* Remove versionadded and versionchanged directives, fold information into ↵Georg Brandl2007-09-017-442/+41
| | | | text where necessary.
* Add a warning text about mixing bytes and strings.Georg Brandl2007-09-011-0/+6
|
* Changed to use 'U' argument to PyArg_ParseTuple, instead of manually ↵Eric Smith2007-09-016-21/+16
| | | | checking for unicode objects.
* Fix RST link.Georg Brandl2007-09-011-1/+1
|
* Bug #1074: make python-config with Py3k.Georg Brandl2007-09-011-7/+7
|
* Bug #1737210: Change Manufacturer of Windows installer to PSF.Martin v. Löwis2007-09-011-1/+1
|
* Eliminate latin-1 encodingKurt B. Kaiser2007-08-311-1/+1
|
* Point IDLE menu Help / Python Docs at Python 3000 versionKurt B. Kaiser2007-08-311-1/+1
|
* Removed unicode_format and unicode__format__, they just called through to ↵Eric Smith2007-08-311-19/+2
| | | | other functions.
* Convert IDLE's CREDITS file to unicode.Kurt B. Kaiser2007-08-311-1/+1
|
* Updated tracker link.Guido van Rossum2007-08-311-6/+3
|
* Address a few XXX comments, other fixes.Georg Brandl2007-08-3120-124/+43
|
* Add bytes/remove unicode from the data model.Georg Brandl2007-08-311-64/+36
|
* - document bytes()Georg Brandl2007-08-3110-321/+182
| | | | | | | - throw out many mentions of "old-style/new-style" - add memoryview() though I somebody has to fill in the details - throw out str.decode() - throw out classobj and instanceobj
* Tagging for release of Python 3.0a1.v3.0a1Guido van Rossum2007-08-311-0/+1
|
* Got test_plistlib working. Don't ask how.Guido van Rossum2007-08-311-4/+4
|
* Fix fall-out of str.decode removal.Guido van Rossum2007-08-311-1/+1
|
* Neal sent real performance numbers. :-(Guido van Rossum2007-08-311-2/+3
|
* Per Georg's suggestion, get rid of str.decode() (which always raises anGuido van Rossum2007-08-312-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 compiledThomas Heller2007-08-311-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 Warsaw2007-08-312-2/+15
|
* Explicitly convert err->text to Unicode. Fixes #1069.Martin v. Löwis2007-08-311-3/+12
|
* Change %s argument for PyUnicode_FromFormat toMartin v. Löwis2007-08-311-2/+46
| | | | be UTF-8. Fixes #1070.
* Make test_email.py completely pass. This is cheating though because the twoBarry Warsaw2007-08-312-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 Brandl2007-08-319-62/+39
| | | | | | wrong module? Fix all remaining instances that did bad things with the new str.translate().
* Add bytes methods documentation.Georg Brandl2007-08-313-61/+243
|
* Mark registry components as 64-bit on Win64.Martin v. Löwis2007-08-311-4/+6
|
* Fix a buggy test. str8 objects contained NUL-terminated strings,Thomas Heller2007-08-311-1/+1
| | | | bytes objects don't.
* Commit #1068: new docs for PEP 3101. Also document the old string formatting ↵Georg Brandl2007-08-319-389/+513
| | | | as "old", and begin documenting str/unicode unification.
* round(1e20) wrongly returned 0.Thomas Heller2007-08-311-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 Brandl2007-08-313-234/+175
| | | | mainly concerning PEPs 3131 and 3120.
* Revert 57722. Move error dialog APIs to msvcrt instead,Martin v. Löwis2007-08-314-23/+97
| | | | add -n option to regrtest, and use it on the buildbot.
* Regenerate Lib/symbol.py.Georg Brandl2007-08-311-81/+73
|
* Fix unicode issue in tutorial.Georg Brandl2007-08-311-4/+2
|
* Fix test_startfile and remove duplicated test.Thomas Heller2007-08-311-8/+0
|
* Insert "startfile" into posix_methods again; it was accidentiallyThomas Heller2007-08-311-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 Brandl2007-08-311-7/+6
|
* Correct a few typos.Georg Brandl2007-08-311-76/+75
|
* Ugh, hopefully I can get this right. The code is only compiled on Win64Neal Norwitz2007-08-311-1/+1
|
* Try to fix the problem of passing a non-int on Win64 right this time.Neal Norwitz2007-08-311-2/+5
|
* Remove checking redundantly for checks of PyInt and PyLong.Neal Norwitz2007-08-317-15/+14
|