]> granicus.if.org Git - python/log
python
22 years agoOnly encode Unicode objects when printing them raw.
Martin v. Löwis [Sun, 18 May 2003 12:56:25 +0000 (12:56 +0000)]
Only encode Unicode objects when printing them raw.

22 years agoConsider \U-escapes in raw-unicode-escape. Fixes #444514.
Martin v. Löwis [Sun, 18 May 2003 12:31:09 +0000 (12:31 +0000)]
Consider \U-escapes in raw-unicode-escape. Fixes #444514.

22 years agoFix array.array.insert(), so that it treats negative indices as
Walter Dörwald [Sun, 18 May 2003 03:15:10 +0000 (03:15 +0000)]
Fix array.array.insert(), so that it treats negative indices as
being relative to the end of the array, just like list.insert() does.
This closes SF bug #739313.

22 years agoTo be on the safe side, backed out any questionable iteritem changes and set back...
Brett Cannon [Sun, 18 May 2003 02:25:07 +0000 (02:25 +0000)]
To be on the safe side, backed out any questionable iteritem changes and set back to item calls.

22 years agoAdded more words about the abuse of the tp_alloc nitems argument
Tim Peters [Sun, 18 May 2003 02:24:46 +0000 (02:24 +0000)]
Added more words about the abuse of the tp_alloc nitems argument
perpetrated by the time and datetime classes.

22 years agoWhitespace Normalization
Kurt B. Kaiser [Sun, 18 May 2003 02:24:32 +0000 (02:24 +0000)]
Whitespace Normalization

22 years agoWhitespace Normalization
Kurt B. Kaiser [Sun, 18 May 2003 02:21:55 +0000 (02:21 +0000)]
Whitespace Normalization

 Modified Files:
  config-extensions.def config-highlight.def config-keys.def
  config-main.def

22 years agoAdd another error case to the insert test.
Walter Dörwald [Sun, 18 May 2003 01:56:25 +0000 (01:56 +0000)]
Add another error case to the insert test.

22 years agoPort test_array and test_winsound to PyUnit. Enhance tests for array
Walter Dörwald [Sun, 18 May 2003 00:47:47 +0000 (00:47 +0000)]
Port test_array and test_winsound to PyUnit. Enhance tests for array
(code coverage for Modules/arraymodule.c is at 91%)

From SF patch #736962.

22 years agoShow Freddy the mirror
Kurt B. Kaiser [Sat, 17 May 2003 21:04:10 +0000 (21:04 +0000)]
Show Freddy the mirror
i.e. improve subprocess exit paths and exeception reporting

22 years agoUser cStringIO instead of StringIO.
Raymond Hettinger [Sat, 17 May 2003 20:44:12 +0000 (20:44 +0000)]
User cStringIO instead of StringIO.

22 years agoRevert some changes back to dict.items made in a previous patch.
Brett Cannon [Sat, 17 May 2003 19:51:26 +0000 (19:51 +0000)]
Revert some changes back to dict.items made in a previous patch.

22 years agodatetime.timedelta is now subclassable in Python. The new test shows
Tim Peters [Sat, 17 May 2003 15:57:00 +0000 (15:57 +0000)]
datetime.timedelta is now subclassable in Python.  The new test shows
one good use:  a subclass adding a method to express the duration as
a number of hours (or minutes, or whatever else you want to add).  The
native breakdown into days+seconds+us is often clumsy.  Incidentally
moved a large chunk of object-initialization code closer to the top of
the file, to avoid worse forward-reference trickery.

22 years agoAdded icon for IDLE on OS X
Tony Lownds [Sat, 17 May 2003 15:14:10 +0000 (15:14 +0000)]
Added icon for IDLE on OS X

22 years agominor fix, jython-only. Don't asssume stdout to save is the ur-stdout.
Samuele Pedroni [Sat, 17 May 2003 12:51:10 +0000 (12:51 +0000)]
minor fix, jython-only. Don't asssume stdout to save is the ur-stdout.

