Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d448f66

Browse files
committed
Add comment to Distutil files about requiring 1.5.2 compatibility, as
suggested by PEP 291.
1 parent 6f429c3 commit d448f66

37 files changed

Lines changed: 78 additions & 1 deletion

Lib/distutils/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
setup (...)
99
"""
1010

11+
# This module should be kept compatible with Python 1.5.2.
12+
1113
__revision__ = "$Id$"
1214

1315
__version__ = "1.0.3"

Lib/distutils/archive_util.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Utility functions for creating archive files (tarballs, zip files,
44
that sort of thing)."""
55

6+
# This module should be kept compatible with Python 1.5.2.
7+
68
__revision__ = "$Id$"
79

810
import os

Lib/distutils/bcppcompiler.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
# someone should sit down and factor out the common code as
1212
# WindowsCCompiler! --GPW
1313

14+
# This module should be kept compatible with Python 1.5.2.
15+
1416
__revision__ = "$Id$"
1517

1618

Lib/distutils/ccompiler.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Contains CCompiler, an abstract base class that defines the interface
44
for the Distutils compiler abstraction model."""
55

6+
# This module should be kept compatible with Python 1.5.2.
7+
68
__revision__ = "$Id$"
79

810
import sys, os, re

Lib/distutils/cmd.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
in the distutils.command package.
55
"""
66

7+
# This module should be kept compatible with Python 1.5.2.
8+
79
__revision__ = "$Id$"
810

911
import sys, os, string, re

Lib/distutils/command/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Package containing implementation of all the standard Distutils
44
commands."""
55

6+
# This module should be kept compatible with Python 1.5.2.
7+
68
__revision__ = "$Id$"
79

810
__all__ = ['build',

Lib/distutils/command/bdist.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Implements the Distutils 'bdist' command (create a built [binary]
44
distribution)."""
55

6+
# This module should be kept compatible with Python 1.5.2.
7+
68
__revision__ = "$Id$"
79

810
import os, string

Lib/distutils/command/bdist_dumb.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
distribution -- i.e., just an archive to be unpacked under $prefix or
55
$exec_prefix)."""
66

7+
# This module should be kept compatible with Python 1.5.2.
8+
79
__revision__ = "$Id$"
810

911
import os

Lib/distutils/command/bdist_rpm.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Implements the Distutils 'bdist_rpm' command (create RPM source and binary
44
distributions)."""
55

6+
# This module should be kept compatible with Python 1.5.2.
7+
68
__revision__ = "$Id$"
79

810
import sys, os, string

Lib/distutils/command/bdist_wininst.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Implements the Distutils 'bdist_wininst' command: create a windows installer
44
exe-program."""
55

6+
# This module should be kept compatible with Python 1.5.2.
7+
68
__revision__ = "$Id$"
79

810
import sys, os, string

0 commit comments

Comments
 (0)