summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Backport r67974:Georg Brandl2008-12-283-16/+38
| | | | | | #4759: allow None as first argument of bytearray.translate(), for consistency with bytes.translate(). Also fix segfault for bytearray.translate(x, None) -- will backport this part to 3.0 and 2.6.
* Document Py_VaBuildValue.Alexandre Vassalotti2008-12-281-0/+5
|
* Sort UCS-2/UCS-4 name mangling list.Alexandre Vassalotti2008-12-281-8/+8
|
* Fix name mangling of PyUnicode_ClearFreeList.Alexandre Vassalotti2008-12-281-1/+1
|
* fix markupBenjamin Peterson2008-12-271-1/+1
|
* Issue #4677: add two list comprehension tests to pybench.Antoine Pitrou2008-12-272-0/+60
|
* #4671: document that pydoc imports modules.Georg Brandl2008-12-271-0/+7
|
* Use :samp: role.Georg Brandl2008-12-271-2/+2
|
* #4695: fix backslashery.Georg Brandl2008-12-271-2/+2
|
* #4682: 'b' is actually unsigned char.Georg Brandl2008-12-271-2/+3
|
* #4754: improve winsound documentation.Georg Brandl2008-12-271-2/+7
|
* Follow-up to r67746 in order to restore backwards-compatibility forGeorg Brandl2008-12-271-7/+19
| | | | those who (monkey-)patch TextWrapper.wordsep_re with a custom RE.
* #4748 lambda generators shouldn't return valuesBenjamin Peterson2008-12-273-1/+18
|
* Patch #4739 by David Laban: add symbols to pydoc help topics,Georg Brandl2008-12-272-2/+58
| | | | so that ``help('@')`` works as expected.
* #4752: actually use custom handler in example.Georg Brandl2008-12-271-1/+1
|
* Issue #4756: zipfile.is_zipfile() now supports file-like objects.Antoine Pitrou2008-12-274-14/+60
| | | | Patch by Gabriel Genellina.
* Fix bogus unicode tests in pickletester.Alexandre Vassalotti2008-12-271-2/+2
|
* Add Misc/NEWS entry for r67934.Alexandre Vassalotti2008-12-271-0/+3
|
* Fix issue #4730: cPickle corrupts high-unicode strings.Alexandre Vassalotti2008-12-272-32/+88
| | | | | Update outdated copy of PyUnicode_EncodeRawUnicodeEscape. Add a test case.
* Remove unnecessary casts related to unicode_decode_call_errorhandler.Alexandre Vassalotti2008-12-271-27/+29
| | | | | | Make the _PyUnicode_Resize macro a static function. These changes are needed to avoid breaking strict aliasing rules.
* Issue #4740: Use HIGHEST_PROTOCOL in pickle test.Hirokazu Yamamoto2008-12-273-6/+6
| | | | (There is no behavior difference in 2.x because HIGHEST_PROTOCOL == 2)
* python version is included in file name nowBenjamin Peterson2008-12-261-7/+7
|
* fixed #4400 : distutils .pypirc default generated file was broken.Tarek Ziadé2008-12-245-7/+153
|
* pretend exceptions don't exist a while longerBenjamin Peterson2008-12-241-28/+6
|
* #4736 BufferRWPair.closed shouldn't try to call another property as a functionBenjamin Peterson2008-12-243-2/+5
|
* make global staticBenjamin Peterson2008-12-231-1/+1
|
* use a global variable, so the compiler doesn't optimize the assignment outBenjamin Peterson2008-12-231-2/+3
|
* Markup fix.Georg Brandl2008-12-231-2/+2
|
* Fix missing "svn" command.Georg Brandl2008-12-231-1/+1
|
* As a result of a regression that snuck into 2.5.3 add a test case thatSkip Montanaro2008-12-232-0/+5
| | | | | ensures that when you try to read from a file opened for writing an IOError is raised.
* silence compiler warningBenjamin Peterson2008-12-221-0/+1
|
* add NEWS noteBenjamin Peterson2008-12-221-0/+2
|
* fix #4720: the format to PyArg_ParseTupleAndKeywords can now start with '|'Benjamin Peterson2008-12-222-1/+28
|
* less attitudeBenjamin Peterson2008-12-221-2/+2
|
* add py3k warnings to frame.f_exc_*Benjamin Peterson2008-12-222-3/+45
|
* compute DISTVERSION with patchlevel.pyBenjamin Peterson2008-12-211-17/+17
|
* Add Tarek for work on distutils.Neal Norwitz2008-12-211-0/+3
|
* Merged revisions 67809 via svnmerge fromBenjamin Peterson2008-12-211-1/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r67809 | benjamin.peterson | 2008-12-15 21:54:45 -0600 (Mon, 15 Dec 2008) | 1 line fix logic error ........
* there are way too many places which need to have the current version addedBenjamin Peterson2008-12-211-0/+6
|
* update readmeBenjamin Peterson2008-12-211-8/+6
|
* sphinx.web is long goneBenjamin Peterson2008-12-212-16/+2
|
* silence annoying DeprecationWarningBenjamin Peterson2008-12-201-1/+5
|
* add some recent releases to the listBenjamin Peterson2008-12-201-0/+3
|
* remove redundant sentenceBenjamin Peterson2008-12-202-2/+2
|
* beef up docstringBenjamin Peterson2008-12-201-1/+4
|
* add headingsBenjamin Peterson2008-12-201-6/+13
|
* copy sentence from docstringBenjamin Peterson2008-12-201-2/+2
|
* #4700: crtlicense.txt is displayed by the license() command and should be ↵Amaury Forgeot d'Arc2008-12-191-1/+1
| | | | | | kept ascii-only. Will port to 3.0
* Fix typo in Python equivalent for bit_length.Mark Dickinson2008-12-191-1/+1
|
* Fix-up and clean-up docs for int.bit_length().Raymond Hettinger2008-12-191-21/+12
| | | | | | | | * Replace dramatic footnote with in-line comment about possible round-off errors in logarithms of large numbers. * Add comments to the pure python code equivalent. * replace floor() with int() in the mathematical equivalent so the type is correct (should be an int, not a float). * add abs() to the mathematical equivalent so that it matches the previous line that it is supposed to be equivalent to. * make one combined example with a negative input.