]>
granicus.if.org Git - python/log
Benjamin Peterson [Thu, 16 Oct 2008 21:27:54 +0000 (21:27 +0000)]
fix possible ref leak
Georg Brandl [Thu, 16 Oct 2008 21:20:15 +0000 (21:20 +0000)]
#4131: FF3 doesn't write cookies.txt files.
Benjamin Peterson [Thu, 16 Oct 2008 21:09:28 +0000 (21:09 +0000)]
check for error conditions in _json #3623
Georg Brandl [Thu, 16 Oct 2008 20:20:56 +0000 (20:20 +0000)]
Add more TOC to the whatsnew index page.
Andrew M. Kuchling [Thu, 16 Oct 2008 20:15:47 +0000 (20:15 +0000)]
Fix wording (2.6.1 backport candidate)
Benjamin Peterson [Thu, 16 Oct 2008 19:40:14 +0000 (19:40 +0000)]
use new showwarnings signature for idle #3391
Benjamin Peterson [Thu, 16 Oct 2008 18:52:14 +0000 (18:52 +0000)]
document that deque indexing is O(n) #4123
Hirokazu Yamamoto [Thu, 16 Oct 2008 06:25:25 +0000 (06:25 +0000)]
removed unused _PyUnicode_FromFileSystemEncodedObject.
made win32_chdir, win32_wchdir static.
Benjamin Peterson [Wed, 15 Oct 2008 23:10:28 +0000 (23:10 +0000)]
Merged revisions 66805,66841,66860,66884-66886,66893,66907,66910 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r66805 | benjamin.peterson | 2008-10-04 20:11:02 -0500 (Sat, 04 Oct 2008) | 1 line
mention what the fixes directory is for
........
r66841 | benjamin.peterson | 2008-10-07 17:48:12 -0500 (Tue, 07 Oct 2008) | 1 line
use assertFalse and assertTrue
........
r66860 | benjamin.peterson | 2008-10-08 16:05:07 -0500 (Wed, 08 Oct 2008) | 1 line
instead of abusing the pattern matcher, use start_tree to find a next binding
........
r66884 | benjamin.peterson | 2008-10-13 15:50:30 -0500 (Mon, 13 Oct 2008) | 1 line
don't print tokens to stdout when -v is given
........
r66885 | benjamin.peterson | 2008-10-13 16:28:57 -0500 (Mon, 13 Oct 2008) | 1 line
add the -x option to disable fixers
........
r66886 | benjamin.peterson | 2008-10-13 16:33:53 -0500 (Mon, 13 Oct 2008) | 1 line
cut down on some crud
........
r66893 | benjamin.peterson | 2008-10-14 17:16:54 -0500 (Tue, 14 Oct 2008) | 1 line
add an optional set literal fixer
........
r66907 | benjamin.peterson | 2008-10-15 16:59:41 -0500 (Wed, 15 Oct 2008) | 1 line
don't write backup files by default
........
r66910 | benjamin.peterson | 2008-10-15 17:43:10 -0500 (Wed, 15 Oct 2008) | 1 line
add the -n option; it stops backupfiles from being written
........
Benjamin Peterson [Wed, 15 Oct 2008 21:58:46 +0000 (21:58 +0000)]
add a much requested newline
Benjamin Peterson [Wed, 15 Oct 2008 21:05:55 +0000 (21:05 +0000)]
support the optional line argument for idle
Benjamin Peterson [Wed, 15 Oct 2008 20:34:09 +0000 (20:34 +0000)]
don't recurse into directories that start with '.'
Skip Montanaro [Wed, 15 Oct 2008 11:49:10 +0000 (11:49 +0000)]
easter egg
Benjamin Peterson [Tue, 14 Oct 2008 22:37:18 +0000 (22:37 +0000)]
remove set compat cruft
Amaury Forgeot d'Arc [Tue, 14 Oct 2008 21:47:22 +0000 (21:47 +0000)]
#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.
Benjamin Peterson [Mon, 13 Oct 2008 21:51:40 +0000 (21:51 +0000)]
document how to disable fixers
Martin v. Löwis [Mon, 13 Oct 2008 11:23:35 +0000 (11:23 +0000)]
Issue #4018: Disable "for me" installations on Vista.
Benjamin Peterson [Sat, 11 Oct 2008 17:25:36 +0000 (17:25 +0000)]
give poplib a real test suite
#4088 from Giampaolo Rodola'x
Benjamin Peterson [Fri, 10 Oct 2008 22:23:41 +0000 (22:23 +0000)]
PyGILState_Acquire -> PyGILState_Ensure
Benjamin Peterson [Fri, 10 Oct 2008 20:51:37 +0000 (20:51 +0000)]
talk about how you can unzip with zip
Benjamin Peterson [Fri, 10 Oct 2008 20:38:49 +0000 (20:38 +0000)]
fix a small typo
Armin Rigo [Fri, 10 Oct 2008 08:40:44 +0000 (08:40 +0000)]
Typo: "ThreadError" is the name in the C source.
Matthias Klose [Fri, 10 Oct 2008 07:24:20 +0000 (07:24 +0000)]
- Makefile.pre.in(PROFILE_TASK): search files in srcdir
Benjamin Peterson [Thu, 9 Oct 2008 20:54:43 +0000 (20:54 +0000)]
update paragraph about __future__ for 2.6
Hirokazu Yamamoto [Thu, 9 Oct 2008 10:11:21 +0000 (10:11 +0000)]
r66862 contained memory leak.
Hirokazu Yamamoto [Thu, 9 Oct 2008 10:00:30 +0000 (10:00 +0000)]
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)
Benjamin Peterson [Wed, 8 Oct 2008 21:11:33 +0000 (21:11 +0000)]
quiet sphinx warnings
Georg Brandl [Wed, 8 Oct 2008 18:57:13 +0000 (18:57 +0000)]
Make all whatsnew docs accessible.
Georg Brandl [Wed, 8 Oct 2008 18:47:17 +0000 (18:47 +0000)]
#3935: properly support list subclasses in the C impl. of bisect.
Patch reviewed by Raymond.
Georg Brandl [Wed, 8 Oct 2008 17:30:55 +0000 (17:30 +0000)]
#4058: fix some whatsnew markup.
Georg Brandl [Wed, 8 Oct 2008 17:20:20 +0000 (17:20 +0000)]
#4059: patch up some sqlite docs.
Andrew M. Kuchling [Wed, 8 Oct 2008 13:21:27 +0000 (13:21 +0000)]
Note how bytes alias is expected to be used
Amaury Forgeot d'Arc [Tue, 7 Oct 2008 20:32:10 +0000 (20:32 +0000)]
#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.
Hirokazu Yamamoto [Tue, 7 Oct 2008 18:10:47 +0000 (18:10 +0000)]
more intensive test on dbm.
Skip Montanaro [Tue, 7 Oct 2008 15:03:40 +0000 (15:03 +0000)]
save/restore stdout/stderr instead of relying on __*__ versions
Skip Montanaro [Tue, 7 Oct 2008 02:02:00 +0000 (02:02 +0000)]
Pay attention to -R entries in LDFLAGS.
Skip Montanaro [Tue, 7 Oct 2008 01:55:20 +0000 (01:55 +0000)]
Simplify individual tests by defining setUp and tearDown methods.
Brett Cannon [Mon, 6 Oct 2008 22:44:37 +0000 (22:44 +0000)]
Add the 'patchcheck' build target to .PHONY.
Re-closes issue 3758. Thanks to Ralph Corderoy for the catch.
Martin v. Löwis [Mon, 6 Oct 2008 15:15:40 +0000 (15:15 +0000)]
Issue #4014: Don't claim that Python has an Alpha release status, in addition
to claiming it is Mature.
Andrew M. Kuchling [Mon, 6 Oct 2008 12:07:04 +0000 (12:07 +0000)]
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.
Hirokazu Yamamoto [Mon, 6 Oct 2008 02:41:59 +0000 (02:41 +0000)]
More strict test. Consider the case sys.executable itself is symlink.
Hirokazu Yamamoto [Mon, 6 Oct 2008 01:57:03 +0000 (01:57 +0000)]
Added the test for issue3762.
Andrew M. Kuchling [Sun, 5 Oct 2008 00:11:56 +0000 (00:11 +0000)]
#
1415508 from Rocky Bernstein: add docstrings for enable_interspersed_args(), disable_interspersed_args()
Benjamin Peterson [Sat, 4 Oct 2008 22:15:31 +0000 (22:15 +0000)]
fix typo
Andrew M. Kuchling [Sat, 4 Oct 2008 21:51:59 +0000 (21:51 +0000)]
Punctuation fix; expand dict.update docstring to be clearer
Benjamin Peterson [Sat, 4 Oct 2008 20:55:50 +0000 (20:55 +0000)]
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
........
Georg Brandl [Sat, 4 Oct 2008 18:26:01 +0000 (18:26 +0000)]
#4041: don't refer to removed and outdated modules.
Benjamin Peterson [Sat, 4 Oct 2008 17:10:14 +0000 (17:10 +0000)]
silence Sphinx warning
Andrew M. Kuchling [Sat, 4 Oct 2008 16:52:31 +0000 (16:52 +0000)]
Add What's New for 2.7
Andrew M. Kuchling [Sat, 4 Oct 2008 16:52:01 +0000 (16:52 +0000)]
Set svn:keywords
Andrew M. Kuchling [Sat, 4 Oct 2008 03:08:56 +0000 (03:08 +0000)]
two corrections
Andrew M. Kuchling [Sat, 4 Oct 2008 01:05:56 +0000 (01:05 +0000)]
Docstring change for *partition: use same tense as other docstrings.
Hyphenate left- and right-justified.
Fix 'registerd' typo
Andrew M. Kuchling [Sat, 4 Oct 2008 01:04:24 +0000 (01:04 +0000)]
Docstring changes: Specify exceptions raised
Andrew M. Kuchling [Sat, 4 Oct 2008 01:03:42 +0000 (01:03 +0000)]
Docstring change: Specify exception raised
Andrew M. Kuchling [Sat, 4 Oct 2008 01:02:29 +0000 (01:02 +0000)]
Use correct capitalization of NaN
Hirokazu Yamamoto [Fri, 3 Oct 2008 17:34:49 +0000 (17:34 +0000)]
Issue #
1706863 : Fixed "'NoneType' object has no attribute 'rfind'" error when sqlite libfile not found.
Andrew M. Kuchling [Fri, 3 Oct 2008 16:42:52 +0000 (16:42 +0000)]
Typo fix
Andrew M. Kuchling [Fri, 3 Oct 2008 16:29:19 +0000 (16:29 +0000)]
Mention exception in docstring
Hirokazu Yamamoto [Fri, 3 Oct 2008 16:18:42 +0000 (16:18 +0000)]
Fixed following error when DocXMLRPCServer failed.
UnboundLocalError: local variable 'serv' referenced before assignment
Hirokazu Yamamoto [Fri, 3 Oct 2008 16:07:28 +0000 (16:07 +0000)]
Follows to python's version change (VC6)
Andrew M. Kuchling [Fri, 3 Oct 2008 12:26:42 +0000 (12:26 +0000)]
Docstring typo.
Benjamin Peterson [Fri, 3 Oct 2008 11:52:06 +0000 (11:52 +0000)]
update the mac installer script
Martin v. Löwis [Fri, 3 Oct 2008 10:59:55 +0000 (10:59 +0000)]
Update version number to 2.7.
Martin v. Löwis [Fri, 3 Oct 2008 08:59:41 +0000 (08:59 +0000)]
Bump version to 2.7. Regenerate.
Neal Norwitz [Fri, 3 Oct 2008 04:13:08 +0000 (04:13 +0000)]
Update the version to 2.7. Hopefully this fixes the test_distutils failure
Benjamin Peterson [Thu, 2 Oct 2008 20:46:58 +0000 (20:46 +0000)]
update pydoc topics
Martin v. Löwis [Thu, 2 Oct 2008 20:04:47 +0000 (20:04 +0000)]
Add UUID for 2.7.
Christian Heimes [Thu, 2 Oct 2008 19:47:50 +0000 (19:47 +0000)]
Fixed a couple more C99 comments and one occurence of inline.
Georg Brandl [Thu, 2 Oct 2008 19:09:47 +0000 (19:09 +0000)]
Forward-port r66736.
Benjamin Peterson [Thu, 2 Oct 2008 19:00:31 +0000 (19:00 +0000)]
we're in 2.7 now
Christian Heimes [Thu, 2 Oct 2008 18:33:41 +0000 (18:33 +0000)]
Fixed a comment to C89 style as of http://drj11.wordpress.com/2008/10/02/python-and-bragging-about-c89/
Martin v. Löwis [Thu, 2 Oct 2008 11:44:17 +0000 (11:44 +0000)]
Use CRT 9 policy files.
Barry Warsaw [Thu, 2 Oct 2008 03:33:51 +0000 (03:33 +0000)]
Bump to 2.7a0
Barry Warsaw [Wed, 1 Oct 2008 22:09:42 +0000 (22:09 +0000)]
Tagging for 2.6 final.
Barry Warsaw [Wed, 1 Oct 2008 22:05:43 +0000 (22:05 +0000)]
Today is the release date
Barry Warsaw [Wed, 1 Oct 2008 21:46:40 +0000 (21:46 +0000)]
Bumping to 2.6 final.
Martin v. Löwis [Wed, 1 Oct 2008 11:19:50 +0000 (11:19 +0000)]
Bug #3989: Package the 2to3 script (as 2to3.py) in the Windows
installer.
Andrew MacIntyre [Wed, 1 Oct 2008 03:25:25 +0000 (03:25 +0000)]
fix for issue 3862: test_array fails FreeBSD 7 amd64
FreeBSD 7's underlying malloc() is behaves differently to earlier versions
and seriously overcommits available memory on amd64. This may affect
other 64bit platforms in some circumstances, so the scale of the
problematic test is wound back.
Patch by Mark Dickinson, reviewed by Martin von Loewis.
Gregory P. Smith [Tue, 30 Sep 2008 20:41:13 +0000 (20:41 +0000)]
Works around issue3863: freebsd4/5/6 and os2emx are known to have OS bugs when
calling fork() from a child thread. This disables that unit test (with a note
printed to stderr) on those platforms.
A caveat about buggy platforms is added to the os.fork documentation.
Brett Cannon [Tue, 30 Sep 2008 17:46:03 +0000 (17:46 +0000)]
Fix a refleak introduced by r66677.
Fix suggested by Amaury Forgeot d'Arc.
Closes issue #4003.
Andrew M. Kuchling [Tue, 30 Sep 2008 13:01:46 +0000 (13:01 +0000)]
Markup fixes. (optparse.rst probably needs an entire revision pass.)
Andrew M. Kuchling [Tue, 30 Sep 2008 13:00:51 +0000 (13:00 +0000)]
Markup fixes
Andrew M. Kuchling [Tue, 30 Sep 2008 13:00:34 +0000 (13:00 +0000)]
Markup fix
Andrew M. Kuchling [Tue, 30 Sep 2008 12:31:07 +0000 (12:31 +0000)]
Edits, and add markup
Benjamin Peterson [Tue, 30 Sep 2008 02:11:07 +0000 (02:11 +0000)]
Victor Stinner's patches to check the return result of PyLong_Ssize_t
reviewed by Amaury
Benjamin Peterson [Tue, 30 Sep 2008 01:31:49 +0000 (01:31 +0000)]
fix security issue 2: imageop's poor validation of arguments could result in segfaults
patch by Victor Stinner
reviewed by myself and Brett
Jesse Noller [Tue, 30 Sep 2008 00:15:45 +0000 (00:15 +0000)]
issue3770: if SEM_OPEN is 0, disable the mp.synchronize module, rev. Nick Coghlan, Damien Miller
Martin v. Löwis [Mon, 29 Sep 2008 22:09:07 +0000 (22:09 +0000)]
Issue #3965: Allow repeated calls to turtle.Screen, by making it a
true singleton object.
Reviewed by Gregor Lingl.
Thomas Heller [Mon, 29 Sep 2008 19:56:24 +0000 (19:56 +0000)]
Fix issue #3547 for MingW, update comments.
Bill Janssen [Mon, 29 Sep 2008 18:56:38 +0000 (18:56 +0000)]
fix for release blocker 3910, 2.6 regression in socket.ssl method
Georg Brandl [Mon, 29 Sep 2008 16:51:35 +0000 (16:51 +0000)]
Update nasm location.
Brett Cannon [Mon, 29 Sep 2008 03:41:21 +0000 (03:41 +0000)]
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.
Jesus Cea [Sun, 28 Sep 2008 23:24:19 +0000 (23:24 +0000)]
bsddb4.7.3pre9 renamed to 4.7.3
Benjamin Peterson [Sun, 28 Sep 2008 20:57:21 +0000 (20:57 +0000)]
merge in the fix for test_ftplib on some bots [reviewed by Georg]
Georg Brandl [Sun, 28 Sep 2008 20:01:36 +0000 (20:01 +0000)]
Don't show version in title.
Georg Brandl [Sun, 28 Sep 2008 08:34:31 +0000 (08:34 +0000)]
No downloads for RCs.
Benjamin Peterson [Sun, 28 Sep 2008 01:53:29 +0000 (01:53 +0000)]
note the 2to3 -d could be useful for other refactoring
Benjamin Peterson [Sun, 28 Sep 2008 01:51:36 +0000 (01:51 +0000)]
better grammar
Andrew M. Kuchling [Sun, 28 Sep 2008 01:08:47 +0000 (01:08 +0000)]
#
1415508 : Document two functions
Andrew M. Kuchling [Sun, 28 Sep 2008 00:15:27 +0000 (00:15 +0000)]
#
1579477 : mention necessity to flush output before exec'ing