]> granicus.if.org Git - python/log
python
22 years agoadd missing '
Neal Norwitz [Tue, 8 Jul 2003 16:26:34 +0000 (16:26 +0000)]
add missing '

22 years agoImprove compatibility with more versions of LaTeX2HTML and more LaTeX
Fred Drake [Tue, 8 Jul 2003 15:57:52 +0000 (15:57 +0000)]
Improve compatibility with more versions of LaTeX2HTML and more LaTeX
markup.  Not currently needed, but easier to save this now than to
have to figure it out when we do.

22 years ago- clean up table markup for readability
Fred Drake [Tue, 8 Jul 2003 15:38:40 +0000 (15:38 +0000)]
- clean up table markup for readability
- don't use \constant for literals; it's for "defined" constants
- fix various consistency issues

22 years agoUpdate Tkinter3000 notes based on text from Fredrik Lundh.
Fred Drake [Tue, 8 Jul 2003 13:44:27 +0000 (13:44 +0000)]
Update Tkinter3000 notes based on text from Fredrik Lundh.

22 years agoFix SF bug 764095: Don't use network in test_httplib.
Jeremy Hylton [Tue, 8 Jul 2003 12:36:58 +0000 (12:36 +0000)]
Fix SF bug 764095: Don't use network in test_httplib.

22 years agoFixed a table that wasn't in a tableii block, and added a very simple
Anthony Baxter [Tue, 8 Jul 2003 08:40:20 +0000 (08:40 +0000)]
Fixed a table that wasn't in a tableii block, and added a very simple
example to show how to log to a file.

22 years agoUse Boolean values for the capturestderr flag.
Fred Drake [Mon, 7 Jul 2003 21:36:19 +0000 (21:36 +0000)]
Use Boolean values for the capturestderr flag.

22 years agoUse -fno-strict-aliasing if available. Fixes #766696. Will backport to 2.2.
Martin v. Löwis [Mon, 7 Jul 2003 21:26:19 +0000 (21:26 +0000)]
Use -fno-strict-aliasing if available. Fixes #766696. Will backport to 2.2.

22 years ago- explain about making Python scripts executable on Unix in more
Fred Drake [Mon, 7 Jul 2003 21:00:29 +0000 (21:00 +0000)]
- explain about making Python scripts executable on Unix in more
  detail
- fix minor markup nit

22 years agoFix a typo/cut-n-paste error in DBCursor.join_item so that it doesn't
Gregory P. Smith [Mon, 7 Jul 2003 19:06:45 +0000 (19:06 +0000)]
Fix a typo/cut-n-paste error in DBCursor.join_item so that it doesn't
return a tuple.  (this also implies that nobody uses this method; the
bug has been here for a long time)

22 years agoremoved trailing tabs in several places, including after the final
Fred Drake [Mon, 7 Jul 2003 17:38:26 +0000 (17:38 +0000)]
removed trailing tabs in several places, including after the final
newline

22 years agoError noted in email to python-docs: PyObject corresponds to
Fred Drake [Mon, 7 Jul 2003 17:20:40 +0000 (17:20 +0000)]
Error noted in email to python-docs: PyObject corresponds to
PyObject_HEAD, not PyObject_VAR_HEAD.

22 years agoThis file was moved to Lib/.
Jeremy Hylton [Mon, 7 Jul 2003 16:09:24 +0000 (16:09 +0000)]
This file was moved to Lib/.

22 years agoPatch from Zooko to remove an experimental feature.
Jeremy Hylton [Mon, 7 Jul 2003 16:08:47 +0000 (16:08 +0000)]
Patch from Zooko to remove an experimental feature.

22 years agoadd versionadded for getcheckinterval
Neal Norwitz [Mon, 7 Jul 2003 14:11:53 +0000 (14:11 +0000)]
add versionadded for getcheckinterval

22 years agoNew function sys.getcheckinterval(), to complement setcheckinterval().
Tim Peters [Sun, 6 Jul 2003 18:36:54 +0000 (18:36 +0000)]
New function sys.getcheckinterval(), to complement setcheckinterval().

