]> granicus.if.org Git - python/log
python
12 years agoRefined venv tests.
Vinay Sajip [Sun, 27 May 2012 17:39:22 +0000 (18:39 +0100)]
Refined venv tests.

12 years agoAdd '__all__' to _encoded_words and mark QByteMap as private.
R David Murray [Sun, 27 May 2012 16:39:54 +0000 (12:39 -0400)]
Add '__all__' to _encoded_words and mark QByteMap as private.

12 years agoFixed _sys_home computation and added diagnostics for Windows buildbot failures.
Vinay Sajip [Sun, 27 May 2012 16:30:09 +0000 (17:30 +0100)]
Fixed _sys_home computation and added diagnostics for Windows buildbot failures.

12 years agoClose #14857: fix regression in references to PEP 3135 implicit __class__ closure...
Nick Coghlan [Sun, 27 May 2012 08:17:07 +0000 (18:17 +1000)]
Close #14857: fix regression in references to PEP 3135 implicit __class__ closure variable. Reopens issue #12370, but also updates unittest.mock to workaround that issue

12 years agoTweak importlib._bootstrap to avoid zero-argument super so I can work on issue #14857...
Nick Coghlan [Sun, 27 May 2012 07:49:58 +0000 (17:49 +1000)]
Tweak importlib._bootstrap to avoid zero-argument super so I can work on issue #14857 without breaking imports

12 years agoFix markup.
Georg Brandl [Sun, 27 May 2012 07:31:10 +0000 (09:31 +0200)]
Fix markup.

12 years agoMerge with 3.2 #10635 whitespace
Terry Jan Reedy [Sun, 27 May 2012 00:44:45 +0000 (20:44 -0400)]
Merge with 3.2 #10635 whitespace

12 years ago#10365 Trim trailing whitespace
Terry Jan Reedy [Sun, 27 May 2012 00:43:17 +0000 (20:43 -0400)]
#10365 Trim trailing whitespace

12 years agoMerge with 3.2
Terry Jan Reedy [Sun, 27 May 2012 00:29:25 +0000 (20:29 -0400)]
Merge with 3.2
Issue #10365: File open dialog now works instead of crashing
even when parent window is closed. Patch by Roger Serwy.

12 years agoIssue #10365: File open dialog now works instead of crashing
Terry Jan Reedy [Sun, 27 May 2012 00:23:45 +0000 (20:23 -0400)]
Issue #10365: File open dialog now works instead of crashing
even when parent window is closed. Patch by Roger Serwy.

12 years agoMake multiprocessing's shared memory use memoryview instead of raw pointer
Richard Oudkerk [Sat, 26 May 2012 21:09:59 +0000 (22:09 +0100)]
Make multiprocessing's shared memory use memoryview instead of raw pointer

12 years agoMerge Issue #14876: Use user-selected font for highlight configuration.
Terry Jan Reedy [Sat, 26 May 2012 20:50:30 +0000 (16:50 -0400)]
Merge Issue #14876: Use user-selected font for highlight configuration.
Patch by Roger Serwy.

12 years agoIssue #14876: Use user-selected font for highlight configuration.
Terry Jan Reedy [Sat, 26 May 2012 20:31:00 +0000 (16:31 -0400)]
Issue #14876: Use user-selected font for highlight configuration.
Patch by Roger Serwy.

12 years agoMerged upstream changes.
Vinay Sajip [Sat, 26 May 2012 19:39:27 +0000 (20:39 +0100)]
Merged upstream changes.

12 years agoAddressed some buildbot errors and comments on the checkin by Antoine on python-dev.
Vinay Sajip [Sat, 26 May 2012 19:36:12 +0000 (20:36 +0100)]
Addressed some buildbot errors and comments on the checkin by Antoine on python-dev.

12 years ago#8739: upgrade smtpd to RFC 5321 and 1870.
R David Murray [Sat, 26 May 2012 18:33:59 +0000 (14:33 -0400)]
#8739: upgrade smtpd to RFC 5321 and 1870.

smtpd now handles EHLO and has infrastructure for extended smtp command mode.
The SIZE extension is also implemented.  In order to support parameters on
MAIL FROM, the RFC 5322 parser from the email package is used to parse the
address "token".

Logging subclasses things and overrides __init__, so it was necessary to
update those __init__ functions in the logging tests to make the logging tests
pass.

