Commit Graph

40654 Commits

Author SHA1 Message Date
Benjamin Peterson 1fb84519b1 add a much requested newline 2008-10-15 21:58:46 +00:00
Benjamin Peterson 9dc0a639bd support the optional line argument for idle 2008-10-15 21:05:55 +00:00
Benjamin Peterson 501447d7c7 don't recurse into directories that start with '.' 2008-10-15 20:34:09 +00:00
Skip Montanaro c01e32118b easter egg 2008-10-15 11:49:10 +00:00
Benjamin Peterson 32e7aa6ab9 remove set compat cruft 2008-10-14 22:37:18 +00:00
Amaury Forgeot d'Arc 07d539d08b #4122: On Windows, Py_UNICODE_ISSPACE cannot be used in an extension module:
compilation fails with "undefined reference to _Py_ascii_whitespace"

Will backport to 2.6.
2008-10-14 21:47:22 +00:00
Benjamin Peterson 0ecbccad2d document how to disable fixers 2008-10-13 21:51:40 +00:00
Martin v. Löwis eba774b486 Issue #4018: Disable "for me" installations on Vista. 2008-10-13 11:23:35 +00:00
Benjamin Peterson 76f71a52d7 give poplib a real test suite
#4088 from Giampaolo Rodola'x
2008-10-11 17:25:36 +00:00
Benjamin Peterson 9d1e2cdad6 PyGILState_Acquire -> PyGILState_Ensure 2008-10-10 22:23:41 +00:00
Benjamin Peterson 83ca0a6511 talk about how you can unzip with zip 2008-10-10 20:51:37 +00:00
Benjamin Peterson cae5848f12 fix a small typo 2008-10-10 20:38:49 +00:00
Armin Rigo 1178e02c94 Typo: "ThreadError" is the name in the C source. 2008-10-10 08:40:44 +00:00
Matthias Klose 922d1fd641 - Makefile.pre.in(PROFILE_TASK): search files in srcdir 2008-10-10 07:24:20 +00:00
Benjamin Peterson f660a53c9f update paragraph about __future__ for 2.6 2008-10-09 20:54:43 +00:00
Hirokazu Yamamoto 6c75a30712 r66862 contained memory leak. 2008-10-09 10:11:21 +00:00
Hirokazu Yamamoto 10a018c285 On windows, os.chdir given unicode was not working if GetCurrentDirectoryW
returned a path longer than MAX_PATH. (But It's doubtful this code path is
really executed because I cannot move to such directory on win2k)
2008-10-09 10:00:30 +00:00
Benjamin Peterson fc72de7bca quiet sphinx warnings 2008-10-08 21:11:33 +00:00
Georg Brandl 151f42fe12 Make all whatsnew docs accessible. 2008-10-08 18:57:13 +00:00
Georg Brandl f3776a17ef #3935: properly support list subclasses in the C impl. of bisect.
Patch reviewed by Raymond.
2008-10-08 18:47:17 +00:00
Georg Brandl 06a1386902 #4058: fix some whatsnew markup. 2008-10-08 17:30:55 +00:00
Georg Brandl 26497d91ca #4059: patch up some sqlite docs. 2008-10-08 17:20:20 +00:00
Andrew M. Kuchling 0e21a797c6 Note how bytes alias is expected to be used 2008-10-08 13:21:27 +00:00
Amaury Forgeot d'Arc d78b9dcbc3 #4069: aSet.remove(otherSet) would always report the empty frozenset([]) as the missing key.
Now it correctly refers to the initial otherset.