22 years agoInclude grp.h in setgroups test. Fixes #765822.
Martin v. Löwis [Sun, 6 Jul 2003 09:29:52 +0000 (09:29 +0000)]
Include grp.h in setgroups test. Fixes #765822.

22 years agoFix SF bug #766288, property() example gives syntax error
Neal Norwitz [Sat, 5 Jul 2003 17:37:58 +0000 (17:37 +0000)]
Fix SF bug #766288, property() example gives syntax error

22 years ago#765903:
Just van Rossum [Fri, 4 Jul 2003 14:20:03 +0000 (14:20 +0000)]
#765903:
- added bundle_id/--bundle-id option, to specify the CFBundleIndentifier
#765615:
- in the appropriate situation, prepend $PATH with our path instead of
  setting it.

22 years agoFixed lots of minor issues found by Edward Moy: incorrect version
Jack Jansen [Fri, 4 Jul 2003 13:06:14 +0000 (13:06 +0000)]
Fixed lots of minor issues found by Edward Moy: incorrect version
strings, non-standard naming of things in bundles, etc.

22 years agoFixed two bugs in MacOSX framework handling spotted by Edward Moy:
Jack Jansen [Fri, 4 Jul 2003 12:14:39 +0000 (12:14 +0000)]
Fixed two bugs in MacOSX framework handling spotted by Edward Moy:

- In the top level Makefile, the argument to -install_name should be
  prepended with /System/Library/Frameworks/, so it is an absolute path.
- In the top level Makefile, because of 2), RUNSHARED needs to be set to
  DYLD_FRAMEWORK_PATH=<path to local framework> and $(RUNSHARED) prepended
  to the $(MAKE) lines in the frameworkinstallmaclib and
  frameworkinstallapps targets.

22 years agoAdded missing newline at end of file.
Jack Jansen [Fri, 4 Jul 2003 12:05:25 +0000 (12:05 +0000)]
Added missing newline at end of file.

22 years agoFiles used for 2.3b2 macpython binary distribution.
Jack Jansen [Fri, 4 Jul 2003 11:06:36 +0000 (11:06 +0000)]
Files used for 2.3b2 macpython binary distribution.

22 years agoIf a --python option is used to specify the Python to use in the #!
Jack Jansen [Fri, 4 Jul 2003 11:05:35 +0000 (11:05 +0000)]
If a --python option is used to specify the Python to use in the #!
line also use this as the executable in the bundle.

22 years agoAn Anonymous Coward on c.l.py posted a little program with bizarre
Tim Peters [Fri, 4 Jul 2003 04:40:45 +0000 (04:40 +0000)]
An Anonymous Coward on c.l.py posted a little program with bizarre
behavior, creating many threads very quickly.  A long debugging session
revealed that the Windows implementation of PyThread_start_new_thread()
was choked with "laziness" errors:

1. It checked MS _beginthread() for a failure return, but when that
   happened it returned heap trash as the function result, instead of
   an id of -1 (the proper error-return value).

2. It didn't consider that the Win32 CreateSemaphore() can fail.

3. When creating a great many threads very quickly, it's quite possible
   that any particular bootstrap call can take virtually any amount of
   time to return.  But the code waited for a maximum of 5 seconds, and
   didn't check to see whether the semaphore it was waiting for got
   signaled.  If it in fact timed out, the function could again return
   heap trash as the function result.  This is actually what confused
   the test program, as the heap trash usually turned out to be 0, and
   then multiple threads all got id 0 simultaneously, confusing the
   hell out of threading.py's _active dict (mapping id to thread
   object).  A variety of baffling behaviors followed from that.

WRT #1 and #2, error returns are checked now, and "thread.error: can't
start new thread" gets raised now if a new thread (or new semaphore)
can't be created.  WRT #3, we now wait for the semaphore without a
timeout.

