mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Remove several mentions of old Python versions that don't apply anymore.
This commit is contained in:
parent
84df79b249
commit
d348b2587e
7 changed files with 1 additions and 41 deletions
|
@ -18,9 +18,6 @@
|
||||||
Logging package for Python. Based on PEP 282 and comments thereto in
|
Logging package for Python. Based on PEP 282 and comments thereto in
|
||||||
comp.lang.python, and influenced by Apache's log4j system.
|
comp.lang.python, and influenced by Apache's log4j system.
|
||||||
|
|
||||||
Should work under Python versions >= 1.5.2, except that source line
|
|
||||||
information is not available unless 'sys._getframe()' is.
|
|
||||||
|
|
||||||
Copyright (C) 2001-2007 Vinay Sajip. All Rights Reserved.
|
Copyright (C) 2001-2007 Vinay Sajip. All Rights Reserved.
|
||||||
|
|
||||||
To use, simply 'import logging' and log away!
|
To use, simply 'import logging' and log away!
|
||||||
|
|
|
@ -19,9 +19,6 @@ Configuration functions for the logging package for Python. The core package
|
||||||
is based on PEP 282 and comments thereto in comp.lang.python, and influenced
|
is based on PEP 282 and comments thereto in comp.lang.python, and influenced
|
||||||
by Apache's log4j system.
|
by Apache's log4j system.
|
||||||
|
|
||||||
Should work under Python versions >= 1.5.2, except that source line
|
|
||||||
information is not available unless 'sys._getframe()' is.
|
|
||||||
|
|
||||||
Copyright (C) 2001-2007 Vinay Sajip. All Rights Reserved.
|
Copyright (C) 2001-2007 Vinay Sajip. All Rights Reserved.
|
||||||
|
|
||||||
To use, simply 'import logging' and log away!
|
To use, simply 'import logging' and log away!
|
||||||
|
|
|
@ -19,9 +19,6 @@ Additional handlers for the logging package for Python. The core package is
|
||||||
based on PEP 282 and comments thereto in comp.lang.python, and influenced by
|
based on PEP 282 and comments thereto in comp.lang.python, and influenced by
|
||||||
Apache's log4j system.
|
Apache's log4j system.
|
||||||
|
|
||||||
Should work under Python versions >= 1.5.2, except that source line
|
|
||||||
information is not available unless 'sys._getframe()' is.
|
|
||||||
|
|
||||||
Copyright (C) 2001-2007 Vinay Sajip. All Rights Reserved.
|
Copyright (C) 2001-2007 Vinay Sajip. All Rights Reserved.
|
||||||
|
|
||||||
To use, simply 'import logging' and log away!
|
To use, simply 'import logging' and log away!
|
||||||
|
|
|
@ -909,12 +909,7 @@ the .py suffix may be omitted.""", file=self.stdout)
|
||||||
With a space separated list of breakpoint numbers, clear
|
With a space separated list of breakpoint numbers, clear
|
||||||
those breakpoints. Without argument, clear all breaks (but
|
those breakpoints. Without argument, clear all breaks (but
|
||||||
first ask confirmation). With a filename:lineno argument,
|
first ask confirmation). With a filename:lineno argument,
|
||||||
clear all breaks at that line in that file.
|
clear all breaks at that line in that file.""", file=self.stdout)
|
||||||
|
|
||||||
Note that the argument is different from previous versions of
|
|
||||||
the debugger (in python distributions 1.5.1 and before) where
|
|
||||||
a linenumber was used instead of either filename:lineno or
|
|
||||||
breakpoint numbers.""", file=self.stdout)
|
|
||||||
|
|
||||||
def help_tbreak(self):
|
def help_tbreak(self):
|
||||||
print("""tbreak same arguments as break, but breakpoint is
|
print("""tbreak same arguments as break, but breakpoint is
|
||||||
|
|
|
@ -12,8 +12,6 @@
|
||||||
# If you find problems, please submit bug reports/patches via the
|
# If you find problems, please submit bug reports/patches via the
|
||||||
# Python SourceForge Project Page and assign them to "lemburg".
|
# Python SourceForge Project Page and assign them to "lemburg".
|
||||||
#
|
#
|
||||||
# Note: Please keep this module compatible to Python 1.5.2.
|
|
||||||
#
|
|
||||||
# Still needed:
|
# Still needed:
|
||||||
# * more support for WinCE
|
# * more support for WinCE
|
||||||
# * support for MS-DOS (PythonDX ?)
|
# * support for MS-DOS (PythonDX ?)
|
||||||
|
@ -857,22 +855,6 @@ def _node(default=''):
|
||||||
# Still not working...
|
# Still not working...
|
||||||
return default
|
return default
|
||||||
|
|
||||||
# os.path.abspath is new in Python 1.5.2:
|
|
||||||
if not hasattr(os.path,'abspath'):
|
|
||||||
|
|
||||||
def _abspath(path,
|
|
||||||
|
|
||||||
isabs=os.path.isabs,join=os.path.join,getcwd=os.getcwd,
|
|
||||||
normpath=os.path.normpath):
|
|
||||||
|
|
||||||
if not isabs(path):
|
|
||||||
path = join(getcwd(), path)
|
|
||||||
return normpath(path)
|
|
||||||
|
|
||||||
else:
|
|
||||||
|
|
||||||
_abspath = os.path.abspath
|
|
||||||
|
|
||||||
def _follow_symlinks(filepath):
|
def _follow_symlinks(filepath):
|
||||||
|
|
||||||
""" In case filepath is a symlink, follow it until a
|
""" In case filepath is a symlink, follow it until a
|
||||||
|
|
|
@ -4,12 +4,6 @@
|
||||||
* This module is automatically imported during initialization. *
|
* This module is automatically imported during initialization. *
|
||||||
****************************************************************
|
****************************************************************
|
||||||
|
|
||||||
In earlier versions of Python (up to 1.5a3), scripts or modules that
|
|
||||||
needed to use site-specific modules would place ``import site''
|
|
||||||
somewhere near the top of their code. Because of the automatic
|
|
||||||
import, this is no longer necessary (but code that does it still
|
|
||||||
works).
|
|
||||||
|
|
||||||
This will append site-specific paths to the module search path. On
|
This will append site-specific paths to the module search path. On
|
||||||
Unix (including Mac OSX), it starts with sys.prefix and
|
Unix (including Mac OSX), it starts with sys.prefix and
|
||||||
sys.exec_prefix (if different) and appends
|
sys.exec_prefix (if different) and appends
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
# Regex test suite and benchmark suite v1.5a2
|
# Regex test suite and benchmark suite v1.5a2
|
||||||
# Due to the use of r"aw" strings, this file will
|
|
||||||
# only work with Python 1.5 or higher.
|
|
||||||
|
|
||||||
# The 3 possible outcomes for each pattern
|
# The 3 possible outcomes for each pattern
|
||||||
[SUCCEED, FAIL, SYNTAX_ERROR] = range(3)
|
[SUCCEED, FAIL, SYNTAX_ERROR] = range(3)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue