Martin v. Löwis
e563aa4383
Issue #3965 : Allow repeated calls to turtle.Screen, by making it a
...
true singleton object.
Reviewed by Gregor Lingl.
2008-09-29 22:09:07 +00:00
Thomas Heller
e144873071
Fix issue #3547 for MingW, update comments.
2008-09-29 19:56:24 +00:00
Bill Janssen
eb257ac97d
fix for release blocker 3910, 2.6 regression in socket.ssl method
2008-09-29 18:56:38 +00:00
Georg Brandl
9350234683
Update nasm location.
2008-09-29 16:51:35 +00:00
Brett Cannon
b2d61bde28
The _lsprof module could crash the interpreter if it was given an external
...
timer that did not return a float and a timer was still running when the
Profiler object was garbage collected.
Fixes issue 3895.
Code review by Benjamin Peterson.
2008-09-29 03:41:21 +00:00
Jesus Cea
09c0178242
bsddb4.7.3pre9 renamed to 4.7.3
2008-09-28 23:24:19 +00:00
Benjamin Peterson
e14267bbad
merge in the fix for test_ftplib on some bots [reviewed by Georg]
2008-09-28 20:57:21 +00:00
Georg Brandl
7ff19fa293
Don't show version in title.
2008-09-28 20:01:36 +00:00
Georg Brandl
baf59e063a
No downloads for RCs.
2008-09-28 08:34:31 +00:00
Benjamin Peterson
b51f81def4
note the 2to3 -d could be useful for other refactoring
2008-09-28 01:53:29 +00:00
Benjamin Peterson
4fad6fa560
better grammar
2008-09-28 01:51:36 +00:00
Andrew M. Kuchling
7a4a93b8e9
#1415508 : Document two functions
2008-09-28 01:08:47 +00:00
Andrew M. Kuchling
ac77166e90
#1579477 : mention necessity to flush output before exec'ing
2008-09-28 00:15:27 +00:00
Benjamin Peterson
4008ef0fe3
clarify a few things
2008-09-27 23:28:43 +00:00
Andrew M. Kuchling
e6896050a3
#3510 : future-proof text
2008-09-27 22:54:08 +00:00
Benjamin Peterson
dee0b175f6
backport r66656 so people using -Qnew aren't affected
2008-09-27 22:08:12 +00:00
Benjamin Peterson
003d7463dd
enable refactor tests
2008-09-27 21:12:20 +00:00
Benjamin Peterson
08be29193e
Merged revisions 66511,66548-66549,66644,66646-66652 via svnmerge from
...
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
........
2008-09-27 21:09:10 +00:00
Benjamin Peterson
7f8f6605e2
2to3's api should be considered unstable
2008-09-27 16:23:55 +00:00
Andrew M. Kuchling
f609cf229f
Add a last bunch of items
2008-09-27 14:12:33 +00:00
Benjamin Peterson
3c0c483af4
give ftplib a real test suite
...
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.)
2008-09-27 02:49:54 +00:00
Amaury Forgeot d'Arc
fc5ea39289
#3967 : Correct a crash in count() and find() methods of string-like objects.
...
For example:
"".count("xxxx", sys.maxint, 0)
Reviewed by Benjamin Peterson.
Will port to 2.5 and 3.0.
2008-09-26 22:34:08 +00:00
Georg Brandl
da84d21a0c
typos.
2008-09-26 21:15:21 +00:00
Benjamin Peterson
0eee7c6ea3
add an 'other options' section
2008-09-26 20:52:06 +00:00
Benjamin Peterson
f1c08f04bf
add the beginnings of a C-API 2 -> 3 porting guide
2008-09-26 02:58:36 +00:00
Raymond Hettinger
6ee7bc04f7
Fix namedtuple bug reported by Glenn Linderman. Template did not form correctly if the field names were input in Unicode.
2008-09-25 23:31:52 +00:00
Amaury Forgeot d'Arc
17617a07d1
#3965 : on Windows, open() crashes if the filename or the mode is invalid,
...
and if the filename is a unicode string.
Reviewed by Martin von Loewis.
2008-09-25 20:52:56 +00:00
Benjamin Peterson
22d3c92480
add a NEWs entry for r66614
2008-09-25 20:35:45 +00:00
Martin v. Löwis
e86b07cc9a
Bug #3951 : Py_USING_MEMORY_DEBUGGER should not be enabled by default.
2008-09-25 04:12:50 +00:00
Benjamin Peterson
52d52f185a
#3950 fix missing scale factors in turtle.py
...
reviewers: Georg, Benjamin
2008-09-24 22:11:59 +00:00
Thomas Heller
a85c95d5e8
Fix issue #3547 : ctypes is confused by bitfields of varying integer types
...
Reviewed by Fredrik Lundh and Skip Montanaro.
2008-09-24 18:26:05 +00:00
Andrew M. Kuchling
8798c90df2
Improve wording
2008-09-24 17:27:55 +00:00
Georg Brandl
1379ae02e3
Indentation normalization.
2008-09-24 09:47:55 +00:00
Benjamin Peterson
a74d675fac
backport the atexit test for r66563
2008-09-23 20:43:09 +00:00
Jesus Cea
5cd5f12a48
Bugfix for issue3885 and 'DB.verify()' crash.
...
Reviewed by Nick Coghlan.
2008-09-23 18:54:08 +00:00
Hirokazu Yamamoto
09979a137a
Issue #3945 : Fixed compile error on cygwin. (initializer element is not constant)
...
Reviewed by Amaury Forgeot d'Arc.
2008-09-23 16:11:09 +00:00
Benjamin Peterson
fe7c26d942
mention how to override boolean evaluation
2008-09-23 13:32:46 +00:00
Benjamin Peterson
3e876fd146
clean up docs for platform's linux_distribution and dist functions
2008-09-22 22:13:29 +00:00
Benjamin Peterson
ffb3cca39b
use the new threading properties for multiprocessing (reviewed by Jesse #3927 )
2008-09-22 21:11:43 +00:00
Andrew MacIntyre
41c56b5ea1
build_os2emx.patch in issue 3868 - update OS/2 EMX makefile and config files
...
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
2008-09-22 14:23:45 +00:00
Andrew MacIntyre
f8db82242b
any platform without HAVE_LOG1P should have DBL_EPSILON in <float.h>
...
Part of source_os2emx.patch in issue 3868
Reviewed by Amaury Forgeot d'Arc
2008-09-22 14:11:41 +00:00
Andrew MacIntyre
8c47cabbe9
should use macro'ed symbols not direct
...
Part of source_os2emx.patch in issue 3868
Reviewed by Amaury Forgeot d'Arc
2008-09-22 14:10:54 +00:00
Georg Brandl
29fdcad93d
Fill out download page.
2008-09-21 22:31:59 +00:00
Benjamin Peterson
2c7470d951
#3879 fix a regression in urllib.getproxies_environment
...
reviewers: Benjamin, Georg
2008-09-21 21:27:51 +00:00
Hirokazu Yamamoto
1672e10dc2
Issue #3925 : Ignores shutil.rmtree error on cygwin too.
...
Reviewed by Benjamin Peterson.
2008-09-21 20:48:41 +00:00
Hirokazu Yamamoto
56d380de1d
Issue #3838 : TarFile object assigned to self.tar should be closed explicitly.
...
Reviewed by Lars Gustäbel.
2008-09-21 11:44:23 +00:00
Georg Brandl
267acd2205
Add "dist" target.
2008-09-21 10:03:39 +00:00
Georg Brandl
afeea0711a
#3918 : note that uniform() args can be swapped.
2008-09-21 08:03:21 +00:00
Georg Brandl
450a7f578e
Update readme and Makefile (web builder doesn't exist).
2008-09-21 07:36:22 +00:00
Georg Brandl
a438c85a88
#3897 : _collections now has an underscore.
2008-09-21 07:31:52 +00:00