]> granicus.if.org Git - python/log
python
17 years agoRemove duplicate crasher.
Georg Brandl [Sun, 21 Oct 2007 10:01:56 +0000 (10:01 +0000)]
Remove duplicate crasher.

17 years agoAdd a crasher for the long-standing issue with closing a file
Armin Rigo [Sun, 21 Oct 2007 09:14:15 +0000 (09:14 +0000)]
Add a crasher for the long-standing issue with closing a file
while another thread uses it.

17 years agoUse correct header line
Andrew M. Kuchling [Sat, 20 Oct 2007 19:39:35 +0000 (19:39 +0000)]
Use correct header line

17 years agoVarious items
Andrew M. Kuchling [Sat, 20 Oct 2007 19:35:18 +0000 (19:35 +0000)]
Various items

17 years agoFix protocol name
Andrew M. Kuchling [Sat, 20 Oct 2007 19:25:37 +0000 (19:25 +0000)]
Fix protocol name

17 years agoEven more clarification.
Georg Brandl [Sat, 20 Oct 2007 19:08:36 +0000 (19:08 +0000)]
Even more clarification.

17 years agoClarify -E docs.
Georg Brandl [Sat, 20 Oct 2007 19:05:45 +0000 (19:05 +0000)]
Clarify -E docs.

17 years agoAdd entry to ACKS.
Georg Brandl [Sat, 20 Oct 2007 18:39:25 +0000 (18:39 +0000)]
Add entry to ACKS.

17 years agoChange title, for now.
Georg Brandl [Sat, 20 Oct 2007 18:33:20 +0000 (18:33 +0000)]
Change title, for now.