22 years agodatetime.datetime and datetime.time can now be subclassed in Python. Brr.
Tim Peters [Sat, 17 May 2003 05:55:19 +0000 (05:55 +0000)]
datetime.datetime and datetime.time can now be subclassed in Python.  Brr.

22 years agoNigel Rowe's Patch
Kurt B. Kaiser [Sat, 17 May 2003 03:51:57 +0000 (03:51 +0000)]
Nigel Rowe's Patch
[ 735527 ] Re Bug [ 678325 ] ParenMatching Missing AutoIndent

AutoIndent was merged with EditorWindow, this patch corrects
the references in ParenMatch.

22 years agoNoam Raphael's patch.
Kurt B. Kaiser [Sat, 17 May 2003 03:15:48 +0000 (03:15 +0000)]
Noam Raphael's patch.
SF Patch 686254 "Run IDLEfork from any directory without set-up"

Allows IDLE to run when not installed and cwd is not the IDLE directory.

I took the liberty of moving it to the startup scripts since once IDLEfork
is again a part of Python it will be superfluous and I don't want it to
be forgotten.  But it is very useful for those using IDLEfork standalone!

M CREDITS.txt
M NEWS.txt
M idle
M idle.py
M idle.pyw

22 years agosimpler temp dir cleanup
Skip Montanaro [Sat, 17 May 2003 02:54:11 +0000 (02:54 +0000)]
simpler temp dir cleanup

22 years agobeefed up version: jython support, covers now fixed differences between CPython/Jython.
Samuele Pedroni [Sat, 17 May 2003 02:39:52 +0000 (02:39 +0000)]
beefed up version: jython support, covers now fixed differences between CPython/Jython.

