]> granicus.if.org Git - python/log
python
19 years agoFix test_bisect in the same way as test_itertools: iter() blows up a lot
Thomas Wouters [Sat, 15 Apr 2006 09:12:14 +0000 (09:12 +0000)]
Fix test_bisect in the same way as test_itertools: iter() blows up a lot
sooner for new-style broken-iterators, expect it to.

19 years agoFix the superficial augmented-assignment tests to deal with true division.
Thomas Wouters [Sat, 15 Apr 2006 09:10:43 +0000 (09:10 +0000)]
Fix the superficial augmented-assignment tests to deal with true division.
Add (equally superficial) >>=/<<= test in the process. Relies on floats that
should be extremely close to the int '6' printing as '6.0', but I believe
that's a valid assumption ;P

19 years agoFix tests that were trying to make iteration blow up, on broken iterators.
Thomas Wouters [Sat, 15 Apr 2006 09:07:20 +0000 (09:07 +0000)]
Fix tests that were trying to make iteration blow up, on broken iterators.
Since the broken iterators are now new-style classes, iter() was able to do
the valid-iterator check sooner (on instantiation instead of on first call),
making the tests blow up sooner than expected.

19 years agoRemove tests for classic-class and mixed-classic-class/new-style behaviour.
Thomas Wouters [Sat, 15 Apr 2006 09:04:57 +0000 (09:04 +0000)]
Remove tests for classic-class and mixed-classic-class/new-style behaviour.
(New-style class behaviour was already thoroughly tested)

19 years ago - Fix doctest results to account for classes being new-style, and thus
Thomas Wouters [Sat, 15 Apr 2006 09:03:16 +0000 (09:03 +0000)]
 - Fix doctest results to account for classes being new-style, and thus
   printing differently.
 - Fix doctest for classic-class behaviour, make it test new-style behaviour
   on an implicitly-new-style class instead.

19 years agoMake 'python -tt' the default, meaning Python won't allow mixing tabs and
Thomas Wouters [Fri, 14 Apr 2006 11:33:28 +0000 (11:33 +0000)]
Make 'python -tt' the default, meaning Python won't allow mixing tabs and
spaces for indentation. Adds a '-ttt' option to turn the errors back into
warnings; I'm not yet sure whether that's desireable for Py3K.

Also remove the magic for setting the size of tabs based on emacs/vim-style
comments. Python now always considers tabstops to be every-8-spaces.

19 years agoFix the version number to be 3.0.
Guido van Rossum [Thu, 30 Mar 2006 16:19:24 +0000 (16:19 +0000)]
Fix the version number to be 3.0.

19 years agoUse absolute import. (Should this go into 2.5?)
Neal Norwitz [Fri, 24 Mar 2006 08:57:54 +0000 (08:57 +0000)]
Use absolute import.  (Should this go into 2.5?)

19 years agoGet rid of remnants of integer division
Neal Norwitz [Fri, 24 Mar 2006 08:14:36 +0000 (08:14 +0000)]
Get rid of remnants of integer division

19 years agoString exceptions are gone and so are classic classes.
Neal Norwitz [Fri, 24 Mar 2006 08:08:49 +0000 (08:08 +0000)]
String exceptions are gone and so are classic classes.

19 years agoUse *absolute* imports now that they are required. (Should this go into 2.5?)
Neal Norwitz [Fri, 24 Mar 2006 08:04:47 +0000 (08:04 +0000)]
Use *absolute* imports now that they are required.  (Should this go into 2.5?)

19 years agoMust inherit from Exception now.
Neal Norwitz [Fri, 24 Mar 2006 08:02:35 +0000 (08:02 +0000)]
Must inherit from Exception now.

19 years agoUse *absolute* imports now that they are required. (Should this go into 2.5?)
Neal Norwitz [Fri, 24 Mar 2006 07:47:46 +0000 (07:47 +0000)]
Use *absolute* imports now that they are required.  (Should this go into 2.5?)

