summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* #1579477: mention necessity to flush output before exec'ingAndrew M. Kuchling2008-09-281-3/+10
|
* clarify a few thingsBenjamin Peterson2008-09-271-7/+6
|
* #3510: future-proof textAndrew M. Kuchling2008-09-271-3/+4
|
* backport r66656 so people using -Qnew aren't affectedBenjamin Peterson2008-09-271-1/+1
|
* enable refactor testsBenjamin Peterson2008-09-271-2/+2
|
* Merged revisions 66511,66548-66549,66644,66646-66652 via svnmerge fromBenjamin Peterson2008-09-2712-40/+267
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r66511 | benjamin.peterson | 2008-09-18 21:49:27 -0500 (Thu, 18 Sep 2008) | 1 line remove a useless if __name__ == '__main__' ........ r66548 | benjamin.peterson | 2008-09-21 21:14:14 -0500 (Sun, 21 Sep 2008) | 1 line avoid the perils of mutable default arguments ........ r66549 | benjamin.peterson | 2008-09-21 21:26:11 -0500 (Sun, 21 Sep 2008) | 1 line some places in RefactoringTool should raise an error instead of logging it ........ r66644 | benjamin.peterson | 2008-09-27 10:45:10 -0500 (Sat, 27 Sep 2008) | 1 line fix doctest refactoring ........ r66646 | benjamin.peterson | 2008-09-27 11:40:13 -0500 (Sat, 27 Sep 2008) | 1 line don't print to stdout when 2to3 is used as a library ........ r66647 | benjamin.peterson | 2008-09-27 12:28:28 -0500 (Sat, 27 Sep 2008) | 1 line let fixer modules and classes have different prefixes ........ r66648 | benjamin.peterson | 2008-09-27 14:02:13 -0500 (Sat, 27 Sep 2008) | 1 line raise errors when 2to3 is used as a library ........ r66649 | benjamin.peterson | 2008-09-27 14:03:38 -0500 (Sat, 27 Sep 2008) | 1 line fix docstring ........ r66650 | benjamin.peterson | 2008-09-27 14:22:21 -0500 (Sat, 27 Sep 2008) | 1 line make use of enumerate ........ r66651 | benjamin.peterson | 2008-09-27 14:24:13 -0500 (Sat, 27 Sep 2008) | 1 line revert last revision; it breaks things ........ r66652 | benjamin.peterson | 2008-09-27 16:03:06 -0500 (Sat, 27 Sep 2008) | 1 line add tests for lib2to3.refactor ........
* 2to3's api should be considered unstableBenjamin Peterson2008-09-271-0/+6
|
* Add a last bunch of itemsAndrew M. Kuchling2008-09-271-3/+36
|
* give ftplib a real test suiteBenjamin Peterson2008-09-271-36/+425
| | | | | | | A asyncore based mock ftp server is used to test the protocol. This is all thanks to Giampaolo Rodola #3939 (Barry gave me permission to do this before final on IRC.)
* #3967: Correct a crash in count() and find() methods of string-like objects.Amaury Forgeot d'Arc2008-09-264-8/+25
| | | | | | | | For example: "".count("xxxx", sys.maxint, 0) Reviewed by Benjamin Peterson. Will port to 2.5 and 3.0.
* typos.Georg Brandl2008-09-261-3/+3
|
* add an 'other options' sectionBenjamin Peterson2008-09-261-0/+9
|
* add the beginnings of a C-API 2 -> 3 porting guideBenjamin Peterson2008-09-262-0/+209
|
* Fix namedtuple bug reported by Glenn Linderman. Template did not form ↵Raymond Hettinger2008-09-252-1/+6
| | | | correctly if the field names were input in Unicode.
* #3965: on Windows, open() crashes if the filename or the mode is invalid,Amaury Forgeot d'Arc2008-09-253-4/+24
| | | | | | and if the filename is a unicode string. Reviewed by Martin von Loewis.
* add a NEWs entry for r66614Benjamin Peterson2008-09-251-0/+2
|
* Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default.Martin v. Löwis2008-09-252-1/+3
|
* #3950 fix missing scale factors in turtle.pyBenjamin Peterson2008-09-241-1/+1
| | | | reviewers: Georg, Benjamin
* Fix issue #3547: ctypes is confused by bitfields of varying integer typesThomas Heller2008-09-243-1/+19
| | | | Reviewed by Fredrik Lundh and Skip Montanaro.
* Improve wordingAndrew M. Kuchling2008-09-241-7/+7
|
* Indentation normalization.Georg Brandl2008-09-241-2/+2
|
* backport the atexit test for r66563Benjamin Peterson2008-09-231-0/+13
|
* Bugfix for issue3885 and 'DB.verify()' crash.Jesus Cea2008-09-233-44/+123
| | | | Reviewed by Nick Coghlan.
* Issue #3945: Fixed compile error on cygwin. (initializer element is not ↵Hirokazu Yamamoto2008-09-231-1/+1
| | | | | | constant) Reviewed by Amaury Forgeot d'Arc.
* mention how to override boolean evaluationBenjamin Peterson2008-09-231-1/+2
|
* clean up docs for platform's linux_distribution and dist functionsBenjamin Peterson2008-09-221-16/+10
|
* use the new threading properties for multiprocessing (reviewed by Jesse #3927)Benjamin Peterson2008-09-221-6/+0
|
* build_os2emx.patch in issue 3868 - update OS/2 EMX makefile and config filesAndrew MacIntyre2008-09-225-9/+19
| | | | | | | | Part of source_os2emx.patch in issue 3868: Include/pystrcmp.h: OS/2 has same C APIs as Windows Lib/test/test_io.py: OS/2 has same behaviour as Windows for this test Reviewed by Amaury Forgeot d'Arc
* any platform without HAVE_LOG1P should have DBL_EPSILON in <float.h>Andrew MacIntyre2008-09-221-0/+2
| | | | | Part of source_os2emx.patch in issue 3868 Reviewed by Amaury Forgeot d'Arc
* should use macro'ed symbols not directAndrew MacIntyre2008-09-221-3/+3
| | | | | Part of source_os2emx.patch in issue 3868 Reviewed by Amaury Forgeot d'Arc
* Fill out download page.Georg Brandl2008-09-211-18/+24
|
* #3879 fix a regression in urllib.getproxies_environmentBenjamin Peterson2008-09-213-3/+28
| | | | reviewers: Benjamin, Georg
* Issue #3925: Ignores shutil.rmtree error on cygwin too.Hirokazu Yamamoto2008-09-211-2/+2
| | | | Reviewed by Benjamin Peterson.
* Issue #3838: TarFile object assigned to self.tar should be closed explicitly.Hirokazu Yamamoto2008-09-211-0/+1
| | | | Reviewed by Lars Gustäbel.
* Add "dist" target.Georg Brandl2008-09-211-1/+41
|
* #3918: note that uniform() args can be swapped.Georg Brandl2008-09-211-1/+3
|
* Update readme and Makefile (web builder doesn't exist).Georg Brandl2008-09-212-11/+1
|
* #3897: _collections now has an underscore.Georg Brandl2008-09-211-1/+1
|
* #3901: bsddb fix.Georg Brandl2008-09-211-2/+2
|
* #3914: add //= to the augmented assign operators.Georg Brandl2008-09-211-1/+1
|
* #3916: fixes for docs wrt. Windows directory layoutGeorg Brandl2008-09-212-5/+5
|
* #3912: document default for *places* arg.Georg Brandl2008-09-211-2/+4
|
* #3852: fix some select.kqueue and kevent docs.Georg Brandl2008-09-212-4/+4
|
* Use AMD64 version of CRT in just-for-me installations for Win64 installers.Martin v. Löwis2008-09-191-1/+5
|
* Bug #3887: Package x64 version of CRT for AMD64Martin v. Löwis2008-09-192-1/+6
| | | | Windows binaries.
* Correct information about the tarfile module.Lars Gustäbel2008-09-191-8/+8
|
* Improve docs for super().Raymond Hettinger2008-09-191-1/+18
|
* Fix for documentation bug. Fixes issue 3904.Josiah Carlson2008-09-191-2/+2
|
* tabifyBenjamin Peterson2008-09-181-2/+2
|
* done with 2.6rc2Barry Warsaw2008-09-182-1/+13
|