Reviewed by Raymond. Will backport to 2.6.
2008-10-07 20:32:10 +00:00
Hirokazu Yamamoto 39defbe6a9 more intensive test on dbm. 2008-10-07 18:10:47 +00:00
Skip Montanaro 7d9d7a2659 save/restore stdout/stderr instead of relying on __*__ versions 2008-10-07 15:03:40 +00:00
Skip Montanaro a46ed915fa Pay attention to -R entries in LDFLAGS. 2008-10-07 02:02:00 +00:00
Skip Montanaro 0d8372bdb9 Simplify individual tests by defining setUp and tearDown methods. 2008-10-07 01:55:20 +00:00
Brett Cannon 60b15d20f2 Add the 'patchcheck' build target to .PHONY.
Re-closes issue 3758. Thanks to Ralph Corderoy for the catch.
2008-10-06 22:44:37 +00:00
Martin v. Löwis 96a9f237c6 Issue #4014: Don't claim that Python has an Alpha release status, in addition
to claiming it is Mature.
2008-10-06 15:15:40 +00:00
Andrew M. Kuchling ddbce9e845 Per Greg Ward, optparse is no longer being externally maintained.
I'll look at the bugs in the Optik bug tracker and copy them to the Python bug
tracker if they're still relevant.
2008-10-06 12:07:04 +00:00
Hirokazu Yamamoto 18c4e8734c More strict test. Consider the case sys.executable itself is symlink. 2008-10-06 02:41:59 +00:00
Hirokazu Yamamoto 6e5e50104c Added the test for issue3762. 2008-10-06 01:57:03 +00:00
Andrew M. Kuchling dcf3b1c79a #1415508 from Rocky Bernstein: add docstrings for enable_interspersed_args(), disable_interspersed_args() 2008-10-05 00:11:56 +00:00
Benjamin Peterson f9db5968cc fix typo 2008-10-04 22:15:31 +00:00
Andrew M. Kuchling a4127173f8 Punctuation fix; expand dict.update docstring to be clearer 2008-10-04 21:51:59 +00:00
Benjamin Peterson 4d164158d6 Merged revisions 66707,66775,66782 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r66707 | benjamin.peterson | 2008-09-30 18:27:10 -0500 (Tue, 30 Sep 2008) | 1 line

  fix #4001: fix_imports didn't check for __init__.py before converting to relative imports
........
  r66775 | collin.winter | 2008-10-03 12:08:26 -0500 (Fri, 03 Oct 2008) | 4 lines

  Add an alternative iterative pattern matching system that, while slower, correctly parses files that cause the faster recursive pattern matcher to fail with a recursion error. lib2to3 falls back to the iterative matcher if the recursive one fails.

  Fixes http://bugs.python.org/issue2532. Thanks to Nick Edds.
........
  r66782 | benjamin.peterson | 2008-10-03 17:51:36 -0500 (Fri, 03 Oct 2008) | 1 line

  add Victor Stinner's fixer for os.getcwdu -> os.getcwd #4023
........
2008-10-04 20:55:50 +00:00
Georg Brandl 34211e91ef #4041: don't refer to removed and outdated modules. 2008-10-04 18:26:01 +00:00
Benjamin Peterson e6555ddb69 silence Sphinx warning 2008-10-04 17:10:14 +00:00
Andrew M. Kuchling ce1882bd79 Add What's New for 2.7 2008-10-04 16:52:31 +00:00
Andrew M. Kuchling baa7fb5877 Set svn:keywords 2008-10-04 16:52:01 +00:00
Andrew M. Kuchling 462f96a802 two corrections 2008-10-04 03:08:56 +00:00
Andrew M. Kuchling efeb43eb31 Docstring change for *partition: use same tense as other docstrings.
Hyphenate left- and right-justified.
Fix 'registerd' typo
2008-10-04 01:05:56 +00:00
Andrew M. Kuchling d810cdf849 Docstring changes: Specify exceptions raised 2008-10-04 01:04:24 +00:00
Andrew M. Kuchling b15d6fb9a7 Docstring change: Specify exception raised 2008-10-04 01:03:42 +00:00
Andrew M. Kuchling bd7c4ca569 Use correct capitalization of NaN 2008-10-04 01:02:29 +00:00
Hirokazu Yamamoto 1ae415cbee Issue #1706863: Fixed "'NoneType' object has no attribute 'rfind'" error when sqlite libfile not found. 2008-10-03 17:34:49 +00:00
Andrew M. Kuchling 081bb457ab Typo fix 2008-10-03 16:42:52 +00:00
Andrew M. Kuchling d7b7dde98e Mention exception in docstring 2008-10-03 16:29:19 +00:00
Hirokazu Yamamoto b7df32e620 Fixed following error when DocXMLRPCServer failed.
UnboundLocalError: local variable 'serv' referenced before assignment
2008-10-03 16:18:42 +00:00