19 years agoUse *absolute* import now that it is required. (Should this go into 2.5? Hopefully...
Neal Norwitz [Fri, 24 Mar 2006 07:38:37 +0000 (07:38 +0000)]
Use *absolute* import now that it is required.  (Should this go into 2.5?  Hopefully not the bogus comment about using relative imports.  That was just to see if anyone was paying attention.)

19 years agoUse relative import now that it is required. (Should this go into 2.5?)
Neal Norwitz [Fri, 24 Mar 2006 07:35:29 +0000 (07:35 +0000)]
Use relative import now that it is required.  (Should this go into 2.5?)

19 years agoUse relative import now that it is required. (Should this go into 2.5?)
Neal Norwitz [Fri, 24 Mar 2006 07:10:31 +0000 (07:10 +0000)]
Use relative import now that it is required.  (Should this go into 2.5?)

19 years agoOk, compiler.transformer can really be imported now
Neal Norwitz [Fri, 24 Mar 2006 07:07:34 +0000 (07:07 +0000)]
Ok, compiler.transformer can really be imported now

19 years agoMust inherit from Exception now.
Neal Norwitz [Fri, 24 Mar 2006 07:02:16 +0000 (07:02 +0000)]
Must inherit from Exception now.

19 years agoUse relative import now that it is required. (Should this go into 2.5?)
Neal Norwitz [Fri, 24 Mar 2006 06:59:24 +0000 (06:59 +0000)]
Use relative import now that it is required.  (Should this go into 2.5?)

19 years agoUse relative imports in compiler package now that it is required. (Should this go...
Neal Norwitz [Fri, 24 Mar 2006 06:57:41 +0000 (06:57 +0000)]
Use relative imports in compiler package now that it is required.  (Should this go into 2.5 or should we do compiler.XXX?)

19 years agoRemove another use of as as a keyword
Neal Norwitz [Wed, 22 Mar 2006 09:34:44 +0000 (09:34 +0000)]
Remove another use of as as a keyword

19 years agoFinish getting rid of statichere/staticforward
Neal Norwitz [Wed, 22 Mar 2006 09:28:35 +0000 (09:28 +0000)]
Finish getting rid of statichere/staticforward

19 years agoGet doctest to pass. The problem was int/int -> float now. There
Neal Norwitz [Wed, 22 Mar 2006 09:20:30 +0000 (09:20 +0000)]
Get doctest to pass.  The problem was int/int -> float now.  There
were some cases where an int was assumed.

Also had to change the string of the exception when dividing and int by zero.
Not sure what the best error message should be.  Currently
  5 / 0 yields the message: ZeroDivisionError: float division

That isn't entirely correct.  But I'm not sure what else to do.

19 years agoRemove staticforward and statichere
Neal Norwitz [Wed, 22 Mar 2006 07:18:02 +0000 (07:18 +0000)]
Remove staticforward and statichere

19 years agoDamn another occurrence of using as as a keywordf
Neal Norwitz [Wed, 22 Mar 2006 07:12:41 +0000 (07:12 +0000)]
Damn another occurrence of using as as a keywordf

19 years agoremove test file
Barry Warsaw [Tue, 21 Mar 2006 19:47:07 +0000 (19:47 +0000)]
remove test file

19 years agotesting svn emails
Barry Warsaw [Tue, 21 Mar 2006 19:35:05 +0000 (19:35 +0000)]
testing svn emails

19 years agotesting svn emails
Barry Warsaw [Tue, 21 Mar 2006 19:21:14 +0000 (19:21 +0000)]
testing svn emails

19 years agotesting svn emails
Barry Warsaw [Tue, 21 Mar 2006 18:29:19 +0000 (18:29 +0000)]
testing svn emails

19 years agotesting svn emails
Barry Warsaw [Tue, 21 Mar 2006 18:21:43 +0000 (18:21 +0000)]
testing svn emails

19 years agotesting svn emails
Barry Warsaw [Tue, 21 Mar 2006 18:18:20 +0000 (18:18 +0000)]
testing svn emails

19 years agotesting svn emails
Barry Warsaw [Tue, 21 Mar 2006 18:13:08 +0000 (18:13 +0000)]
testing svn emails

19 years agotesting svn emails
Barry Warsaw [Tue, 21 Mar 2006 18:05:50 +0000 (18:05 +0000)]
testing svn emails

19 years agoSome more TODO items of things I'd like to start with.
Guido van Rossum [Mon, 20 Mar 2006 04:35:06 +0000 (04:35 +0000)]
Some more TODO items of things I'd like to start with.
Mention the builtins that Neal killed.

19 years agoRemove PyArg_NoArgs() and PyArg_GetInt()
Neal Norwitz [Fri, 17 Mar 2006 09:00:00 +0000 (09:00 +0000)]
Remove PyArg_NoArgs() and PyArg_GetInt()

19 years agoINPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).
Neal Norwitz [Fri, 17 Mar 2006 08:59:09 +0000 (08:59 +0000)]
INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).