The original suggestion and patch were by Alberto Trevino.  Juhana Jauhiainen
added the --size argument and SIZE parameter support.  Michele Orrù improved
the patch and added more tests.  Dan Boswell conditionalized various bits of
code on whether or not we are in HELO or EHLO mode, as well as some other
improvements and tests.  I finalized the patch and added the address parsing.

12 years agoRecognize '<>' as a special case of an angle-addr in header_value_parser.
R David Murray [Sat, 26 May 2012 18:31:12 +0000 (14:31 -0400)]
Recognize '<>' as a special case of an angle-addr in header_value_parser.

Although '<>' is invalid according to RFC 5322, SMTP uses it for various
things, and it sometimes ends up in email headers.  This patch changes
get_angle_addr to recognize it and just register a Defect instead of raising a
parsing error.

12 years agoRemove some redundant decorators.
Brett Cannon [Sat, 26 May 2012 18:28:21 +0000 (14:28 -0400)]
Remove some redundant decorators.

12 years agoIssue #14814: Add a basic ipaddress tutorial (thanks to Sandro Tosi for the initial...
Nick Coghlan [Sat, 26 May 2012 15:53:33 +0000 (01:53 +1000)]
Issue #14814: Add a basic ipaddress tutorial (thanks to Sandro Tosi for the initial conversion from Peter Moody's wiki version)

12 years agoIssue #14814: Clean out an obsolete property and method from ipaddress Network objects
Nick Coghlan [Sat, 26 May 2012 15:03:25 +0000 (01:03 +1000)]
Issue #14814: Clean out an obsolete property and method from ipaddress Network objects

12 years agoIssue #14814: Cleanup ipaddress header comments
Nick Coghlan [Sat, 26 May 2012 14:57:25 +0000 (00:57 +1000)]
Issue #14814: Cleanup ipaddress header comments

12 years agoIssue #14814: In the spirit of TOOWTDI, ditch the redundant version parameter to...
Nick Coghlan [Sat, 26 May 2012 14:25:58 +0000 (00:25 +1000)]
Issue #14814: In the spirit of TOOWTDI, ditch the redundant version parameter to the factory functions by using the appropriate direct class references instead

12 years ago#14814: Some PEP8 adjustments and dead code weeding
Hynek Schlawack [Sat, 26 May 2012 10:04:56 +0000 (12:04 +0200)]
#14814: Some PEP8 adjustments and dead code weeding

12 years agoAdd missing versionadded.
Georg Brandl [Sat, 26 May 2012 07:11:22 +0000 (09:11 +0200)]
Add missing versionadded.

12 years ago#665194: Add a localtime function to email.utils.
R David Murray [Sat, 26 May 2012 03:22:59 +0000 (23:22 -0400)]
#665194: Add a localtime function to email.utils.

Without this function people would be tempted to use the other date functions
in email.utils to compute an aware localtime, and those functions are not as
good for that purpose as this code.  The code is Alexander Belopolsy's from
his proposed patch for issue 9527, with a fix (and additional tests) by Brian
K. Jones.

12 years ago#12586: Fix a small oversight in the new email policy header setting code.
R David Murray [Sat, 26 May 2012 02:53:12 +0000 (22:53 -0400)]
#12586: Fix a small oversight in the new email policy header setting code.

This is a danger of focusing on unit tests: sometimes you forget
to do the integration tests.

12 years agoMerged upstream changes.
Vinay Sajip [Sat, 26 May 2012 02:48:27 +0000 (03:48 +0100)]
Merged upstream changes.

12 years agoImplemented PEP 405 (Python virtual environments).
Vinay Sajip [Sat, 26 May 2012 02:45:29 +0000 (03:45 +0100)]
Implemented PEP 405 (Python virtual environments).

12 years agoAdd news entries for #14731 and #12586.
R David Murray [Sat, 26 May 2012 02:33:36 +0000 (22:33 -0400)]
Add news entries for #14731 and #12586.

12 years ago#12586: Expand What's New email entry with provisional policy features.
R David Murray [Sat, 26 May 2012 02:25:56 +0000 (22:25 -0400)]
#12586: Expand What's New email entry with provisional policy features.

12 years agoUpdated .hgeol for additional binaries.
Vinay Sajip [Sat, 26 May 2012 02:25:23 +0000 (03:25 +0100)]
Updated .hgeol for additional binaries.