Also removed useless local vrbls, folded long lines, and changed callobj
to a stack auto (it was going thru malloc/free instead, for no discernible
reason).

Bugfix candidate.

22 years agoMoved two sentences around to make them clearer.
Jack Jansen [Thu, 3 Jul 2003 21:33:02 +0000 (21:33 +0000)]
Moved two sentences around to make them clearer.

22 years agoFixes bug of timezone value being left as -1 when ``time.tzname[0] ==
Brett Cannon [Thu, 3 Jul 2003 19:59:57 +0000 (19:59 +0000)]
Fixes bug of timezone value being left as -1 when ``time.tzname[0] ==
time.tzname[1] and not time.daylight`` is true when it should only when
time.daylight is true.  Tests are also fixed.

Closes bug #763047 and its cohort #763052.

22 years agoSkip noticed that the document talks about "setting PythonLauncher as the
Jack Jansen [Wed, 2 Jul 2003 22:09:30 +0000 (22:09 +0000)]
Skip noticed that the document talks about "setting PythonLauncher as the
default application" but doesn't give a clue on how to do this. Refer to
Apple Help.

22 years agoTooltip for tab/space consistency check was the wrong way around. Spotted
Jack Jansen [Wed, 2 Jul 2003 22:08:28 +0000 (22:08 +0000)]
Tooltip for tab/space consistency check was the wrong way around. Spotted
by Skip.

22 years agoCorrect documentation of check interval - it's 100 by default, not 10 any
Skip Montanaro [Wed, 2 Jul 2003 21:38:34 +0000 (21:38 +0000)]
Correct documentation of check interval - it's 100 by default, not 10 any
longer.  Pointed out by Alex Martelli.

22 years agoAddendum to #764548: restore 2.1 compatibility.
Just van Rossum [Wed, 2 Jul 2003 21:37:16 +0000 (21:37 +0000)]
Addendum to #764548: restore 2.1 compatibility.

22 years agoFix and test for bug #764548:
Just van Rossum [Wed, 2 Jul 2003 20:03:04 +0000 (20:03 +0000)]
Fix and test for bug #764548:
Use isinstance() instead of comparing types directly, to enable
subclasses of str and unicode to be used as patterns.
Blessed by /F.

22 years agoNote that csv files (when they are actual files) must be opened in 'b'inary
Skip Montanaro [Wed, 2 Jul 2003 15:32:48 +0000 (15:32 +0000)]
Note that csv files (when they are actual files) must be opened in 'b'inary
mode.  Note that the only restriction on the csvfile passed to writer
objects is that it have a write method.

22 years agoSF bug #764616: execfile(filename,...) not execfile(file,...)
Raymond Hettinger [Wed, 2 Jul 2003 15:31:54 +0000 (15:31 +0000)]
SF bug #764616:  execfile(filename,...) not execfile(file,...)

Clarify parameter name.

22 years agoGrammar nit. SF bug #757822
Raymond Hettinger [Wed, 2 Jul 2003 15:10:38 +0000 (15:10 +0000)]
Grammar nit.  SF bug #757822

22 years agoRevert the previous change; this is now dealt with in a better way.
Fred Drake [Wed, 2 Jul 2003 14:44:55 +0000 (14:44 +0000)]
Revert the previous change; this is now dealt with in a better way.

22 years agoThere's a better way to deal with the "comment" environment; I found
Fred Drake [Wed, 2 Jul 2003 14:44:08 +0000 (14:44 +0000)]
There's a better way to deal with the "comment" environment; I found
this in SF patch #732174.

22 years agofixed typo in comment
Just van Rossum [Wed, 2 Jul 2003 14:36:59 +0000 (14:36 +0000)]
fixed typo in comment

22 years agoMake the "install schema" tables follow the same table style we use
Fred Drake [Wed, 2 Jul 2003 14:33:11 +0000 (14:33 +0000)]
Make the "install schema" tables follow the same table style we use
elsewhere (lines between columns).