19 years ago_Py_QnewFlag and INPLACE_DIVIDE are not necessary any longer
Neal Norwitz [Fri, 17 Mar 2006 08:57:43 +0000 (08:57 +0000)]
_Py_QnewFlag and INPLACE_DIVIDE are not necessary any longer

19 years agoas is a keyword now :-)
Neal Norwitz [Fri, 17 Mar 2006 08:54:15 +0000 (08:54 +0000)]
as is a keyword now :-)

19 years agoGet rid of xreadlines() (methods).
Neal Norwitz [Fri, 17 Mar 2006 08:29:44 +0000 (08:29 +0000)]
Get rid of xreadlines() (methods).

19 years agoMore apply() cleanup
Neal Norwitz [Fri, 17 Mar 2006 08:28:24 +0000 (08:28 +0000)]
More apply() cleanup

19 years agoThis gets at least test_cmd_line working again and a few more modules built.
Neal Norwitz [Fri, 17 Mar 2006 08:27:50 +0000 (08:27 +0000)]
This gets at least test_cmd_line working again and a few more modules built.

19 years agoRemove some old types for int based functions (Py_ssize_t is da thing now.)
Neal Norwitz [Fri, 17 Mar 2006 08:09:39 +0000 (08:09 +0000)]
Remove some old types for int based functions (Py_ssize_t is da thing now.)

19 years agoRemove apply()
Neal Norwitz [Fri, 17 Mar 2006 08:04:59 +0000 (08:04 +0000)]
Remove apply()

19 years agoRemove apply()
Neal Norwitz [Fri, 17 Mar 2006 08:00:19 +0000 (08:00 +0000)]
Remove apply()

19 years agoWhitespace changes. Also remove apply from a few comments
Neal Norwitz [Fri, 17 Mar 2006 06:58:45 +0000 (06:58 +0000)]
Whitespace changes.  Also remove apply from a few comments

19 years agoGet rid of a bunch more raw_input references
Neal Norwitz [Fri, 17 Mar 2006 06:49:51 +0000 (06:49 +0000)]
Get rid of a bunch more raw_input references

19 years agoWhoops, input *and* raw_input are slated for removal, and now both are gone.
Neal Norwitz [Fri, 17 Mar 2006 06:04:34 +0000 (06:04 +0000)]
Whoops, input *and* raw_input are slated for removal, and now both are gone.