12 years agoIssue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just have...
Senthil Kumaran [Sat, 26 May 2012 01:55:28 +0000 (09:55 +0800)]
Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just have ascii in help msg

12 years agoIssue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just have...
Senthil Kumaran [Sat, 26 May 2012 01:53:32 +0000 (09:53 +0800)]
Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just have ascii in help msg

12 years ago#12586: add provisional email policy with new header parsing and folding.
R David Murray [Fri, 25 May 2012 22:42:14 +0000 (18:42 -0400)]
#12586: add provisional email policy with new header parsing and folding.

When the new policies are used (and only when the new policies are explicitly
used) headers turn into objects that have attributes based on their parsed
values, and can be set using objects that encapsulate the values, as well as
set directly from unicode strings.  The folding algorithm then takes care of
encoding unicode where needed, and folding according to the highest level
syntactic objects.

With this patch only date and time headers are parsed as anything other than
unstructured, but that is all the helper methods in the existing API handle.
I do plan to add more parsers, and complete the set specified in the RFC
before the package becomes stable.

12 years ago#14731: add preliminary What's New entry for policy framework.
R David Murray [Fri, 25 May 2012 21:59:56 +0000 (17:59 -0400)]
#14731: add preliminary What's New entry for policy framework.

12 years ago#14731: refactor email policy framework.
R David Murray [Fri, 25 May 2012 19:01:48 +0000 (15:01 -0400)]
#14731: refactor email policy framework.

This patch primarily does two things: (1) it adds some internal-interface
methods to Policy that allow for Policy to control the parsing and folding of
headers in such a way that we can construct a backward compatibility policy
that is 100% compatible with the 3.2 API, while allowing a new policy to
implement the email6 API.  (2) it adds that backward compatibility policy and
refactors the test suite so that the only differences between the 3.2
test_email.py file and the 3.3 test_email.py file is some small changes in
test framework and the addition of tests for bugs fixed that apply to the 3.2
API.

There are some additional teaks, such as moving just the code needed for the
compatibility policy into _policybase, so that the library code can import
only _policybase.  That way the new code that will be added for email6
will only get imported when a non-compatibility policy is imported.

12 years agocapitialize utime statuses
Benjamin Peterson [Fri, 25 May 2012 17:26:47 +0000 (10:26 -0700)]
capitialize utime statuses

12 years agocapitialize enum members
Benjamin Peterson [Fri, 25 May 2012 17:22:29 +0000 (10:22 -0700)]
capitialize enum members

12 years agoPlaceholder in What's New for the major packaging infrastructure changes
Nick Coghlan [Fri, 25 May 2012 15:31:25 +0000 (01:31 +1000)]
Placeholder in What's New for the major packaging infrastructure changes

12 years agoAdded test for namespace package dynamic path updates.
Eric V. Smith [Fri, 25 May 2012 15:25:27 +0000 (11:25 -0400)]
Added test for namespace package dynamic path updates.

12 years agoIssue #14548: Make multiprocessing finalizers check pid before running
Richard Oudkerk [Fri, 25 May 2012 12:54:53 +0000 (13:54 +0100)]
Issue #14548: Make multiprocessing finalizers check pid before running

This protects from possibilty of gc running just after fork.

12 years agoIssue #12091: simplify ApplyResult and MapResult with threading.Event
Richard Oudkerk [Fri, 25 May 2012 12:26:53 +0000 (13:26 +0100)]
Issue #12091: simplify ApplyResult and MapResult with threading.Event

Patch by Charles-François Natali

12 years agoMerge
Richard Oudkerk [Fri, 25 May 2012 12:04:20 +0000 (13:04 +0100)]
Merge

12 years agoIssue #14881: Allow normal non-main thread to spawn a dummy process
Richard Oudkerk [Fri, 25 May 2012 11:57:58 +0000 (12:57 +0100)]
Issue #14881: Allow normal non-main thread to spawn a dummy process

Fix suggested by Itay Brandes

12 years ago#4841: Fix FileIO constructor to honor closefd when called repeatedly
Hynek Schlawack [Fri, 25 May 2012 08:27:43 +0000 (10:27 +0200)]
#4841: Fix FileIO constructor to honor closefd when called repeatedly

Patch by Victor Stinner.

12 years ago#4841: Fix FileIO constructor to honor closefd when called repeatedly
Hynek Schlawack [Fri, 25 May 2012 08:05:53 +0000 (10:05 +0200)]
#4841: Fix FileIO constructor to honor closefd when called repeatedly