17 years ago* Add new toplevel chapter, "Using Python." (how to install,
Georg Brandl [Sat, 20 Oct 2007 18:08:14 +0000 (18:08 +0000)]
* Add new toplevel chapter, "Using Python." (how to install,
  configure and setup python on different platforms -- at least
  in theory.)
* Move the Python on Mac docs in that chapter.
* Add a new chapter about the command line invocation, by stargaming.

17 years agoDocument new directive "envvar".
Georg Brandl [Sat, 20 Oct 2007 17:51:39 +0000 (17:51 +0000)]
Document new directive "envvar".

17 years agoMake a path more Unix-standardy.
Georg Brandl [Sat, 20 Oct 2007 15:21:22 +0000 (15:21 +0000)]
Make a path more Unix-standardy.

17 years agoDocument new "cmdoption" directive.
Georg Brandl [Sat, 20 Oct 2007 13:36:24 +0000 (13:36 +0000)]
Document new "cmdoption" directive.

17 years agoFix code being interpreted as a target.
Georg Brandl [Sat, 20 Oct 2007 13:22:53 +0000 (13:22 +0000)]
Fix code being interpreted as a target.

17 years agoThe constructor from tuple was way too permissive: it allowed bad
Facundo Batista [Fri, 19 Oct 2007 19:25:57 +0000 (19:25 +0000)]
The constructor from tuple was way too permissive: it allowed bad
coefficient numbers, floats in the sign, and other details that
generated directly the wrong number in the best case, or triggered
misfunctionality in the alorithms.

Test cases added for these issues. Thanks Mark Dickinson.

17 years agoFix ctypes on 32-bit systems when Python is configured --with-system-ffi.
Thomas Heller [Fri, 19 Oct 2007 18:11:41 +0000 (18:11 +0000)]
Fix ctypes on 32-bit systems when Python is configured --with-system-ffi.
See also https://bugs.launchpad.net/bugs/72505.

Ported from release25-maint branch.

17 years ago#1284: "S" means "seen", not unread.
Georg Brandl [Fri, 19 Oct 2007 17:38:49 +0000 (17:38 +0000)]
#1284: "S" means "seen", not unread.

17 years agoAdded a cross-ref to each other.
Mark Summerfield [Fri, 19 Oct 2007 12:48:17 +0000 (12:48 +0000)]
Added a cross-ref to each other.

17 years agoClarify wording for apply().
Georg Brandl [Fri, 19 Oct 2007 12:32:39 +0000 (12:32 +0000)]
Clarify wording for apply().

17 years agosquelch the warning that this test is supposed to trigger.
Gregory P. Smith [Fri, 19 Oct 2007 07:31:20 +0000 (07:31 +0000)]
squelch the warning that this test is supposed to trigger.

17 years agoRemove useless warning
Raymond Hettinger [Thu, 18 Oct 2007 21:13:06 +0000 (21:13 +0000)]
Remove useless warning

17 years agomention bsddb fixes.
Gregory P. Smith [Thu, 18 Oct 2007 17:17:57 +0000 (17:17 +0000)]
mention bsddb fixes.

17 years agoA cleaner fix than the one committed last night. Generate random rowids that
Gregory P. Smith [Thu, 18 Oct 2007 16:32:02 +0000 (16:32 +0000)]
A cleaner fix than the one committed last night.  Generate random rowids that
do not contain null bytes.

17 years agoFix a weird bug in dbtables: if it chose a random rowid string that contained
Gregory P. Smith [Thu, 18 Oct 2007 08:34:20 +0000 (08:34 +0000)]
Fix a weird bug in dbtables: if it chose a random rowid string that contained
NULL bytes it would cause the database all sorts of problems in the future
leading to very strange random failures and corrupt dbtables.bsdTableDb dbs.

17 years agocleanup test_dbtables to use mkdtemp. cleanup dbtables to pass txn as a
Gregory P. Smith [Thu, 18 Oct 2007 07:56:54 +0000 (07:56 +0000)]
cleanup test_dbtables to use mkdtemp.  cleanup dbtables to pass txn as a
keyword argument whenever possible to avoid bugs and confusion.  (dbtables.py
line 447 self.db.get using txn as a non-keyword was an actual bug due to this)

17 years agoIssue 1289, just a typo.
Facundo Batista [Thu, 18 Oct 2007 03:44:48 +0000 (03:44 +0000)]
Issue 1289, just a typo.

17 years agoIssue #1580738. When HTTPConnection reads the whole stream with read(),
Facundo Batista [Thu, 18 Oct 2007 03:16:03 +0000 (03:16 +0000)]
Issue #1580738.  When HTTPConnection reads the whole stream with read(),
it closes itself.  When the stream is read in several calls to read(n),
it should behave in the same way if HTTPConnection knows where the end
of the stream is (through self.length).  Added a test case for this
behaviour.

17 years agoFix the overflow checking of list_repeat.
Armin Rigo [Wed, 17 Oct 2007 18:46:37 +0000 (18:46 +0000)]
Fix the overflow checking of list_repeat.
Introduce overflow checking into list_inplace_repeat.

Backport candidate, possibly.

17 years agoRe-order some functions whose parameters differ between PyObject and const char
Brett Cannon [Tue, 16 Oct 2007 23:26:45 +0000 (23:26 +0000)]
Re-order some functions whose parameters differ between PyObject and const char
* so that they are next to each other.

17 years agoRemove ``:const:`` notation on None in parameter list. Since the markup is not
Brett Cannon [Tue, 16 Oct 2007 23:24:06 +0000 (23:24 +0000)]
Remove ``:const:`` notation on None in parameter list.  Since the markup is not
rendered for parameters it just showed up as ``:const:`None` `` in the output.

17 years agoAdd items
Andrew M. Kuchling [Tue, 16 Oct 2007 22:58:03 +0000 (22:58 +0000)]
Add items

17 years agoMore docs, error messages, and tests
Raymond Hettinger [Tue, 16 Oct 2007 21:28:32 +0000 (21:28 +0000)]
More docs, error messages, and tests

17 years agoImprove error messages
Raymond Hettinger [Tue, 16 Oct 2007 19:18:30 +0000 (19:18 +0000)]
Improve error messages

17 years agoChange a PyErr_Print() into a PyErr_Clear(),
Guido van Rossum [Mon, 15 Oct 2007 15:54:11 +0000 (15:54 +0000)]
Change a PyErr_Print() into a PyErr_Clear(),
per discussion in issue 1031213.

17 years agotest_bigbits was not testing what it seemed to.
Armin Rigo [Mon, 15 Oct 2007 07:48:35 +0000 (07:48 +0000)]
test_bigbits was not testing what it seemed to.

17 years agoUse unittest for assertions
Neal Norwitz [Sun, 14 Oct 2007 18:40:37 +0000 (18:40 +0000)]
Use unittest for assertions

17 years agoDon't raise a string exception, they don't work anymore.
Neal Norwitz [Sun, 14 Oct 2007 18:30:21 +0000 (18:30 +0000)]
Don't raise a string exception, they don't work anymore.

17 years agoLet the O/S supply a port if none of the default ports can be used.
Neal Norwitz [Sun, 14 Oct 2007 00:18:40 +0000 (00:18 +0000)]
Let the O/S supply a port if none of the default ports can be used.
This should make the tests more robust at the expense of allowing
tests to be sloppier by not requiring them to cleanup after themselves.
(It will legitamitely help when running two test suites simultaneously
or if another process is already using one of the predefined ports.)

Also simplifies (slightLy) the exception handling elsewhere.

17 years agoFix an uncollectable reference leak in bsddb.db.DBShelf.append
Gregory P. Smith [Sat, 13 Oct 2007 23:02:05 +0000 (23:02 +0000)]
Fix an uncollectable reference leak in bsddb.db.DBShelf.append

17 years agoFix email example.
Georg Brandl [Sat, 13 Oct 2007 13:20:03 +0000 (13:20 +0000)]
Fix email example.

17 years agoFixes http://bugs.python.org/issue1233 - bsddb.dbshelve.DBShelf.append
Gregory P. Smith [Fri, 12 Oct 2007 18:44:06 +0000 (18:44 +0000)]
Fixes http://bugs.python.org/issue1233 - bsddb.dbshelve.DBShelf.append
was useless due to inverted logic.  Also adds a test case for RECNO dbs
to test_dbshelve.

17 years agoFix test of count.__repr__() to ignore the 'L' if the count is a long
Raymond Hettinger [Fri, 12 Oct 2007 17:53:11 +0000 (17:53 +0000)]
Fix test of count.__repr__() to ignore the 'L' if the count is a long

17 years agoBug #1216: Restore support for Visual Studio 2002.
Martin v. Löwis [Fri, 12 Oct 2007 08:56:52 +0000 (08:56 +0000)]
Bug #1216: Restore support for Visual Studio 2002.
Will backport to 2.5.

17 years agoGet this module to compile with bsddb versions prior to 4.3
Neal Norwitz [Fri, 12 Oct 2007 03:52:34 +0000 (03:52 +0000)]
Get this module to compile with bsddb versions prior to 4.3

17 years agoFix Coverity 185-186: If the passed in FILE is NULL, uninitialized memory
Neal Norwitz [Fri, 12 Oct 2007 03:05:19 +0000 (03:05 +0000)]
Fix Coverity 185-186:  If the passed in FILE is NULL, uninitialized memory
would be accessed.

Will backport.

17 years agoFix Coverity 180: Don't overallocate. We don't need structs, but pointers.
Neal Norwitz [Fri, 12 Oct 2007 03:04:18 +0000 (03:04 +0000)]
Fix Coverity 180:  Don't overallocate.  We don't need structs, but pointers.
Also fix a memory leak.

17 years agoFix Coverity 168: Close the file before returning (exiting).
Neal Norwitz [Fri, 12 Oct 2007 03:03:23 +0000 (03:03 +0000)]
Fix Coverity 168:  Close the file before returning (exiting).

17 years agoGet rid of compiler warning about retval being used (returned) without
Neal Norwitz [Fri, 12 Oct 2007 03:01:54 +0000 (03:01 +0000)]
Get rid of compiler warning about retval being used (returned) without
being initialized.  (gcc warning and Coverity 202)

17 years agoGet rid of warnings on a bunch of platforms by using a proper prototype.
Neal Norwitz [Fri, 12 Oct 2007 03:01:30 +0000 (03:01 +0000)]
Get rid of warnings on a bunch of platforms by using a proper prototype.

17 years agoGet rid of warning about not being able to create an existing directory.
Neal Norwitz [Fri, 12 Oct 2007 03:01:01 +0000 (03:01 +0000)]
Get rid of warning about not being able to create an existing directory.

17 years agoOn OS X, use os.uname() instead of gestalt.sysv(...) to get the
Thomas Heller [Thu, 11 Oct 2007 19:51:32 +0000 (19:51 +0000)]
On OS X, use os.uname() instead of gestalt.sysv(...) to get the
operating system version.  This allows to use ctypes when Python
was configured with --disable-toolbox-glue.

17 years agoshow paste if > 80 columns. Patch 1659326 Tal Einat.
Kurt B. Kaiser [Wed, 10 Oct 2007 01:06:47 +0000 (01:06 +0000)]
show paste if > 80 columns.  Patch 1659326 Tal Einat.

17 years agoAllow cursor color change w/o restart. Patch 1725576 Tal Einat.
Kurt B. Kaiser [Wed, 10 Oct 2007 00:55:40 +0000 (00:55 +0000)]
Allow cursor color change w/o restart. Patch 1725576 Tal Einat.

17 years agoAccept Jim Jewett's api suggestion to use None instead of -1 to indicate unbounded...
Raymond Hettinger [Wed, 10 Oct 2007 00:26:46 +0000 (00:26 +0000)]
Accept Jim Jewett's api suggestion to use None instead of -1 to indicate unbounded deques.

17 years agoRemove file-level typedefs that were inconsistently used throughout the file.
Brett Cannon [Wed, 10 Oct 2007 00:07:50 +0000 (00:07 +0000)]
Remove file-level typedefs that were inconsistently used throughout the file.
Just move over to the public API names.

Closes issue1238.

17 years agoAllow interrupt only when executing user code in subprocess
Kurt B. Kaiser [Tue, 9 Oct 2007 19:31:30 +0000 (19:31 +0000)]
Allow interrupt only when executing user code in subprocess
Patch 1225 Tal Einat modified from IDLE-Spoon.

17 years agoremove another sleepycat reference
Gregory P. Smith [Tue, 9 Oct 2007 18:26:02 +0000 (18:26 +0000)]
remove another sleepycat reference

17 years agoUse the highest cPickle protocol in bsddb.dbshelve. This comes from
Gregory P. Smith [Tue, 9 Oct 2007 07:19:11 +0000 (07:19 +0000)]
Use the highest cPickle protocol in bsddb.dbshelve.  This comes from
sourceforge pybsddb patch 1551443 by w_barnes.

17 years agoFix a double free when positioning a database cursor to a non-existant
Gregory P. Smith [Tue, 9 Oct 2007 06:50:43 +0000 (06:50 +0000)]
Fix a double free when positioning a database cursor to a non-existant
string key (and probably a few other situations with string keys).
This was reported with a patch as pybsddb sourceforge bug 1708868 by
jjjhhhlll at gmail.

17 years agoSplits Modules/_bsddb.c up into bsddb.h and _bsddb.c and adds a C API
Gregory P. Smith [Tue, 9 Oct 2007 06:02:21 +0000 (06:02 +0000)]
Splits Modules/_bsddb.c up into bsddb.h and _bsddb.c and adds a C API
object available as bsddb.db.api.  This is based on the patch submitted
by Duncan Grisby here:
  http://sourceforge.net/tracker/index.php?func=detail&aid=1551895&group_id=13900&atid=313900
See this thread for additional info:
  http://sourceforge.net/mailarchive/forum.php?thread_name=E1GAVDK-0002rk-Iw%40apasphere.com&forum_name=pybsddb-users

It also cleans up the code a little by removing some ifdef/endifs for
python prior to 2.1 and for unsupported Berkeley DB <= 3.2.

17 years agoMake the error messages more specific
Raymond Hettinger [Tue, 9 Oct 2007 01:36:23 +0000 (01:36 +0000)]
Make the error messages more specific

17 years agoEliminate camelcase function name
Andrew M. Kuchling [Mon, 8 Oct 2007 23:23:03 +0000 (23:23 +0000)]
Eliminate camelcase function name

17 years agoEliminate camelcase function name
Raymond Hettinger [Mon, 8 Oct 2007 21:26:58 +0000 (21:26 +0000)]
Eliminate camelcase function name

17 years ago#1199: docs for tp_as_{number,sequence,mapping}, by Amaury Forgeot d'Arc.
Georg Brandl [Mon, 8 Oct 2007 14:12:47 +0000 (14:12 +0000)]
#1199: docs for tp_as_{number,sequence,mapping}, by Amaury Forgeot d'Arc.
No need to merge this to py3k!

17 years agoBetter variable names
Raymond Hettinger [Mon, 8 Oct 2007 10:11:51 +0000 (10:11 +0000)]
Better variable names

17 years agoMissed a line in the docs
Raymond Hettinger [Mon, 8 Oct 2007 09:56:29 +0000 (09:56 +0000)]
Missed a line in the docs

17 years agoAdd comments to NamedTuple code.
Raymond Hettinger [Mon, 8 Oct 2007 09:14:28 +0000 (09:14 +0000)]
Add comments to NamedTuple code.
Let the field spec be either a string or a non-string sequence (suggested by Martin Blais with use cases).
Improve the error message in the case of a SyntaxError (caused by a duplicate field name).

17 years agoUpdate docstring of sched, also remove an unused assignment.
Georg Brandl [Mon, 8 Oct 2007 08:06:05 +0000 (08:06 +0000)]
Update docstring of sched, also remove an unused assignment.

17 years ago#1123: fix the docs for the str.split(None, sep) case.
Georg Brandl [Mon, 8 Oct 2007 07:50:24 +0000 (07:50 +0000)]
#1123: fix the docs for the str.split(None, sep) case.
Also expand a few other methods' docs, which had more info in the deprecated string module docs.

17 years agoEnsure that this test will pass even if another test left an unwritable TESTFN.
Neal Norwitz [Sat, 6 Oct 2007 19:16:28 +0000 (19:16 +0000)]
Ensure that this test will pass even if another test left an unwritable TESTFN.
Also use the safe unlink in test_support instead of rolling our own here.

17 years agoUse the host the author likely meant in the first place. pop.gmail.com is
Gregory P. Smith [Sat, 6 Oct 2007 15:47:37 +0000 (15:47 +0000)]
Use the host the author likely meant in the first place.  pop.gmail.com is
reliable.  gmail.org is someones personal domain.

17 years agoAllows BerkeleyDB 4.6.x >= 4.6.21 for the bsddb module.
Gregory P. Smith [Sat, 6 Oct 2007 07:51:59 +0000 (07:51 +0000)]
Allows BerkeleyDB 4.6.x >= 4.6.21 for the bsddb module.

17 years agoStab in the dark attempt to fix the test_bsddb3 failure on sparc and S-390
Gregory P. Smith [Sat, 6 Oct 2007 07:48:10 +0000 (07:48 +0000)]
Stab in the dark attempt to fix the test_bsddb3 failure on sparc and S-390
ubuntu buildbots.

17 years agoRestore BEGIN/END THREADS macros which were squashed in the previous checkin
Raymond Hettinger [Fri, 5 Oct 2007 19:07:31 +0000 (19:07 +0000)]
Restore BEGIN/END THREADS macros which were squashed in the previous checkin

17 years agoAdd a note about fixing some more warnings found by Coverity.
Neal Norwitz [Fri, 5 Oct 2007 05:29:17 +0000 (05:29 +0000)]
Add a note about fixing some more warnings found by Coverity.

17 years agoFix Coverity #159.
Neal Norwitz [Fri, 5 Oct 2007 05:01:38 +0000 (05:01 +0000)]
Fix Coverity #159.

This code was broken if save() returned a negative number since i contained
a boolean value and then we compared i < 0 which should never be true.

Will backport (assuming it's necessary)

17 years agoFix Coverity #158: Check the correct variable.
Neal Norwitz [Fri, 5 Oct 2007 03:41:19 +0000 (03:41 +0000)]
Fix Coverity #158: Check the correct variable.

17 years agodict could be NULL, so we need to XDECREF.
Neal Norwitz [Fri, 5 Oct 2007 03:39:17 +0000 (03:39 +0000)]
dict could be NULL, so we need to XDECREF.
Fix a compiler warning about passing a PyTypeObject* instead of PyObject*.

17 years agomove descriptions of ac_(in|out)_buffer_size to the right place
Fred Drake [Fri, 5 Oct 2007 02:48:32 +0000 (02:48 +0000)]
move descriptions of ac_(in|out)_buffer_size to the right place
http://bugs.python.org/issue1053

17 years agoAdd __asdict__() to NamedTuple and refine the docs.
Raymond Hettinger [Fri, 5 Oct 2007 02:47:07 +0000 (02:47 +0000)]
Add __asdict__() to NamedTuple and refine the docs.
Add maxlen support to deque() and fixup docs.
Partially fix __reduce__().  The None as a third arg was no longer supported.
Still needs work on __reduce__() to handle recursive inputs.

17 years agowrap lines to <80 characters before fixing errors
Fred Drake [Fri, 5 Oct 2007 02:46:12 +0000 (02:46 +0000)]
wrap lines to <80 characters before fixing errors

17 years agoCoverity #151: Remove deadcode.
Neal Norwitz [Thu, 4 Oct 2007 06:00:48 +0000 (06:00 +0000)]
Coverity #151: Remove deadcode.

All this code already exists above starting at line 653.

17 years agoconfigDialog cleanup. Patch 1730217 Tal Einat.
Kurt B. Kaiser [Thu, 4 Oct 2007 03:11:12 +0000 (03:11 +0000)]
configDialog cleanup. Patch 1730217 Tal Einat.

17 years agotextView cleanup. Patch 1718043 Tal Einat.
Kurt B. Kaiser [Thu, 4 Oct 2007 02:53:07 +0000 (02:53 +0000)]
textView cleanup. Patch 1718043 Tal Einat.

M    idlelib/EditorWindow.py
M    idlelib/aboutDialog.py
M    idlelib/textView.py
M    idlelib/NEWS.txt

17 years agoClean up EditorWindow close.
Kurt B. Kaiser [Thu, 4 Oct 2007 02:09:17 +0000 (02:09 +0000)]
Clean up EditorWindow close.

17 years agoRemove unused theme that was causing a fault in p3k.
Kurt B. Kaiser [Thu, 4 Oct 2007 02:07:50 +0000 (02:07 +0000)]
Remove unused theme that was causing a fault in p3k.

17 years agoAssume that the user knows when he wants to end the line; don't insert
Kurt B. Kaiser [Thu, 4 Oct 2007 01:49:54 +0000 (01:49 +0000)]
Assume that the user knows when he wants to end the line; don't insert
something he didn't select or complete.

17 years agoitertools.count() no longer limited to sys.maxint.
Raymond Hettinger [Thu, 4 Oct 2007 00:20:27 +0000 (00:20 +0000)]
itertools.count() no longer limited to sys.maxint.

17 years agoenumerate() is no longer bounded to using sequences shorter than LONG_MAX. The possi...
Raymond Hettinger [Wed, 3 Oct 2007 21:18:11 +0000 (21:18 +0000)]
enumerate() is no longer bounded to using sequences shorter than LONG_MAX.  The possibility of overflow was sending some newsgroup posters into a tizzy.

17 years agoAdded note in footnote about string comparisons about
Mark Summerfield [Wed, 3 Oct 2007 08:53:21 +0000 (08:53 +0000)]
Added note in footnote about string comparisons about
unicodedata.normalize().

17 years agoAdded a class to store the digits of log(10), so that they can be made
Facundo Batista [Tue, 2 Oct 2007 18:21:18 +0000 (18:21 +0000)]
Added a class to store the digits of log(10), so that they can be made
available when necessary without recomputing.  Thanks Mark Dickinson

17 years agoMade the various is_* operations return booleans. This was discussed
Facundo Batista [Tue, 2 Oct 2007 17:01:24 +0000 (17:01 +0000)]
Made the various is_* operations return booleans.  This was discussed
with Cawlishaw by mail, and he basically confirmed that to these is_*
operations, there's no need to return Decimal(0) and Decimal(1) if
the language supports the False and True booleans.

Also added a few tests for the these functions in extra.decTest, since
they are mostly untested (apart from the doctests).

Thanks Mark Dickinson

17 years agoFix error introduced by r58288; if a tuple is length 0 return its repr and
Brett Cannon [Sun, 30 Sep 2007 20:37:19 +0000 (20:37 +0000)]
Fix error introduced by r58288; if a tuple is length 0 return its repr and
don't worry about any self-referring tuples.

17 years agotuple.__repr__ did not consider a reference loop as it is not possible from
Brett Cannon [Sun, 30 Sep 2007 19:45:10 +0000 (19:45 +0000)]
tuple.__repr__ did not consider a reference loop as it is not possible from
Python code; but it is possible from C.  object.__str__ had the issue of not
expecting a type to doing something within it's tp_str implementation that
could trigger an infinite recursion, but it could in C code..  Both found
thanks to BaseException and how it handles its repr.

Closes issue #1686386.  Thanks to Thomas Herve for taking an initial stab at
coming up with a solution.

17 years agoChange to LogRecord.__init__() to fix #1206. Note that archaic use of type(x) ==...
Vinay Sajip [Thu, 27 Sep 2007 07:35:10 +0000 (07:35 +0000)]
Change to LogRecord.__init__() to fix #1206. Note that archaic use of type(x) == types.DictType is because of keeping 1.5.2 compatibility. While this is much less relevant these days, there probably needs to be a separate commit for removing all archaic constructs at the same time.

17 years agoMinor date change.
Vinay Sajip [Thu, 27 Sep 2007 06:56:13 +0000 (06:56 +0000)]
Minor date change.

17 years ago#1208: document match object's boolean value.
Georg Brandl [Thu, 27 Sep 2007 06:26:58 +0000 (06:26 +0000)]
#1208: document match object's boolean value.

17 years agoChange to basicConfig() to fix #1021.
Vinay Sajip [Thu, 27 Sep 2007 05:38:51 +0000 (05:38 +0000)]
Change to basicConfig() to fix #1021.

17 years agoChange to flush and close logic to fix #1760556.
Vinay Sajip [Thu, 27 Sep 2007 05:34:45 +0000 (05:34 +0000)]
Change to flush and close logic to fix #1760556.

17 years agoAdd various items
Andrew M. Kuchling [Tue, 25 Sep 2007 00:09:42 +0000 (00:09 +0000)]
Add various items