22 years agoThe Macintosh Modules Reference now formats to GNU info without errors
Fred Drake [Wed, 2 Jul 2003 14:25:04 +0000 (14:25 +0000)]
The Macintosh Modules Reference now formats to GNU info without errors
(which is not to say it's right), so re-enable it.

Documenting Python and Installing Python Modules still have problems
when converting to GNU info, so we'll continue to leave them out for
now.

22 years agoFill out the set of macros and environments supported somewhat.
Fred Drake [Wed, 2 Jul 2003 14:22:48 +0000 (14:22 +0000)]
Fill out the set of macros and environments supported somewhat.
Some of this is still pretty iffy.

22 years agoOn those systems lacking the AFMT_S16_NE symbol, the test was failing
Andrew MacIntyre [Wed, 2 Jul 2003 14:05:08 +0000 (14:05 +0000)]
On those systems lacking the AFMT_S16_NE symbol, the test was failing
because it was still looking in the ossaudiodev module namespace for
this symbol.

As the symbol has already been rebound as a global, use that instead.

22 years agoFreeBSD 5.x has moved some library routines and typedefs outside the
Andrew MacIntyre [Wed, 2 Jul 2003 13:53:25 +0000 (13:53 +0000)]
FreeBSD 5.x has moved some library routines and typedefs outside the
scope of the _XOPEN_SOURCE and _POSIX_C_SOURCE symbols, including:
- getloadavg()
- typedefs for u_int, u_long, u_char, u_short, ushort & uint

These are now all defined under the control of a __BSD_VISIBLE symbol.

The lack of the typedefs causes several extension modules to build
incorrectly or not at all, and is the cause of failures reported for
test_socket and test_tempfile on this platform
(see python-dev: 29/6/03, pieterb@gewis.nl, "Running tests on freebsd5")

This change does not appear to be needed in the 2.2 branch.

22 years agoThe datetime C API really isn't usable outside the datetime module
Fred Drake [Wed, 2 Jul 2003 13:42:51 +0000 (13:42 +0000)]
The datetime C API really isn't usable outside the datetime module
implementation, so remove this decoy (it break formatting of the GNU
info version of the docs).

22 years agoFix a variety of small markup nits.
Fred Drake [Wed, 2 Jul 2003 12:27:43 +0000 (12:27 +0000)]
Fix a variety of small markup nits.

22 years agoMoved the IDE tutorial to a directory with a shorter name. The long
Jack Jansen [Wed, 2 Jul 2003 09:20:09 +0000 (09:20 +0000)]
Moved the IDE tutorial to a directory with a shorter name. The long
name was giving problems with some tar implementations.

22 years agoSF #764121, docstring for spawnlp incorrect
Neal Norwitz [Wed, 2 Jul 2003 02:49:33 +0000 (02:49 +0000)]
SF #764121, docstring for spawnlp incorrect

22 years agoFix SF bug #763637, 2.3b2 unpack tuple of wrong size in after_cancel
Neal Norwitz [Tue, 1 Jul 2003 21:12:47 +0000 (21:12 +0000)]
Fix SF bug #763637, 2.3b2 unpack tuple of wrong size in after_cancel

Tk 8.4 may return different values than 8.3.  This fix should handle
either version.

22 years ago- added (c)StringIO tests; cStringIO usage failed in the previous
Just van Rossum [Tue, 1 Jul 2003 20:22:30 +0000 (20:22 +0000)]
- added (c)StringIO tests; cStringIO usage failed in the previous
  version of plistlib.py (r1.2)

22 years ago- replaced a couple of asserts with proper exceptions
Just van Rossum [Tue, 1 Jul 2003 20:15:38 +0000 (20:15 +0000)]
- replaced a couple of asserts with proper exceptions
- use isinstance instead of flaky file-detection code

22 years agoUse appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macros
Neal Norwitz [Tue, 1 Jul 2003 20:15:21 +0000 (20:15 +0000)]
Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macros

22 years agoMake the classes exposed by threading.py new-style classes. This is
Tim Peters [Tue, 1 Jul 2003 20:01:55 +0000 (20:01 +0000)]
Make the classes exposed by threading.py new-style classes.  This is
mostly for convenience and to aid debugging.

22 years agoResolved minor XXX question in the obvious way.
Tim Peters [Tue, 1 Jul 2003 19:28:44 +0000 (19:28 +0000)]
Resolved minor XXX question in the obvious way.

22 years ago- note that super() only applies to new-style classes;
Fred Drake [Tue, 1 Jul 2003 16:31:26 +0000 (16:31 +0000)]
- note that super() only applies to new-style classes;
  closes SF bug #764003
- fix markup for consistency

22 years agonormalize markup for consistency
Fred Drake [Tue, 1 Jul 2003 16:17:50 +0000 (16:17 +0000)]
normalize markup for consistency

22 years agoRemove carriage returns
Neal Norwitz [Tue, 1 Jul 2003 15:03:49 +0000 (15:03 +0000)]
Remove carriage returns

22 years agoFix SF bug #763023, difflib.py: ratio() zero division not caught
Neal Norwitz [Tue, 1 Jul 2003 14:59:46 +0000 (14:59 +0000)]
Fix SF bug #763023, difflib.py: ratio() zero division not caught

Backport candidate

22 years agoconnector(): You can't use an empty string as an argument to connect()
Tim Peters [Tue, 1 Jul 2003 14:49:32 +0000 (14:49 +0000)]
connector():  You can't use an empty string as an argument to connect()
on Windows.

22 years agoshowwarning() calls formatwarning(), not showwarning().
Tim Peters [Tue, 1 Jul 2003 14:37:59 +0000 (14:37 +0000)]
showwarning() calls formatwarning(), not showwarning().

Bugfix candidate.

22 years agoFix SF bug #763770, test_socket_ssl crash
Neal Norwitz [Tue, 1 Jul 2003 13:44:28 +0000 (13:44 +0000)]
Fix SF bug #763770, test_socket_ssl crash

Don't run any tests if there is no ssl support.

22 years agoImprove the wording a bit
Raymond Hettinger [Tue, 1 Jul 2003 07:19:17 +0000 (07:19 +0000)]
Improve the wording a bit

22 years agoFix spelling, grammar, usage, and markup.
Raymond Hettinger [Tue, 1 Jul 2003 06:29:18 +0000 (06:29 +0000)]
Fix spelling, grammar, usage, and markup.

22 years agoSF #751062: Tutorial: remove string exceptions, add parnassus, #posts
Raymond Hettinger [Tue, 1 Jul 2003 06:19:34 +0000 (06:19 +0000)]
SF #751062:  Tutorial: remove string exceptions, add parnassus, #posts
(Contributed by Gerritt Holl)

* Remove the last mentions of string exceptions
* Reference a third-party repository of programs
* Minor clarification of comp.lang.py posting volumes

22 years agoTest Brett's addition of __all__ to Queue.
Raymond Hettinger [Tue, 1 Jul 2003 05:49:02 +0000 (05:49 +0000)]
Test Brett's addition of __all__ to Queue.

22 years agoAdd __all__ .
Brett Cannon [Tue, 1 Jul 2003 05:34:27 +0000 (05:34 +0000)]
Add __all__ .

22 years agoMake temporary change of using _strptime for time.strptime permanent.
Brett Cannon [Tue, 1 Jul 2003 05:16:08 +0000 (05:16 +0000)]
Make temporary change of using _strptime for time.strptime permanent.

Flesh out docs to better explain time.strptime (closes bug #697990).

22 years agoSF bug 753592, websucker bug
Neal Norwitz [Tue, 1 Jul 2003 04:14:28 +0000 (04:14 +0000)]
SF bug 753592, websucker bug

Pass the proper variable when the user supplies a directory.
Will backport.

22 years agoFix SF #763362, test_posixpath failed
Neal Norwitz [Tue, 1 Jul 2003 03:33:31 +0000 (03:33 +0000)]
Fix SF #763362, test_posixpath failed
Don't check expanduser('~') if the home directory == the root directory
(ie, we are running as root).

22 years agoSupport 'mbcs' as a 'built-in' encoding, so the C API can use it without
Mark Hammond [Tue, 1 Jul 2003 00:13:27 +0000 (00:13 +0000)]
Support 'mbcs' as a 'built-in' encoding, so the C API can use it without
defering to the encodings package.
As described in [ 763111 ] mbcs encoding should skip encodings package

22 years agoAdd versionadded info for the 2 new threading module functions
Neal Norwitz [Mon, 30 Jun 2003 21:47:47 +0000 (21:47 +0000)]
Add versionadded info for the 2 new threading module functions

22 years agoDocument the DISTUTILS_DEBUG variable.
Thomas Heller [Mon, 30 Jun 2003 19:33:29 +0000 (19:33 +0000)]
Document the DISTUTILS_DEBUG variable.
Closes sf #761401.

Backport candidate.

22 years agoFix typo in error message
Neal Norwitz [Mon, 30 Jun 2003 19:22:12 +0000 (19:22 +0000)]
Fix typo in error message

22 years agoWe are now post-beta 2.
Fred Drake [Mon, 30 Jun 2003 13:38:38 +0000 (13:38 +0000)]
We are now post-beta 2.

22 years agoAdded missing name (textwrap.dedent() docs).
Fred Drake [Mon, 30 Jun 2003 12:18:52 +0000 (12:18 +0000)]
Added missing name (textwrap.dedent() docs).

22 years agoDon't require that a RuntimeError is raised when playing a second
Walter Dörwald [Mon, 30 Jun 2003 11:57:52 +0000 (11:57 +0000)]
Don't require that a RuntimeError is raised when playing a second
sound while the first one is still running, as the first one
one might already have finished.

Fixes part of SF bug #763052.

22 years agoSF bug #762990: Awful Grammar in Python Tutorial
Raymond Hettinger [Mon, 30 Jun 2003 04:27:31 +0000 (04:27 +0000)]
SF bug #762990: Awful Grammar in Python Tutorial

Fixed a nit.

22 years agoFix SF 762891: "del p[key]" on proxy object raises SystemError()
Raymond Hettinger [Mon, 30 Jun 2003 04:18:48 +0000 (04:18 +0000)]
Fix SF 762891:  "del p[key]" on proxy object raises SystemError()

22 years agoMerge branch updates back into the main trunk
Raymond Hettinger [Mon, 30 Jun 2003 03:35:06 +0000 (03:35 +0000)]
Merge branch updates back into the main trunk

22 years agoFix SF #754870, SSL crash interpreter when remote side closes during connect
Neal Norwitz [Mon, 30 Jun 2003 03:25:20 +0000 (03:25 +0000)]
Fix SF #754870, SSL crash interpreter when remote side closes during connect

Also fix a memory leak.

22 years agoBump version string to "2.3b2+".
Tim Peters [Mon, 30 Jun 2003 02:14:28 +0000 (02:14 +0000)]
Bump version string to "2.3b2+".

22 years agoFix typo, refer to proper argument name
Neal Norwitz [Mon, 30 Jun 2003 01:54:04 +0000 (01:54 +0000)]
Fix typo, refer to proper argument name

22 years agorestore 2.2 compatibility:
Just van Rossum [Sun, 29 Jun 2003 22:20:26 +0000 (22:20 +0000)]
restore 2.2 compatibility:
- don't use "abc" in aString
- don't reorganize extension modules when not using zipimport

22 years ago- added --semi-standalone option that builds apps that depend on an
Just van Rossum [Sun, 29 Jun 2003 21:54:12 +0000 (21:54 +0000)]
- added --semi-standalone option that builds apps that depend on an
  installed Python, yet include any modules not in the std lib
- reworked extension module inclusion code: put all .so files in
  a subdirectory of Contents/Resources/, but more importantly,
  correctly support extensions that are submodules.

22 years agoMore tests
Raymond Hettinger [Sun, 29 Jun 2003 20:36:23 +0000 (20:36 +0000)]
More tests

* Test with infinite inputs (using take() on the output)
* Test whether GC can find and eliminate cycles.

22 years agoFix broken markup, & tweak a couple of things for consistency.
Fred Drake [Sun, 29 Jun 2003 18:12:23 +0000 (18:12 +0000)]
Fix broken markup, & tweak a couple of things for consistency.

22 years agoFix sf bug 666219: assertion error in httplib.
Jeremy Hylton [Sun, 29 Jun 2003 17:55:05 +0000 (17:55 +0000)]
Fix sf bug 666219: assertion error in httplib.

The obvious way for this assertion to fail is if the LineAndFileWrapper constructor is called when an empty line.  Raise a BadStatusError before the call.

22 years agoAdd several news items for changes I made since b1.
Jeremy Hylton [Sun, 29 Jun 2003 17:25:39 +0000 (17:25 +0000)]
Add several news items for changes I made since b1.

22 years agoWhitespace normalization.
Tim Peters [Sun, 29 Jun 2003 17:24:17 +0000 (17:24 +0000)]
Whitespace normalization.

22 years agoRemoved XXX comments about missing threading.py functions.
Tim Peters [Sun, 29 Jun 2003 17:12:30 +0000 (17:12 +0000)]
Removed XXX comments about missing threading.py functions.

22 years agoAdded news about os.environ['PYTHONINSPECT'] = 'yes'
Barry Warsaw [Sun, 29 Jun 2003 17:10:11 +0000 (17:10 +0000)]
Added news about os.environ['PYTHONINSPECT'] = 'yes'

22 years agoRemove stub settrace() and setprofile() calls.
Jeremy Hylton [Sun, 29 Jun 2003 17:07:46 +0000 (17:07 +0000)]
Remove stub settrace() and setprofile() calls.

22 years agoPy_Main(): Add a check for the PYTHONINSPECT environment variable
Barry Warsaw [Sun, 29 Jun 2003 17:07:06 +0000 (17:07 +0000)]
Py_Main(): Add a check for the PYTHONINSPECT environment variable
after running the script so that a program could do something like:

os.environ['PYTHONINSPECT'] = 1

to programmatically enter a prompt at the end.

(After a patch by Skip Montanaro w/ proposal by Troy Melhase

22 years agoFix grammar in comment.
Jeremy Hylton [Sun, 29 Jun 2003 16:59:59 +0000 (16:59 +0000)]
Fix grammar in comment.

22 years agoWhitespace normalization.
Jeremy Hylton [Sun, 29 Jun 2003 16:59:43 +0000 (16:59 +0000)]
Whitespace normalization.

22 years agoAdd settrace() and setprofile() functions to the threading library.
Jeremy Hylton [Sun, 29 Jun 2003 16:58:41 +0000 (16:58 +0000)]
Add settrace() and setprofile() functions to the threading library.

22 years agoTypo repair.
Tim Peters [Sun, 29 Jun 2003 16:56:38 +0000 (16:56 +0000)]
Typo repair.

22 years agoUpdate copyright years.
Fred Drake [Sun, 29 Jun 2003 16:55:47 +0000 (16:55 +0000)]
Update copyright years.

22 years agoProvide dummy (do-nothing) settrace() and setprofile() functions until
Tim Peters [Sun, 29 Jun 2003 16:50:06 +0000 (16:50 +0000)]
Provide dummy (do-nothing) settrace() and setprofile() functions until
Jeremy can check in the real things.

22 years agoFilled in release date; repaired grammar in a news item.
Tim Peters [Sun, 29 Jun 2003 16:18:08 +0000 (16:18 +0000)]
Filled in release date; repaired grammar in a news item.

22 years agominor wordsmithing
Skip Montanaro [Sun, 29 Jun 2003 16:01:51 +0000 (16:01 +0000)]
minor wordsmithing