Patch by Victor Stinner.

12 years agouse PyDict_Contains
Benjamin Peterson [Fri, 25 May 2012 07:24:42 +0000 (00:24 -0700)]
use PyDict_Contains

12 years agoreturn NULL on error
Benjamin Peterson [Fri, 25 May 2012 07:22:04 +0000 (00:22 -0700)]
return NULL on error

12 years agoactually return the result
Benjamin Peterson [Fri, 25 May 2012 07:19:40 +0000 (00:19 -0700)]
actually return the result

12 years agoIssue #14889: PyBytes_FromObject(bytes) now just increfs and returns.
Larry Hastings [Fri, 25 May 2012 05:58:30 +0000 (22:58 -0700)]
Issue #14889: PyBytes_FromObject(bytes) now just increfs and returns.
Previously, if you passed in a bytes object, it would create a whole
new object.

12 years agosimplify and rewrite the zipimport part of 702009f3c0b1 a bit
Benjamin Peterson [Fri, 25 May 2012 05:54:15 +0000 (22:54 -0700)]
simplify and rewrite the zipimport part of 702009f3c0b1 a bit

12 years agoplug ref leak
Benjamin Peterson [Fri, 25 May 2012 05:35:39 +0000 (22:35 -0700)]
plug ref leak

12 years agoWhitespace cleanup.
Eric V. Smith [Fri, 25 May 2012 00:22:10 +0000 (20:22 -0400)]
Whitespace cleanup.

12 years agoissue 14660: Implement PEP 420, namespace packages.
Eric V. Smith [Fri, 25 May 2012 00:21:04 +0000 (20:21 -0400)]
issue 14660: Implement PEP 420, namespace packages.

12 years ago#14863: Update the documentation of os.fdopen()
Petri Lehtinen [Thu, 24 May 2012 18:49:59 +0000 (21:49 +0300)]
#14863: Update the documentation of os.fdopen()

12 years ago#14863: Update the documentation of os.fdopen()
Petri Lehtinen [Thu, 24 May 2012 18:44:07 +0000 (21:44 +0300)]
#14863: Update the documentation of os.fdopen()

There's no bufsize argument anymore, and os.fdopen() is only a very
thin wrapper around open() anymore. Change the documentation to
reflect that.

12 years agoIssue #14036: return None when port in urlparse cross 65535
Senthil Kumaran [Thu, 24 May 2012 13:57:38 +0000 (21:57 +0800)]
Issue #14036: return None when port in urlparse cross 65535

12 years agoIssue #14036: return None when port in urlparse cross 65535
Senthil Kumaran [Thu, 24 May 2012 13:56:17 +0000 (21:56 +0800)]
Issue #14036: return None when port in urlparse cross 65535

12 years agoIssue #14814: minor improvements as suggested by Hynek Schlawack
Sandro Tosi [Wed, 23 May 2012 21:17:22 +0000 (23:17 +0200)]
Issue #14814: minor improvements as suggested by Hynek Schlawack

12 years agoIssue #14814: improve docstrings and arguments value handling, as per Terry J. Reedy...
Sandro Tosi [Wed, 23 May 2012 20:26:55 +0000 (22:26 +0200)]
Issue #14814: improve docstrings and arguments value handling, as per Terry J. Reedy's comments

12 years ago#14862: Add missing names to os.__all__
Petri Lehtinen [Wed, 23 May 2012 18:36:16 +0000 (21:36 +0300)]
#14862: Add missing names to os.__all__

12 years agoRemove duplicate entries in Misc/NEWS.
Florent Xicluna [Wed, 23 May 2012 15:42:50 +0000 (17:42 +0200)]
Remove duplicate entries in Misc/NEWS.

12 years ago#14885: Make support.skip_unless_xattr check also tempfile
Hynek Schlawack [Wed, 23 May 2012 09:22:44 +0000 (11:22 +0200)]
#14885: Make support.skip_unless_xattr check also tempfile

There is a rare edge case where the filesystem used by the tempfile functions
(usually /tmp) doesn't support xattrs while the one used by TESTFN (the current
directory, so likely to be below /home) does. This causes the xattr related
test_shutil tests fail. skip_unless_xattr now checks both.

I have also added skip_unless_xattr to __all__ where it has been missing.