19 years agoraw_input() -> input(). old input behavior is history (and test_builtin passes again...
Neal Norwitz [Fri, 17 Mar 2006 05:59:16 +0000 (05:59 +0000)]
raw_input() -> input().  old input behavior is history (and test_builtin passes again).  It was failing due to future division.

19 years agoRemove sys.exc_type, sys.exc_value, sys.exc_traceback
Neal Norwitz [Fri, 17 Mar 2006 05:49:33 +0000 (05:49 +0000)]
Remove sys.exc_type, sys.exc_value, sys.exc_traceback

19 years agoGet rid of compiler warning
Neal Norwitz [Fri, 17 Mar 2006 05:44:46 +0000 (05:44 +0000)]
Get rid of compiler warning

19 years agoGet rid of last vestiges of BINARY_DIVIDE.
Neal Norwitz [Thu, 16 Mar 2006 06:02:10 +0000 (06:02 +0000)]
Get rid of last vestiges of BINARY_DIVIDE.

19 years agoGet rid of compiler warning about with_msg and as_msg being unused
Neal Norwitz [Thu, 16 Mar 2006 06:01:25 +0000 (06:01 +0000)]
Get rid of compiler warning about with_msg and as_msg being unused

19 years agoCheckpoint. 218 tests are okay; 53 are failing. Done so far:
Guido van Rossum [Wed, 15 Mar 2006 04:58:47 +0000 (04:58 +0000)]
Checkpoint.  218 tests are okay; 53 are failing.  Done so far:
- all classes are new-style (but ripping out classobject.[ch] isn't done)
- int/int -> float
- all exceptions must derive from BaseException
- absolute import
- 'as' and 'with' are keywords

19 years agoCreate a Python 3000 branch.
Guido van Rossum [Tue, 14 Mar 2006 22:22:15 +0000 (22:22 +0000)]
Create a Python 3000 branch.

19 years agoTry to avoid many of the compiler warnings when compiling libffi by
Thomas Heller [Tue, 14 Mar 2006 20:52:24 +0000 (20:52 +0000)]
Try to avoid many of the compiler warnings when compiling libffi by
using a proper function prototype.

19 years agoCast an Py_ssize_t to int, to avoid a compiler warning.
Thomas Heller [Tue, 14 Mar 2006 20:39:27 +0000 (20:39 +0000)]
Cast an Py_ssize_t to int, to avoid a compiler warning.

19 years agoFor x86 Release and Debug builds, remove the /Wp64 compiler flag, it
Thomas Heller [Tue, 14 Mar 2006 20:22:47 +0000 (20:22 +0000)]
For x86 Release and Debug builds, remove the /Wp64 compiler flag, it
is responsible for most (all?)  of the warnings we get.

19 years agoIntegrate patch from Neal Norwitz. He writes:
Thomas Heller [Tue, 14 Mar 2006 19:53:09 +0000 (19:53 +0000)]
Integrate patch from Neal Norwitz.  He writes:

"""
The attached patch fixes all the ctypes tests so they pass on amd64.
It also fixes several warnings.  I'm not sure what else to do with the
patch.  Let me know how you want to handle these in the future.

I'm not sure the patch is 100% correct.  You will need to decide what
can be 64 bits and what can't.  I believe
sq_{item,slice,ass_item,ass_slice} all need to use Py_ssize_t.  The
types in ctypes.h may not require all the changes I made.  I don't
know how you want to support older version, so I unconditionally
changed the types to Py_ssize_t.
"""

The patch is also in the ctypes SVN repository now, after small
changes to add compatibility with older Python versions.

19 years agoTeach the compiler module about augmented assignment to tuple subscripts
Nick Coghlan [Tue, 14 Mar 2006 13:21:14 +0000 (13:21 +0000)]
Teach the compiler module about augmented assignment to tuple subscripts

19 years agoFix and test (manually w/xx module) passing NULLs to PyObject_Str() and
Neal Norwitz [Tue, 14 Mar 2006 06:02:16 +0000 (06:02 +0000)]
Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and
PyObject_Unicode().  This problem was originally reported from Coverity
and addresses mail on python-dev "checkin r43015".

This inlines the conversion of the string to unicode and cleans
up/simplifies some code at the end of the PyObject_Unicode().

We really need a complete C API test module for all public APIs
and passing good and bad parameter values.

Will backport.

19 years agoFix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact
Georg Brandl [Mon, 13 Mar 2006 22:22:11 +0000 (22:22 +0000)]
Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact

19 years agoAdded logThreads and logProcesses to allow conditional omission of logging this infor...
Vinay Sajip [Mon, 13 Mar 2006 22:05:28 +0000 (22:05 +0000)]
Added logThreads and logProcesses to allow conditional omission of logging this information

19 years agoIt's necessary to do a Debug build of the bsddb project too.
Tim Peters [Mon, 13 Mar 2006 20:09:32 +0000 (20:09 +0000)]
It's necessary to do a Debug build of the bsddb project too.

19 years agoMinor changes.
Tim Peters [Mon, 13 Mar 2006 19:43:34 +0000 (19:43 +0000)]
Minor changes.

19 years agoTrimmed trailing whitespace.
Tim Peters [Mon, 13 Mar 2006 19:35:53 +0000 (19:35 +0000)]
Trimmed trailing whitespace.

19 years agoFix build process of bsddb for IA64 and AMD64.
Martin v. Löwis [Mon, 13 Mar 2006 15:37:40 +0000 (15:37 +0000)]
Fix build process of bsddb for IA64 and AMD64.
Remove remarks on size_t problems.

19 years agoInitialize VS environment in external.bat as well.
Martin v. Löwis [Mon, 13 Mar 2006 14:12:47 +0000 (14:12 +0000)]
Initialize VS environment in external.bat as well.

19 years agoUpdate to bsddb 4.4.20.
Martin v. Löwis [Mon, 13 Mar 2006 13:48:05 +0000 (13:48 +0000)]
Update to bsddb 4.4.20.

19 years agoFix SF bug #1448804 and ad a test to ensure that all subscript operations continue...
Nick Coghlan [Mon, 13 Mar 2006 12:31:58 +0000 (12:31 +0000)]
Fix SF bug #1448804 and ad a test to ensure that all subscript operations continue to be handled correctly

19 years agoLet the buildbot make a single pass in the test suite only.
Martin v. Löwis [Mon, 13 Mar 2006 10:59:32 +0000 (10:59 +0000)]
Let the buildbot make a single pass in the test suite only.

19 years agoUpdate to bzip2 1.0.3
Martin v. Löwis [Mon, 13 Mar 2006 10:52:04 +0000 (10:52 +0000)]
Update to bzip2 1.0.3
Make buildbot slaves automatically fetch bzip2 1.0.3.

19 years agoPlug some refcount leaks when tests are run repeatedly.
Thomas Heller [Mon, 13 Mar 2006 10:47:02 +0000 (10:47 +0000)]
Plug some refcount leaks when tests are run repeatedly.

19 years agoBug #1448490: Fix a bug that ISO-2022 codecs could not handle
Hye-Shik Chang [Mon, 13 Mar 2006 10:20:08 +0000 (10:20 +0000)]
Bug #1448490: Fix a bug that ISO-2022 codecs could not handle
SS2 (single-shift 2) escape sequences correctly.

19 years agoRemove the slightly broken test_leaks.py.
Thomas Heller [Mon, 13 Mar 2006 07:33:38 +0000 (07:33 +0000)]
Remove the slightly broken test_leaks.py.

Change test_functions.py so that it can be run multiple time without
failing: Assign a restype to the function in test_intresult, and move
the definition of class POINT to module level so that no new class is
created each time the test is run.

19 years agoAdding the /useenv means that one's PATH actually gets through. This is
Trent Mick [Sun, 12 Mar 2006 23:40:58 +0000 (23:40 +0000)]
Adding the /useenv means that one's PATH actually gets through. This is
important for the _ssl.vproj build. It calls build_ssl.py which tries to
find a Perl to use. Without "/useenv" Visual Studio is getting a PATH
from somewhere else (presumably from its internal environment
configuration). The result is that build_ssl.py fallsback to its
"well-known" locations for a Perl install.

19 years agomerged with cElementTree development trunk (1.0.6 snapshot):
Fredrik Lundh [Sun, 12 Mar 2006 21:06:35 +0000 (21:06 +0000)]
merged with cElementTree development trunk (1.0.6 snapshot):

Fixed a number of potential null-pointer-reference-under-pressure
glitches, based on input from the Coverity analysis tool and Simo
Salminen.

19 years agoMove buildbot scripts to Tools/buildbot.
Martin v. Löwis [Sun, 12 Mar 2006 09:50:39 +0000 (09:50 +0000)]
Move buildbot scripts to Tools/buildbot.

19 years agoAdded brief comment.
Tim Peters [Sun, 12 Mar 2006 07:00:54 +0000 (07:00 +0000)]
Added brief comment.

19 years agoAdded brief comments.
Tim Peters [Sun, 12 Mar 2006 06:47:36 +0000 (06:47 +0000)]
Added brief comments.

19 years ago - Reindent a confusingly indented piece of code (no intended code changes
Thomas Wouters [Sun, 12 Mar 2006 00:29:36 +0000 (00:29 +0000)]
 - Reindent a confusingly indented piece of code (no intended code changes
   there)
 - Add missing DECREFs of inner-scope 'temp' variable
 - Add various missing DECREFs by changing 'return NULL' into 'goto onError'
 - Avoid double DECREF when last _PyUnicode_Resize() fails

Coverity found one of the missing DECREFs, but oddly enough not the others.

19 years agoPlug the last 657 referenceleaks in test_bsddb3: a circular reference
Thomas Wouters [Sun, 12 Mar 2006 00:13:09 +0000 (00:13 +0000)]
Plug the last 657 referenceleaks in test_bsddb3: a circular reference
between a TestCase instance, the database it opened (or a cursor to a
database) and a bound method as a registered database callback, and a lack
of GC-handling in bsddb caused the TestCases to linger. Fix the test, for
now, as backward compatibility makes adding GC to bsddb annoying.

19 years agoFix another leak in bsddb, and avoid use of uninitialized value -- funny how
Thomas Wouters [Sun, 12 Mar 2006 00:01:38 +0000 (00:01 +0000)]
Fix another leak in bsddb, and avoid use of uninitialized value -- funny how
gcc 4.0.x wasn't complaining about *that* one ;)

19 years agoAdd buildbot test script.
Martin v. Löwis [Sat, 11 Mar 2006 23:56:39 +0000 (23:56 +0000)]
Add buildbot test script.

19 years agoGive the _ssl project a harmless command to perform
Tim Peters [Sat, 11 Mar 2006 23:05:39 +0000 (23:05 +0000)]
Give the _ssl project a harmless command to perform
for its "clean" action.  Else the clean step run by
the buildbot reports failure, due to the _ssl project
whining about not being able to spawn an empty string.

19 years agoAdd changelog entry.
Martin v. Löwis [Sat, 11 Mar 2006 12:43:44 +0000 (12:43 +0000)]
Add changelog entry.

19 years agoAdjust CJK Ideograph range to Unicode 4.1.
Martin v. Löwis [Sat, 11 Mar 2006 12:16:23 +0000 (12:16 +0000)]
Adjust CJK Ideograph range to Unicode 4.1.

19 years agoWhitespace normalization.
Tim Peters [Fri, 10 Mar 2006 23:39:56 +0000 (23:39 +0000)]
Whitespace normalization.

19 years agoWhen the new -w option (yay! great idea) reruns a
Tim Peters [Fri, 10 Mar 2006 23:37:10 +0000 (23:37 +0000)]
When the new -w option (yay! great idea) reruns a
failed test, first display the name of the test (else
it's not always clear from the output which test is
getting run).

19 years agoAdd regrtest -w option.
Martin v. Löwis [Fri, 10 Mar 2006 21:26:16 +0000 (21:26 +0000)]
Add regrtest -w option.

19 years agoUnicode database updated; use SVN instead of CVS
Andrew M. Kuchling [Fri, 10 Mar 2006 18:50:08 +0000 (18:50 +0000)]
Unicode database updated; use SVN instead of CVS

19 years agoAdd AMD64 and Itanium configurationgs to ctypes;
Martin v. Löwis [Fri, 10 Mar 2006 16:02:59 +0000 (16:02 +0000)]
Add AMD64 and Itanium configurationgs to ctypes;
disable them in the solution since ctypes doesn't
support these processors on Windows.

19 years agoAdd ctypes.
Martin v. Löwis [Fri, 10 Mar 2006 15:36:28 +0000 (15:36 +0000)]
Add ctypes.

19 years agoUpdate test data to 4.1; disable PRI #29 for now.
Martin v. Löwis [Fri, 10 Mar 2006 11:59:47 +0000 (11:59 +0000)]
Update test data to 4.1; disable PRI #29 for now.

19 years agoFix refcounting bug.
Martin v. Löwis [Fri, 10 Mar 2006 11:29:32 +0000 (11:29 +0000)]
Fix refcounting bug.

19 years agoAvoid forward-declaring the methods array.
Martin v. Löwis [Fri, 10 Mar 2006 11:20:04 +0000 (11:20 +0000)]
Avoid forward-declaring the methods array.
Rename unicodedata.db* to unicodedata.ucd*

19 years agoUm, I thought I'd already checked this in.
Guido van Rossum [Fri, 10 Mar 2006 02:28:35 +0000 (02:28 +0000)]
Um, I thought I'd already checked this in.
Anyway, this is the changes to the with-statement
so that __exit__ must return a true value in order
for a pending exception to be ignored.
The PEP (343) is already updated.

19 years agoFix three nits found by Coverity, adding null checks and comments.
Guido van Rossum [Fri, 10 Mar 2006 02:04:28 +0000 (02:04 +0000)]
Fix three nits found by Coverity, adding null checks and comments.

19 years agoUpdate Unicode database to Unicode 4.1.
Martin v. Löwis [Thu, 9 Mar 2006 23:38:20 +0000 (23:38 +0000)]
Update Unicode database to Unicode 4.1.

19 years agoMove entry to correct section.
Georg Brandl [Thu, 9 Mar 2006 23:22:43 +0000 (23:22 +0000)]
Move entry to correct section.

19 years agoPatch #1446372: quit and exit can now be called from the interactive
Georg Brandl [Thu, 9 Mar 2006 23:22:06 +0000 (23:22 +0000)]
Patch #1446372: quit and exit can now be called from the interactive
interpreter to exit.