22 years agotest_subclass_date(): Beefed this up, to check that new instance
Tim Peters [Sat, 17 May 2003 02:25:20 +0000 (02:25 +0000)]
test_subclass_date():  Beefed this up, to check that new instance
attributes and methods work, that new arguments can be passed to the
constructor, and that inherited methods and attrs still work.  Added
XXX comments about what to do when datetime becomes usably subclassable
too (it's not yet).

22 years agoInclude module name in doctest summary.
Raymond Hettinger [Sat, 17 May 2003 01:59:57 +0000 (01:59 +0000)]
Include module name in doctest summary.

22 years agoUse test_support.run_doctest()
Raymond Hettinger [Sat, 17 May 2003 01:08:35 +0000 (01:08 +0000)]
Use test_support.run_doctest()

22 years agoProvide a clue that the doctests have run.
Raymond Hettinger [Sat, 17 May 2003 00:58:33 +0000 (00:58 +0000)]
Provide a clue that the doctests have run.

22 years agoMinor cleanups.
Raymond Hettinger [Fri, 16 May 2003 23:16:36 +0000 (23:16 +0000)]
Minor cleanups.

22 years agoTurns out there wasn't a need to define tp_free for any of the types here.
Tim Peters [Fri, 16 May 2003 22:44:06 +0000 (22:44 +0000)]
Turns out there wasn't a need to define tp_free for any of the types here.

22 years agoStopped using the old macro form of _PyObject_Del.
Tim Peters [Fri, 16 May 2003 20:02:26 +0000 (20:02 +0000)]
Stopped using the old macro form of _PyObject_Del.

22 years agoRemove usage of re module from encodings package search function.
Marc-André Lemburg [Fri, 16 May 2003 17:07:51 +0000 (17:07 +0000)]
Remove usage of re module from encodings package search function.

22 years agotest_fileno(): Skip this test on Windows.
Tim Peters [Fri, 16 May 2003 15:35:10 +0000 (15:35 +0000)]
test_fileno():  Skip this test on Windows.

22 years agoMissing parenthesis.
Raymond Hettinger [Fri, 16 May 2003 14:36:26 +0000 (14:36 +0000)]
Missing parenthesis.

22 years agoAdded some missing PyObject* casts in the deallocators.
Jim Fulton [Fri, 16 May 2003 13:53:43 +0000 (13:53 +0000)]
Added some missing PyObject* casts in the deallocators.

Added some defines for PyMODINIT_FUNC so that the examples work
with Python 2.2.

I think I'm done hacking this documentation. Yippie! :)

22 years agoAdded a missing PyObject* cast to the dealloc examples.
Jim Fulton [Fri, 16 May 2003 13:51:58 +0000 (13:51 +0000)]
Added a missing PyObject* cast to the dealloc examples.

Added a note that the mechanism for defining new tyoes documented here
only works for Python 2.2 and higher.

22 years agoRemoved the out of date and no-longer-referenced xxobject.c example
Jim Fulton [Fri, 16 May 2003 13:34:33 +0000 (13:34 +0000)]
Removed the out of date and no-longer-referenced xxobject.c example
type implementation.  Note that this same example lives in
Modules/xxmodule.c. (It is just as out of date there.)

22 years agoRemoved reference to the out-of-date (and not very useful)
Jim Fulton [Fri, 16 May 2003 13:32:59 +0000 (13:32 +0000)]
Removed reference to the out-of-date (and not very useful)
Objects/xxobject.c example.

Updated the discussion of type checking to refer to
PyObject_TypeCheck.

22 years agoPatch #738325: Install optimized idlelib files.
Martin v. Löwis [Fri, 16 May 2003 05:40:31 +0000 (05:40 +0000)]
Patch #738325: Install optimized idlelib files.

22 years ago* Added file globbing to make it easier to check many LaTeX files.
Raymond Hettinger [Fri, 16 May 2003 03:06:39 +0000 (03:06 +0000)]
* Added file globbing to make it easier to check many LaTeX files.
* Delimiter mismatch now prints a warning instead of raising an exception.
* Offer style warnings for use of e.g. and i.e.
* Bypass false positive warnings for forward slashes in urls and in /rfc822.
* Put non-LaTex delimiter matching first to make -d option more reliable.

22 years agoMore fixes according to SF 549151:
Guido van Rossum [Fri, 16 May 2003 01:46:51 +0000 (01:46 +0000)]
More fixes according to SF 549151:

- When redirecting, always use GET.  This is common practice and
  more-or-less sanctioned by the HTTP standard.

- Add a handler for 307 redirection, which becomes an error for POST,
  but a regular redirect for GET and HEAD.

22 years agoAdd docs for MessageBeep.
Guido van Rossum [Fri, 16 May 2003 01:42:22 +0000 (01:42 +0000)]
Add docs for MessageBeep.

22 years agoDon't replace an empty line with "pass" when symbol == "eval", where
Guido van Rossum [Fri, 16 May 2003 01:24:30 +0000 (01:24 +0000)]
Don't replace an empty line with "pass" when symbol == "eval", where
"pass" isn't valid syntax.  Reported by Samuele Pedroni on python-dev
(May 12, 2003).

22 years ago1. When a module is run from an EditorWindow, if its directory is not in
Kurt B. Kaiser [Thu, 15 May 2003 23:23:21 +0000 (23:23 +0000)]
1. When a module is run from an EditorWindow, if its directory is not in
   sys.path, prepend it.  This allows the module to import other modules
   in the same directory.  Do the same for a script run from the command
   line.
2. Tweak the IDLE usage message a bit more.

SF Bug 706860 (closed)
SF Patch 686254 (reject specific solution)
SF Patch 507327 (similar)

M PyShell.py
M ScriptBinding.py

22 years ago1. Add a command line switch to run without the subprocess
Kurt B. Kaiser [Thu, 15 May 2003 18:52:51 +0000 (18:52 +0000)]
1. Add a command line switch to run without the subprocess
2. Remove the shell menu and associated bindings when running
   without the subprocess.
3. Update the IDLE Help and usage text.
4. Update display_port_binding_error to suggest using -n

M PyShell.py
M help.txt

22 years ago1. Make the startup more robust by not spawning the subprocess if IDLE
Kurt B. Kaiser [Thu, 15 May 2003 03:40:51 +0000 (03:40 +0000)]
1. Make the startup more robust by not spawning the subprocess if IDLE
   can't acquire the port to listen on.
2. Shorten the retry and simplify the messages.

22 years ago1. Restore the capability to run and debug without a subprocess.
Kurt B. Kaiser [Thu, 15 May 2003 03:19:42 +0000 (03:19 +0000)]
1. Restore the capability to run and debug without a subprocess.
2. Add an indicator to the shell startup notice when running w/o
   subprocess.
3. Improve exception reporting when running a command or script from the
   command line.
4. Clarify the fact that breakpoints set or cleared after a file is
   saved will revert to the saved state if the file is closed without
   re-saving.
5. If user tries to exit or restart when user code is running, interrupt
   the user code.  This helps to eliminate occasional hanging
   subprocesses on Windows (except for Freddy :).

M NEWS.txt
M PyShell.py
M ScriptBinding.py

22 years agoDB.remove() needs to set the internal DB handle to NULL after being called.
Gregory P. Smith [Thu, 15 May 2003 00:13:18 +0000 (00:13 +0000)]
DB.remove() needs to set the internal DB handle to NULL after being called.
(sourceforge pybsddb bug #737970).

Also: don't allow other threads to run during calls that invalidate the
DB handle.

22 years agoRestore Python 1.5.2 compatibility.
Marc-André Lemburg [Wed, 14 May 2003 19:48:57 +0000 (19:48 +0000)]
Restore Python 1.5.2 compatibility.

22 years agoForward slash warnings now only occur for potentially valid LaTeX commands.
Raymond Hettinger [Wed, 14 May 2003 18:15:55 +0000 (18:15 +0000)]
Forward slash warnings now only occur for potentially valid LaTeX commands.
(Idea contributed by Anthony Baxter.)

22 years agoOn Windows the subprocess was not exiting during a restart.
Kurt B. Kaiser [Wed, 14 May 2003 18:15:40 +0000 (18:15 +0000)]
On Windows the subprocess was not exiting during a restart.

This bug, henceforth designated Freddy, was due to the mistaken
elimination of the KeyboardInterrupt exception at the previous revision.
PyShell's unix_terminate hammer was masking the problem on Linux.  On W2K
the subprocess MainThread was trying to print the exception after the
SockThread had ceased to service the socket.  The subprocess would then
detach and spin when the GUI created the new subprocess.

Modified Files: run.py

22 years agodefer re module imports to help improve interpreter startup
Skip Montanaro [Wed, 14 May 2003 17:33:53 +0000 (17:33 +0000)]
defer re module imports to help improve interpreter startup

22 years ago[Bug #471893] Replace security material with a warning against unpickling
Andrew M. Kuchling [Wed, 14 May 2003 16:51:46 +0000 (16:51 +0000)]
[Bug #471893] Replace security material with a warning against unpickling
untrusted data.

22 years agodocument Stats.dump_stats(), new for Python 2.3
Fred Drake [Wed, 14 May 2003 14:29:27 +0000 (14:29 +0000)]
document Stats.dump_stats(), new for Python 2.3

22 years ago- add a dump_stats() method similar to that of the profile.Profile class
Fred Drake [Wed, 14 May 2003 14:28:09 +0000 (14:28 +0000)]
- add a dump_stats() method similar to that of the profile.Profile class
- don't use "file" as the name of local variables

22 years agoWhen an external application we use exits normally, exit with the same
Fred Drake [Wed, 14 May 2003 04:16:14 +0000 (04:16 +0000)]
When an external application we use exits normally, exit with the same
exit code they returned.  All other types of exit from child processes
are normalized to a return code of 1.
Closes SF bug #732143.

22 years agoFleshed out tests for urllib requiring a network connection.
Brett Cannon [Wed, 14 May 2003 02:18:31 +0000 (02:18 +0000)]
Fleshed out tests for urllib requiring a network connection.

22 years agoCall time.tzset (if available) just before calculating possible timezones from time...
Brett Cannon [Tue, 13 May 2003 20:28:15 +0000 (20:28 +0000)]
Call time.tzset (if available) just before calculating possible timezones from time.tzname.

22 years agoFix use of 'file' as a variable name.
Andrew M. Kuchling [Tue, 13 May 2003 18:14:25 +0000 (18:14 +0000)]
Fix use of 'file' as a variable name.
    (I've tested the fixes, but please proofread anyway.)

22 years agoAdd optional 'onerror' argument to os.walk(), to control error
Guido van Rossum [Tue, 13 May 2003 18:01:19 +0000 (18:01 +0000)]
Add optional 'onerror' argument to os.walk(), to control error
handling.

22 years agoPrevent script from allowing '-r12'
Andrew M. Kuchling [Tue, 13 May 2003 17:56:07 +0000 (17:56 +0000)]
Prevent script from allowing '-r12'

22 years agoRename sum5.py to md5sum.py, because sum5.py is more interesting
Andrew M. Kuchling [Tue, 13 May 2003 17:39:26 +0000 (17:39 +0000)]
Rename sum5.py to md5sum.py, because sum5.py is more interesting
    as an example program

22 years agoDon't use 'file' as a variable name
Andrew M. Kuchling [Tue, 13 May 2003 17:38:05 +0000 (17:38 +0000)]
Don't use 'file' as a variable name
Modernize the code a bit
Add docstring

22 years ago[Bug #724767] Avoid use of 'file' as a variable name
Andrew M. Kuchling [Tue, 13 May 2003 17:09:01 +0000 (17:09 +0000)]
[Bug #724767] Avoid use of 'file' as a variable name

22 years ago1. The command-line arguments for subprocesses no longer need to be
Tony Lownds [Tue, 13 May 2003 15:28:21 +0000 (15:28 +0000)]
1. The command-line arguments for subprocesses no longer need to be
specialized for Mac OS X.

2. buildapp.py - a new file for building an application icon for IDLE on Mac
OS X. See INSTALL.txt

22 years ago[Bug #713722] Delete dangling references to unwritten sections
Andrew M. Kuchling [Tue, 13 May 2003 15:02:06 +0000 (15:02 +0000)]
[Bug #713722] Delete dangling references to unwritten sections

22 years ago[Bug #724767] crlf.py uses the variable name file, which it shouldn't anymore.
Andrew M. Kuchling [Tue, 13 May 2003 14:51:39 +0000 (14:51 +0000)]
[Bug #724767] crlf.py uses the variable name file, which it shouldn't anymore.

22 years ago[Bug #732124] Clarify .pos, .endpos by saying 'method' instead of 'function'
Andrew M. Kuchling [Tue, 13 May 2003 14:40:24 +0000 (14:40 +0000)]
[Bug #732124] Clarify .pos, .endpos by saying 'method' instead of 'function'
Also, put match() description before search(); search() refers to match()

22 years agoRemove more markup from headers
Andrew M. Kuchling [Tue, 13 May 2003 14:26:54 +0000 (14:26 +0000)]
Remove more markup from headers

22 years ago[Bug #729297] Remove markup in section headers
Andrew M. Kuchling [Tue, 13 May 2003 14:23:54 +0000 (14:23 +0000)]
[Bug #729297] Remove markup in section headers

22 years ago[Bug #729817] Document the rexec and Bastion modules as dead
Andrew M. Kuchling [Tue, 13 May 2003 14:16:18 +0000 (14:16 +0000)]
[Bug #729817] Document the rexec and Bastion modules as dead

22 years agoFix typo
Andrew M. Kuchling [Tue, 13 May 2003 14:13:58 +0000 (14:13 +0000)]
Fix typo

22 years agoFixed test_anydbm_creates to use proper paths for the created db.
Brett Cannon [Tue, 13 May 2003 06:42:59 +0000 (06:42 +0000)]
Fixed test_anydbm_creates to use proper paths for the created db.

Made some stylistic fixes.

22 years agoFix and add reference to urllib.urlencode for parse_qsl? functions.
Brett Cannon [Tue, 13 May 2003 02:50:36 +0000 (02:50 +0000)]
Fix and add reference to urllib.urlencode for parse_qsl? functions.

22 years ago* Added separate checks for matching braces.
Raymond Hettinger [Mon, 12 May 2003 23:33:28 +0000 (23:33 +0000)]
* Added separate checks for matching braces.
* Added more LaTex cmds from the docs.
* Blocked forward-slash warnings with delimiters-only option.
* Put help message on shorter line to fit an 80 char screen.

22 years agoJohn J. Lee contributed two urllib2 patches.
Brett Cannon [Mon, 12 May 2003 22:39:57 +0000 (22:39 +0000)]
John J. Lee contributed two urllib2 patches.

22 years agoFix broken API descriptions in comments.
Fred Drake [Mon, 12 May 2003 21:41:39 +0000 (21:41 +0000)]
Fix broken API descriptions in comments.

22 years agoWhitespace normalization.
Tim Peters [Mon, 12 May 2003 20:19:37 +0000 (20:19 +0000)]
Whitespace normalization.

22 years agoEffectively renamed tokenize_tests.py to have a txt extension instead.
Tim Peters [Mon, 12 May 2003 19:42:04 +0000 (19:42 +0000)]
Effectively renamed tokenize_tests.py to have a txt extension instead.
This file isn't meant to be executed, it's data input for test_tokenize.py.
The problem with the .py extension is that it uses "non-standard"
indentation, and it's good to test that, but reindent.py keeps wanting
to fix it.  But fixing the indentation causes the expected-output file to
change, since exact line and column numbers are part of the
tokenize.tokenize() output getting tested.

22 years agoClose the file after tokenizing it. Because the open file object was
Tim Peters [Mon, 12 May 2003 19:29:36 +0000 (19:29 +0000)]
Close the file after tokenizing it.  Because the open file object was
bound to a module global, the file object remained opened throughout
the test suite run.

22 years agocmp_type(): The grammar stopped allowing '=' as a comparison operator
Tim Peters [Mon, 12 May 2003 19:16:52 +0000 (19:16 +0000)]
cmp_type():  The grammar stopped allowing '=' as a comparison operator
about a decade ago.  Put the code still allowing for it in cmp_type()
out of its lonely misery.

22 years agoUpdated simple example. This should have been checked in the other
Jim Fulton [Mon, 12 May 2003 17:42:56 +0000 (17:42 +0000)]
Updated simple example. This should have been checked in the other
day, but I missfired in CVS.

22 years agoAdd a specific mention of the term "operator overloading" and add an
Fred Drake [Mon, 12 May 2003 13:50:11 +0000 (13:50 +0000)]
Add a specific mention of the term "operator overloading" and add an
index entry.  Suggested to python-docs.

22 years agoRemove assert that checked if a parameter was an instance of Request. Closes patch...
Brett Cannon [Mon, 12 May 2003 07:31:53 +0000 (07:31 +0000)]
Remove assert that checked if a parameter was an instance of Request.  Closes patch #639139.

22 years agoChange Request.add_header to call string.capitalize in order to normalize
Brett Cannon [Mon, 12 May 2003 07:29:42 +0000 (07:29 +0000)]
Change Request.add_header to call string.capitalize in order to normalize
headers and not have any dependency on case.  Closes patch #649742.

Also changed all instances of dict.items to dict.iteritems where appropriate.

22 years agoFix minor typos.
Raymond Hettinger [Mon, 12 May 2003 03:23:51 +0000 (03:23 +0000)]
Fix minor typos.

22 years agoUpdate for SF 71033 and changes to subprocess threading
Kurt B. Kaiser [Mon, 12 May 2003 03:04:59 +0000 (03:04 +0000)]
Update for SF 71033 and changes to subprocess threading

22 years ago1. RemoteDebugger now runs user code in subprocess MainThread
Kurt B. Kaiser [Mon, 12 May 2003 02:33:47 +0000 (02:33 +0000)]
1. RemoteDebugger now runs user code in subprocess MainThread
2. run.py: move exception printing to toplevel to allow access from main()
3. Clarification in PyShell.py: when the subprocess is restarted, the
   debugger GUI is reused with a fresh instance of the subprocess
   debugger.

M PyShell.py
M RemoteDebugger.py
M run.py

22 years agoPatch #735613: Pass install-purelib to idleinstall.
Martin v. Löwis [Sun, 11 May 2003 20:28:02 +0000 (20:28 +0000)]
Patch #735613: Pass install-purelib to idleinstall.

22 years agoPatch #718286: Support DESTDIR.
Martin v. Löwis [Sun, 11 May 2003 20:25:35 +0000 (20:25 +0000)]
Patch #718286: Support DESTDIR.

22 years agoBeefed up timezone support. UTC and GMT are now always recognized timezones
Brett Cannon [Sun, 11 May 2003 06:23:36 +0000 (06:23 +0000)]
Beefed up timezone support.  UTC and GMT are now always recognized timezones
with values of 0.  Also now check time.daylight to see if time.tzname[1]
should be used in timezone checking.

22 years agoUpdate patch #732284: Correct versions of OpenUNIX, UnixWare, add OpenServer.
Martin v. Löwis [Sun, 11 May 2003 05:53:41 +0000 (05:53 +0000)]
Update patch #732284: Correct versions of OpenUNIX, UnixWare, add OpenServer.

22 years ago- object is a class type, not a function
Fred Drake [Sat, 10 May 2003 19:46:39 +0000 (19:46 +0000)]
- object is a class type, not a function
- when marking a function, the trailing () should be included
  consistently

22 years agoMinor fixups.
Raymond Hettinger [Sat, 10 May 2003 09:04:37 +0000 (09:04 +0000)]
Minor fixups.

22 years agoFix unbalanced parethesis.
Raymond Hettinger [Sat, 10 May 2003 08:51:28 +0000 (08:51 +0000)]
Fix unbalanced parethesis.

22 years agoAdd table level validation and made minor fix-ups.
Raymond Hettinger [Sat, 10 May 2003 07:41:55 +0000 (07:41 +0000)]
Add table level validation and made minor fix-ups.

22 years agoMissing parenthesis found by texcheck.py
Raymond Hettinger [Sat, 10 May 2003 07:40:56 +0000 (07:40 +0000)]
Missing parenthesis found by texcheck.py

22 years agoPatch #734231: Update RiscOS support. In particular, correct
Martin v. Löwis [Sat, 10 May 2003 07:36:56 +0000 (07:36 +0000)]
Patch #734231: Update RiscOS support. In particular, correct
riscospath.extsep, and use os.extsep throughout.

22 years agoPatch #612627: Add encoding attribute to file objects, and determine
Martin v. Löwis [Sat, 10 May 2003 07:10:12 +0000 (07:10 +0000)]
Patch #612627: Add encoding attribute to file objects, and determine
the terminal encoding on Windows and Unix.

22 years agoAll two more modules with __all__.
Raymond Hettinger [Sat, 10 May 2003 05:37:13 +0000 (05:37 +0000)]
All two more modules with __all__.

22 years agoFix missing parenthesis.
Raymond Hettinger [Sat, 10 May 2003 04:21:08 +0000 (04:21 +0000)]
Fix missing parenthesis.

22 years agoFixed spacing and unbalanced brackets or parenthesis.
Raymond Hettinger [Sat, 10 May 2003 03:35:37 +0000 (03:35 +0000)]
Fixed spacing and unbalanced brackets or parenthesis.

22 years agoAdded a tool for making a rough check of LaTeX documents.
Raymond Hettinger [Sat, 10 May 2003 03:30:13 +0000 (03:30 +0000)]
Added a tool for making a rough check of LaTeX documents.
It checks for known commands, forward slashes, unbalanced or
mismatched delimters, and unbalanced or mismatched begin/end blocks.

22 years ago[ SF 710733 - Martin v. Loewis] Improving source encoding dialog
Kurt B. Kaiser [Sat, 10 May 2003 00:49:56 +0000 (00:49 +0000)]
[ SF 710733 - Martin v. Loewis] Improving source encoding dialog

M IOBinding.py
M config-main.def
M configDialog.py