12 years agos/tabs/spaces, and clean trailing whitespace
Eli Bendersky [Wed, 23 May 2012 04:09:08 +0000 (07:09 +0300)]
s/tabs/spaces, and clean trailing whitespace

12 years agoMerge branch '3.2'
Petri Lehtinen [Tue, 22 May 2012 18:05:30 +0000 (21:05 +0300)]
Merge branch '3.2'

12 years ago#14472: Update .gitignore
Petri Lehtinen [Tue, 22 May 2012 17:48:16 +0000 (20:48 +0300)]
#14472: Update .gitignore

Patch by Matej Cepl.

12 years ago#14472: Update .gitignore
Petri Lehtinen [Tue, 22 May 2012 17:48:16 +0000 (20:48 +0300)]
#14472: Update .gitignore

Patch by Matej Cepl.

12 years agoUpdate build.bat for VS2010
Brian Curtin [Tue, 22 May 2012 16:04:32 +0000 (11:04 -0500)]
Update build.bat for VS2010

12 years agoRestore [] where default arguments are not keywords
Hynek Schlawack [Tue, 22 May 2012 14:14:56 +0000 (16:14 +0200)]
Restore [] where default arguments are not keywords

12 years agoRestore [] where default arguments are not keywords
Hynek Schlawack [Tue, 22 May 2012 14:12:18 +0000 (16:12 +0200)]
Restore [] where default arguments are not keywords

Reverts some changes of d13fdd97cc8e.

12 years agoFix typo
Nick Coghlan [Tue, 22 May 2012 13:04:42 +0000 (23:04 +1000)]
Fix typo

12 years agoFix the versionadded tags for a couple of my recent changes
Nick Coghlan [Tue, 22 May 2012 13:02:00 +0000 (23:02 +1000)]
Fix the versionadded tags for a couple of my recent changes

12 years ago#14875: merge with 3.2.
Ezio Melotti [Mon, 21 May 2012 23:53:42 +0000 (17:53 -0600)]
#14875: merge with 3.2.

12 years ago#14875: Use float('inf') instead of float('1e66666') in the json module.
Ezio Melotti [Mon, 21 May 2012 23:49:06 +0000 (17:49 -0600)]
#14875: Use float('inf') instead of float('1e66666') in the json module.

12 years agoAvoid useless indentation.
Georg Brandl [Mon, 21 May 2012 18:28:58 +0000 (20:28 +0200)]
Avoid useless indentation.

12 years agoRemove outdated statement.
Antoine Pitrou [Mon, 21 May 2012 17:23:00 +0000 (19:23 +0200)]
Remove outdated statement.

12 years agoClose #14136 by cleaning up the PEP 409 command line test (patch by Ethan Furman)
Nick Coghlan [Mon, 21 May 2012 13:03:30 +0000 (23:03 +1000)]
Close #14136 by cleaning up the PEP 409 command line test (patch by Ethan Furman)

12 years agoClose #13585: add contextlib.ExitStack to replace the ill-fated contextlib.nested API
Nick Coghlan [Mon, 21 May 2012 12:54:43 +0000 (22:54 +1000)]
Close #13585: add contextlib.ExitStack to replace the ill-fated contextlib.nested API

12 years ago#14804: Remove [] around optional arguments with default values
Hynek Schlawack [Mon, 21 May 2012 11:41:25 +0000 (13:41 +0200)]
#14804: Remove [] around optional arguments with default values

3.3 specific additions to d13fdd97cc8e.

12 years ago#14804: Remove [] around optional arguments with default values
Hynek Schlawack [Mon, 21 May 2012 11:35:03 +0000 (13:35 +0200)]
#14804: Remove [] around optional arguments with default values

12 years ago#14804: Remove [] around optional arguments with default values
Hynek Schlawack [Mon, 21 May 2012 09:01:54 +0000 (11:01 +0200)]
#14804: Remove [] around optional arguments with default values

12 years agoFix `versionchanged` tags for json.load
Hynek Schlawack [Sun, 20 May 2012 16:34:11 +0000 (18:34 +0200)]
Fix `versionchanged` tags for json.load

`versionchanged` tags about 2.7 are useless in 3.x branches.

12 years agoFix `versionchanged` tags for json.load
Hynek Schlawack [Sun, 20 May 2012 16:32:53 +0000 (18:32 +0200)]
Fix `versionchanged` tags for json.load

