]> granicus.if.org Git - python/log
python
13 years agoRecommend use of the tracker during the RC phase or just before a beta.
Raymond Hettinger [Mon, 31 Jan 2011 06:34:47 +0000 (06:34 +0000)]
Recommend use of the tracker during the RC phase or just before a beta.

13 years agoFix minor grammar nits.
Raymond Hettinger [Mon, 31 Jan 2011 06:14:48 +0000 (06:14 +0000)]
Fix minor grammar nits.
Revert r88272 -- the examples are more readable with spacing.
Add todos for difflib and logging.

13 years agoMention new parameter and attributes of the difflib.SequenceMatcher class added in...
Eli Bendersky [Mon, 31 Jan 2011 04:21:40 +0000 (04:21 +0000)]
Mention new parameter and attributes of the difflib.SequenceMatcher class added in 3.2 (issue 2986)

13 years agoFix PEP-8 violation in argparse usage example (similar examples in argparse.rst do...
Eli Bendersky [Mon, 31 Jan 2011 04:10:23 +0000 (04:10 +0000)]
Fix PEP-8 violation in argparse usage example (similar examples in argparse.rst do follow PEP-8)

13 years agoFix some grammar and typos
Eli Bendersky [Mon, 31 Jan 2011 04:05:52 +0000 (04:05 +0000)]
Fix some grammar and typos

13 years agoTagging release 3.2 rc 2.
Georg Brandl [Sun, 30 Jan 2011 14:05:04 +0000 (14:05 +0000)]
Tagging release 3.2 rc 2.

13 years agoBump version. v3.2rc2
Georg Brandl [Sun, 30 Jan 2011 14:03:33 +0000 (14:03 +0000)]
Bump version.

13 years agoUpdate suspicious ignore file.
Georg Brandl [Sun, 30 Jan 2011 14:02:36 +0000 (14:02 +0000)]
Update suspicious ignore file.

13 years agoUpdate pydoc topics.
Georg Brandl [Sun, 30 Jan 2011 14:00:32 +0000 (14:00 +0000)]
Update pydoc topics.

13 years ago#10680: fix mutually exclusive arguments in argument groups.
Georg Brandl [Sun, 30 Jan 2011 12:19:35 +0000 (12:19 +0000)]
#10680: fix mutually exclusive arguments in argument groups.

13 years ago#10961: fix exception handling in new pydoc server code.
Georg Brandl [Sun, 30 Jan 2011 08:37:19 +0000 (08:37 +0000)]
#10961: fix exception handling in new pydoc server code.
Patch by Ron Adam, reviewed by Eric Araujo.

13 years agoClarify the status of get_string() and recommend using the binary API.
Raymond Hettinger [Sun, 30 Jan 2011 08:20:37 +0000 (08:20 +0000)]
Clarify the status of get_string() and recommend using the binary API.

13 years ago#11069: fix the IDLE Stack Viewer, by not using "list" as a variable name.
Georg Brandl [Sun, 30 Jan 2011 08:16:07 +0000 (08:16 +0000)]
#11069: fix the IDLE Stack Viewer, by not using "list" as a variable name.
Original patch by Brian Curtin, reviewed by me.

13 years agoAdd entry for the mailbox fixups.
Raymond Hettinger [Sun, 30 Jan 2011 07:56:03 +0000 (07:56 +0000)]
Add entry for the mailbox fixups.

13 years ago#9124: mailbox now accepts binary input and uses binary internally
R. David Murray [Sun, 30 Jan 2011 06:21:28 +0000 (06:21 +0000)]
#9124: mailbox now accepts binary input and uses binary internally

Although this patch contains API changes and is rather weighty for an
RC phase, the mailbox module was essentially unusable without the patch
since it would produce UnicodeErrors when handling non-ascii input
at arbitrary and somewhat mysterious places, and any non-trivial amount
of email processing will encounter messages with non-ascii bytes.
The release manager approved the patch application.

The changes allow binary input, and reject non-ASCII string input early
with a useful message instead of failing mysteriously later.  Binary
is used internally for reading and writing the mailbox files.  StringIO
and Text file input are deprecated.

Initial patch by Victor Stinner, validated and expanded by R. David Murray.

13 years agoList known build/install problems for OS X.
Raymond Hettinger [Sun, 30 Jan 2011 05:37:16 +0000 (05:37 +0000)]
List known build/install problems for OS X.

13 years agoIssue #10845: Improve compatibility between multiprocessing on Windows and package...
Nick Coghlan [Sun, 30 Jan 2011 01:24:08 +0000 (01:24 +0000)]
Issue #10845: Improve compatibility between multiprocessing on Windows and package, zipfile and directory execution (Reviewed by Antoine Pitrou and approved by Georg Brandl)

13 years agoMarkup nits.
Raymond Hettinger [Sun, 30 Jan 2011 01:10:07 +0000 (01:10 +0000)]
Markup nits.

13 years agoAdd section for http.client.
Raymond Hettinger [Sun, 30 Jan 2011 00:55:47 +0000 (00:55 +0000)]
Add section for http.client.
Link to OS X build instructions.
Add back issue references for datetime.

13 years agoTypos.
Raymond Hettinger [Sun, 30 Jan 2011 00:39:00 +0000 (00:39 +0000)]
Typos.

13 years agoProtect logging call against None argument (fixes #11045).
Éric Araujo [Sat, 29 Jan 2011 20:32:11 +0000 (20:32 +0000)]
Protect logging call against None argument (fixes #11045).

Initial patch by Kelsey Hightower.  Approved by Raymond.  A test was
non-trivial to write without calling the private function directly, so
we moved that for later.

13 years agoIssue #10939: Make Internaldate2tuple test more robust.
Alexander Belopolsky [Sat, 29 Jan 2011 19:49:40 +0000 (19:49 +0000)]
Issue #10939: Make Internaldate2tuple test more robust.

13 years agoIssue 11052: Correct IDLE menu accelerators on Mac OS X for Save
Ned Deily [Sat, 29 Jan 2011 19:10:26 +0000 (19:10 +0000)]
Issue 11052: Correct IDLE menu accelerators on Mac OS X for Save
commands.  (with release manager approval for 3.2rc2)

13 years agoIssue #11054: Allow Mac OS X installer builds to again work on 10.5 with
Ned Deily [Sat, 29 Jan 2011 18:56:28 +0000 (18:56 +0000)]
Issue #11054: Allow Mac OS X installer builds to again work on 10.5 with
the system-provided Python.  Also, properly guard a new Python 3 only
installer build step so that build-installer.py can stay compatible
with the 2.7 version.  (with release manager approval for 3.2rc2)

13 years agoIssue #11053: Fix IDLE "Syntax Error" windows to behave as in 2.x,
Ned Deily [Sat, 29 Jan 2011 18:43:56 +0000 (18:43 +0000)]
Issue #11053: Fix IDLE "Syntax Error" windows to behave as in 2.x,
preventing a confusing hung appearance on OS X with the windows
obscured.  (with release manager approval for 3.2rc2)

13 years agoIssue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using the
Ned Deily [Sat, 29 Jan 2011 18:29:01 +0000 (18:29 +0000)]
Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using the
menu accelerators for Open Module, Go to Line, and New Indent Width.
The accelerators still work but no longer appear in the menu items.

13 years agoIssue #10939: Fixed imaplib.Internaldate2tuple(). Thanks Joe Peterson
Alexander Belopolsky [Sat, 29 Jan 2011 17:19:08 +0000 (17:19 +0000)]
Issue #10939: Fixed imaplib.Internaldate2tuple(). Thanks Joe Peterson
for the report and the patch.  Reviewed by Georg Brandl.

13 years agofix reference to issue where the addition of select.PIPE_BUF was discussed
Giampaolo Rodolà [Sat, 29 Jan 2011 13:24:33 +0000 (13:24 +0000)]
fix reference to issue where the addition of select.PIPE_BUF was discussed

13 years agoIssue #10989: Fix a crash on SSLContext.load_verify_locations(None, True).
Victor Stinner [Sat, 29 Jan 2011 11:31:20 +0000 (11:31 +0000)]
Issue #10989: Fix a crash on SSLContext.load_verify_locations(None, True).

Patch reviewed by Antoine Pitrou, okayed by Georg Brandl.

13 years agoIssue #11302: missing type check on _string.formatter_field_name_split and _string...
Eric Smith [Sat, 29 Jan 2011 11:15:35 +0000 (11:15 +0000)]
Issue #11302: missing type check on _string.formatter_field_name_split and _string.formatter_parser caused crash.

Originial patch by haypo, reviewed by me, okayed by Georg.

13 years agoAdd entry for str.format_map().
Raymond Hettinger [Sat, 29 Jan 2011 08:51:57 +0000 (08:51 +0000)]
Add entry for str.format_map().
Add bullet list and reference to documentation section.

13 years agoAdded a placeholder for str.format_map, as discussed with Raymond. My prose is horrib...
Eric Smith [Fri, 28 Jan 2011 20:23:25 +0000 (20:23 +0000)]
Added a placeholder for str.format_map, as discussed with Raymond. My prose is horrible, some cleanup is required.

13 years agoIssue 10573: revert unittest docs to first / second
Michael Foord [Fri, 28 Jan 2011 19:51:48 +0000 (19:51 +0000)]
Issue 10573: revert unittest docs to first / second
Minor internal change to unittest.TestCase.assertCountEqual
Reviewed by R. David Murray

13 years ago#11027: documented how to override SECTCRE
Łukasz Langa [Fri, 28 Jan 2011 11:57:30 +0000 (11:57 +0000)]
#11027: documented how to override SECTCRE

13 years agoMore source links
Raymond Hettinger [Thu, 27 Jan 2011 20:38:46 +0000 (20:38 +0000)]
More source links

13 years agoIssue 11008: docs updated to show versionadded for dictConfig.
Vinay Sajip [Thu, 27 Jan 2011 19:14:16 +0000 (19:14 +0000)]
Issue 11008: docs updated to show versionadded for dictConfig.

13 years agoMore typical sample invocation of tarfile.
Raymond Hettinger [Thu, 27 Jan 2011 07:34:45 +0000 (07:34 +0000)]
More typical sample invocation of tarfile.

13 years agoAdd missing attributions.
Raymond Hettinger [Thu, 27 Jan 2011 06:46:54 +0000 (06:46 +0000)]
Add missing attributions.

13 years agoUpdate todo list.
Raymond Hettinger [Thu, 27 Jan 2011 06:10:18 +0000 (06:10 +0000)]
Update todo list.

13 years agoAdd an entry for tarfile.
Raymond Hettinger [Thu, 27 Jan 2011 05:48:56 +0000 (05:48 +0000)]
Add an entry for tarfile.

13 years agoMore source links.
Raymond Hettinger [Thu, 27 Jan 2011 01:20:32 +0000 (01:20 +0000)]
More source links.

13 years agoIssue #11020: Command-line pyclbr was broken because of missing 2-to-3
Raymond Hettinger [Thu, 27 Jan 2011 00:06:54 +0000 (00:06 +0000)]
Issue #11020: Command-line pyclbr was broken because of missing 2-to-3
conversion.

(Patch reviewed by David Murray.)

13 years agoIssue #11018: fix a test to not be a no-op in test_bz2.
Antoine Pitrou [Wed, 26 Jan 2011 23:29:28 +0000 (23:29 +0000)]
Issue #11018: fix a test to not be a no-op in test_bz2.
Found by Nadeem Vawda, reviewed by Brett.

13 years ago#11019: Make BytesGenerator handle Message with None body.
R. David Murray [Wed, 26 Jan 2011 21:21:32 +0000 (21:21 +0000)]
#11019: Make BytesGenerator handle Message with None body.

Bug discovery and initial patch by Victor Stinner.

13 years agoIssue #11014: Make 'filter' argument in tarfile.Tarfile.add() into a
Raymond Hettinger [Wed, 26 Jan 2011 20:34:14 +0000 (20:34 +0000)]
Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into a
keyword-only argument.  The preceding positional argument was deprecated,
so it made no sense to add filter as a positional argument.

(Patch reviewed by Brian Curtin and Anthony Long.)

13 years agoMarkup nits.
Raymond Hettinger [Wed, 26 Jan 2011 19:36:13 +0000 (19:36 +0000)]
Markup nits.

14 years agoRevert r88197. I'll refix correctly once there is a test.
R. David Murray [Wed, 26 Jan 2011 02:31:37 +0000 (02:31 +0000)]
Revert r88197.  I'll refix correctly once there is a test.

14 years agoAdd a few imports to examples.
Raymond Hettinger [Wed, 26 Jan 2011 01:13:26 +0000 (01:13 +0000)]
Add a few imports to examples.

14 years agoFix BytesGenerator._handle_text() if the message has no payload (None)
Victor Stinner [Wed, 26 Jan 2011 00:39:19 +0000 (00:39 +0000)]
Fix BytesGenerator._handle_text() if the message has no payload (None)

14 years agofix import in email.message_from_binary_file()
Victor Stinner [Tue, 25 Jan 2011 23:15:47 +0000 (23:15 +0000)]
fix import in email.message_from_binary_file()

Parser => BytesParser

14 years agoIssue #11004: Repair edge case in deque.count().
Raymond Hettinger [Tue, 25 Jan 2011 21:32:39 +0000 (21:32 +0000)]
Issue #11004:  Repair edge case in deque.count().
(Reviewed by Georg Brandl.)

Also made similar changes to deque.reverse() though this wasn't
strictly necessary (the edge case cannot occur with two pointers
moving to meet in the middle).  Making the change in reverse()
was more a matter of future-proofing.

14 years agoTighten the restrictions on the test_sys test which triggers a fatal error when
Brett Cannon [Tue, 25 Jan 2011 18:26:35 +0000 (18:26 +0000)]
Tighten the restrictions on the test_sys test which triggers a fatal error when
run with tracing turned on.

14 years agoFix the description of PIPE_BUF
Antoine Pitrou [Tue, 25 Jan 2011 17:24:57 +0000 (17:24 +0000)]
Fix the description of PIPE_BUF

14 years agoFix the doc for PIPE_BUF
Antoine Pitrou [Tue, 25 Jan 2011 16:28:44 +0000 (16:28 +0000)]
Fix the doc for PIPE_BUF

14 years agoTypo.
Raymond Hettinger [Tue, 25 Jan 2011 08:01:01 +0000 (08:01 +0000)]
Typo.

14 years agoAdd entries for select and site.
Raymond Hettinger [Tue, 25 Jan 2011 07:46:07 +0000 (07:46 +0000)]
Add entries for select and site.

14 years agoAdd math.erfc and turtledemo.
Raymond Hettinger [Tue, 25 Jan 2011 06:58:01 +0000 (06:58 +0000)]
Add math.erfc and turtledemo.

14 years agoTypo.
Raymond Hettinger [Tue, 25 Jan 2011 05:53:27 +0000 (05:53 +0000)]
Typo.

14 years agoNits.
Raymond Hettinger [Tue, 25 Jan 2011 02:38:59 +0000 (02:38 +0000)]
Nits.

14 years agoAdd entry for the math module.
Raymond Hettinger [Tue, 25 Jan 2011 02:35:58 +0000 (02:35 +0000)]
Add entry for the math module.

14 years agoIgnore the gdb.py file under OS X.
Brett Cannon [Tue, 25 Jan 2011 00:56:18 +0000 (00:56 +0000)]
Ignore the gdb.py file under OS X.

14 years agoanother pretty crasher served up by pypy
Benjamin Peterson [Tue, 25 Jan 2011 00:00:28 +0000 (00:00 +0000)]
another pretty crasher served up by pypy

14 years agoAdd entry for io.BytesIO.getbuffer().
Raymond Hettinger [Mon, 24 Jan 2011 22:14:42 +0000 (22:14 +0000)]
Add entry for io.BytesIO.getbuffer().

14 years ago#10974: IDLE no longer crashes if its recent files list includes files
Ned Deily [Mon, 24 Jan 2011 21:46:44 +0000 (21:46 +0000)]
#10974: IDLE no longer crashes if its recent files list includes files
        with non-ASCII characters in their path names.

        (with approval of release manager for 3.2rc2)

14 years agoIssue #11000 ast.parse parses source, not just expressions.
Terry Reedy [Mon, 24 Jan 2011 21:36:03 +0000 (21:36 +0000)]
Issue #11000 ast.parse parses source, not just expressions.

14 years agoIssue #9509: make argarse properly handle IOErrors raised by argparse.FileType. Appro...
Steven Bethard [Mon, 24 Jan 2011 21:02:50 +0000 (21:02 +0000)]
Issue #9509: make argarse properly handle IOErrors raised by argparse.FileType. Approved by Georg in the tracker.

14 years agoUpdate last tix code example for 3.x, as already done for previous examples.
Terry Reedy [Mon, 24 Jan 2011 20:48:40 +0000 (20:48 +0000)]
Update last tix code example for 3.x, as already done for previous examples.

14 years agoFix label syntax.
Georg Brandl [Mon, 24 Jan 2011 19:59:08 +0000 (19:59 +0000)]
Fix label syntax.

14 years agoTypo fix.
Georg Brandl [Mon, 24 Jan 2011 19:53:18 +0000 (19:53 +0000)]
Typo fix.

14 years ago#10960: fix 'stat' links, link to lstat from stat, general tidy of stat doc.
R. David Murray [Mon, 24 Jan 2011 19:34:58 +0000 (19:34 +0000)]
#10960: fix 'stat' links, link to lstat from stat, general tidy of stat doc.

Original patch by Michal Nowikowski, with some additions and wording
fixes by me.

I changed the wording from 'Performs a stat system call' to 'Performs
the equivalent of a stat system call', since on Windows there are no
stat/lstat system calls involved.  I also extended Michal's breakout
of the attributes into a list to the other paragraphs, and rearranged
the order of the paragraphs in the 'stat' docs to make it flow
better and put it in what I think is a more logical/useful order.

14 years agoTypos.
Raymond Hettinger [Mon, 24 Jan 2011 18:19:01 +0000 (18:19 +0000)]
Typos.

14 years agoMissing source links.
Raymond Hettinger [Mon, 24 Jan 2011 16:28:06 +0000 (16:28 +0000)]
Missing source links.

14 years agoFix markup and add todo.
Raymond Hettinger [Mon, 24 Jan 2011 10:11:12 +0000 (10:11 +0000)]
Fix markup and add todo.

14 years agoAdd entry for hash_info().
Raymond Hettinger [Mon, 24 Jan 2011 09:17:24 +0000 (09:17 +0000)]
Add entry for hash_info().

14 years agoAdd section for urllib.parse.
Raymond Hettinger [Mon, 24 Jan 2011 09:01:27 +0000 (09:01 +0000)]
Add section for urllib.parse.

14 years agoAdd entry for the html module.
Raymond Hettinger [Mon, 24 Jan 2011 05:26:00 +0000 (05:26 +0000)]
Add entry for the html module.

14 years agoAdd entry for hashlib and expand the GC entry.
Raymond Hettinger [Mon, 24 Jan 2011 05:07:13 +0000 (05:07 +0000)]
Add entry for hashlib and expand the GC entry.

14 years agoMake the type consistent for hashlib algorithm constants. (Reviewed by Benjamin).
Raymond Hettinger [Mon, 24 Jan 2011 04:52:27 +0000 (04:52 +0000)]
Make the type consistent for hashlib algorithm constants.  (Reviewed by Benjamin).

14 years agoAdd entries for dis, dbm, and ctypes.
Raymond Hettinger [Mon, 24 Jan 2011 01:51:49 +0000 (01:51 +0000)]
Add entries for dis, dbm, and ctypes.

14 years agoAdd entries for array, asyncore, csv, compileall, and ast.
Raymond Hettinger [Mon, 24 Jan 2011 01:18:30 +0000 (01:18 +0000)]
Add entries for array, asyncore, csv, compileall, and ast.

14 years agoSkip a recursion depth check test when running under CPython and have a trace
Brett Cannon [Sun, 23 Jan 2011 23:06:05 +0000 (23:06 +0000)]
Skip a recursion depth check test when running under CPython and have a trace
function set. Otherwise a Python fatal error about hitting an unrecoverable
recursion depth gets triggered.

Closes issue #10985. Code review by Georg Brandl.

14 years agoFix typo.
Raymond Hettinger [Sun, 23 Jan 2011 21:33:36 +0000 (21:33 +0000)]
Fix typo.

14 years agominor clean-up.
Raymond Hettinger [Sun, 23 Jan 2011 21:32:18 +0000 (21:32 +0000)]
minor clean-up.

14 years agoAdd tracker references.
Raymond Hettinger [Sun, 23 Jan 2011 21:13:27 +0000 (21:13 +0000)]
Add tracker references.

14 years agoAdd entry for reprlib.
Raymond Hettinger [Sun, 23 Jan 2011 21:05:46 +0000 (21:05 +0000)]
Add entry for reprlib.

14 years agoIssue #10987: Fix the recursion limit handling in the _pickle module.
Antoine Pitrou [Sun, 23 Jan 2011 17:12:25 +0000 (17:12 +0000)]
Issue #10987: Fix the recursion limit handling in the _pickle module.

14 years agoAdd entry for shutil's archiving operations.
Raymond Hettinger [Sun, 23 Jan 2011 11:29:08 +0000 (11:29 +0000)]
Add entry for shutil's archiving operations.

14 years agoIssue #10955: Fix typo in NEWS, cp497 => cp437
Victor Stinner [Sun, 23 Jan 2011 00:11:58 +0000 (00:11 +0000)]
Issue #10955: Fix typo in NEWS, cp497 => cp437

14 years ago#10983: fix several bugs in the _tunnel implementation that seem to have missed while...
Georg Brandl [Sat, 22 Jan 2011 22:06:24 +0000 (22:06 +0000)]
#10983: fix several bugs in the _tunnel implementation that seem to have missed while porting between branches.  A unittest is needed!

14 years agoTo match the behaviour of HTTP server, the HTTP client library now also encodes
Armin Ronacher [Sat, 22 Jan 2011 13:44:22 +0000 (13:44 +0000)]
To match the behaviour of HTTP server, the HTTP client library now also encodes
headers with iso-8859-1 (latin1) encoding.  It was already doing that for
incoming headers which makes this behaviour now consistent in both incoming and
outgoing direction.

14 years agoIssue #10980: encode headers with latin1 instead of ASCII in the HTTP server.
Armin Ronacher [Sat, 22 Jan 2011 13:13:05 +0000 (13:13 +0000)]
Issue #10980: encode headers with latin1 instead of ASCII in the HTTP server.
This makes the implementation of PEP 3333 compliant servers on top of
BaseHTTPServer possible.

14 years agoIssue #10955: fix NEWS entry
Victor Stinner [Sat, 22 Jan 2011 10:33:01 +0000 (10:33 +0000)]
Issue #10955: fix NEWS entry

14 years agoIssue #10955: zipimport uses ASCII at bootstrap
Victor Stinner [Sat, 22 Jan 2011 10:30:29 +0000 (10:30 +0000)]
Issue #10955: zipimport uses ASCII at bootstrap

zipimport uses ASCII encoding instead of cp497 to decode filenames, at
bootstrap, if the codec registry is not ready yet. It is still possible to have
non-ASCII filenames using the Unicode flag (UTF-8 encoding) for file entries in
the ZIP file.

14 years agoIssue #10949: Improved robustness of rotating file handlers.
Vinay Sajip [Fri, 21 Jan 2011 23:35:57 +0000 (23:35 +0000)]
Issue #10949: Improved robustness of rotating file handlers.

14 years agoFix JSON docs about loads() accepting only str objects, not bytes.
Antoine Pitrou [Fri, 21 Jan 2011 21:37:32 +0000 (21:37 +0000)]
Fix JSON docs about loads() accepting only str objects, not bytes.

14 years agoUse a Latin-1 example that won't break the LaTeX PDF build.
Raymond Hettinger [Fri, 21 Jan 2011 09:18:19 +0000 (09:18 +0000)]
Use a Latin-1 example that won't break the LaTeX PDF build.

14 years agoAdd example for __wrapped__.
Raymond Hettinger [Fri, 21 Jan 2011 04:59:00 +0000 (04:59 +0000)]
Add example for __wrapped__.

14 years agoClarify what changed with respect to date ranges and two-digit years.
Raymond Hettinger [Fri, 21 Jan 2011 03:00:00 +0000 (03:00 +0000)]
Clarify what changed with respect to date ranges and two-digit years.

14 years agoIssue #10955: Fix a potential crash when trying to mmap() a file past its
Antoine Pitrou [Thu, 20 Jan 2011 21:07:24 +0000 (21:07 +0000)]
Issue #10955: Fix a potential crash when trying to mmap() a file past its
length.  Initial patch by Ross Lagerwall.

This fixes a regression introduced by r88022.

14 years agoCorrected the entry about new year range in the time module.
Alexander Belopolsky [Thu, 20 Jan 2011 19:51:31 +0000 (19:51 +0000)]
Corrected the entry about new year range in the time module.