`versionchanged` tags about 2.7 are useless in 3.x branches.

12 years agoCloses #14864: Added documentation on how to undo the effects of a logging.disable...
Vinay Sajip [Sun, 20 May 2012 14:37:33 +0000 (15:37 +0100)]
Closes #14864: Added documentation on how to undo the effects of a logging.disable() call. Thanks to user Guillaume for the suggestion.

12 years agoFixes #14864: Added documentation on how to undo the effects of a logging.disable...
Vinay Sajip [Sun, 20 May 2012 14:36:17 +0000 (15:36 +0100)]
Fixes #14864: Added documentation on how to undo the effects of a logging.disable() call.

12 years agoIssue 14821:
Kristján Valur Jónsson [Sun, 20 May 2012 11:25:48 +0000 (11:25 +0000)]
Issue 14821:
If a dependency is expressed both in the .sln file and the .vcxproj file
msbuild is confused.  Removing the .sln dependencies which are
deprecated anyway.  See:
http://blogs.msdn.com/b/visualstudio/archive/2010/12/21/incorrect-solution-build-ordering-when-using-msbuild-exe.aspx

12 years agoRemove an incorrect implementation detail
Nick Coghlan [Sun, 20 May 2012 11:22:27 +0000 (21:22 +1000)]
Remove an incorrect implementation detail

12 years agoIssue #14814: addition of the ipaddress module (stage 1 - code and tests)
Nick Coghlan [Sun, 20 May 2012 11:01:57 +0000 (21:01 +1000)]
Issue #14814: addition of the ipaddress module (stage 1 - code and tests)

12 years agoDocument when json.load's parse_constant behaviour changed
Hynek Schlawack [Sun, 20 May 2012 10:04:01 +0000 (12:04 +0200)]
Document when json.load's parse_constant behaviour changed

It doesn't get called on 'null', 'true', 'false' since f686aced02a3.

12 years agoDocument when json.load's parse_constant behaviour changed
Hynek Schlawack [Sun, 20 May 2012 10:03:17 +0000 (12:03 +0200)]
Document when json.load's parse_constant behaviour changed

It doesn't get called on 'null', 'true', 'false' since f686aced02a3.

12 years agoMerge.
Charles-François Natali [Sun, 20 May 2012 09:43:28 +0000 (11:43 +0200)]
Merge.

12 years agoIssue #12760: Add some mising documentation about the new `x` exclusive
Charles-François Natali [Sun, 20 May 2012 09:41:53 +0000 (11:41 +0200)]
Issue #12760: Add some mising documentation about the new `x` exclusive
creation flag to open().

12 years agoClarify a paragraph in the new metaclass docs
Nick Coghlan [Sun, 20 May 2012 09:36:40 +0000 (19:36 +1000)]
Clarify a paragraph in the new metaclass docs

12 years agomerge - Fix for issue14426 - buildbots here I come
Senthil Kumaran [Sun, 20 May 2012 08:58:59 +0000 (16:58 +0800)]
merge - Fix for issue14426 - buildbots here I come

12 years agoFix for issue14426 - buildbots here I come
Senthil Kumaran [Sun, 20 May 2012 08:58:30 +0000 (16:58 +0800)]
Fix for issue14426 - buildbots here I come

12 years agoDescribe the default hash correctly, and mark a couple of CPython implementation...
Nick Coghlan [Sun, 20 May 2012 08:30:49 +0000 (18:30 +1000)]
Describe the default hash correctly, and mark a couple of CPython implementation details

12 years agoFix typo in new metaclass docs
Nick Coghlan [Sun, 20 May 2012 08:15:11 +0000 (18:15 +1000)]
Fix typo in new metaclass docs

12 years agoMinor change to default lru size. Set default to a power of two.
Raymond Hettinger [Sun, 20 May 2012 04:20:48 +0000 (21:20 -0700)]
Minor change to default lru size.  Set default to a power of two.

12 years agonews for Issue14426
Senthil Kumaran [Sun, 20 May 2012 04:08:29 +0000 (12:08 +0800)]
news for Issue14426

12 years ago Issue #14426: Correct the Date format in Expires attribute of Set-Cookie. Patch...
Senthil Kumaran [Sun, 20 May 2012 04:06:51 +0000 (12:06 +0800)]
 Issue #14426: Correct the Date format in Expires attribute of Set-Cookie. Patch by Federico Reghenzani and Müte Invert