diff options
author | Thomas Heller <theller@ctypes.org> | 2006-06-12 20:56:48 +0000 |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2006-06-12 20:56:48 +0000 |
commit | c2da9945852785c7da3c0becc7edd586b5ec628b (patch) | |
tree | 1e03c84523bf75766186d88a46b1d79df311ffcb /Lib | |
parent | f608317061cc11de915f55da8c59880dc02e6d94 (diff) | |
download | cpython-git-c2da9945852785c7da3c0becc7edd586b5ec628b.tar.gz |
Add pep-291 compatibility markers.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/ctypes/__init__.py | 3 | ||||
-rw-r--r-- | Lib/ctypes/_endian.py | 3 | ||||
-rw-r--r-- | Lib/ctypes/macholib/__init__.py | 3 | ||||
-rw-r--r-- | Lib/ctypes/macholib/dyld.py | 3 | ||||
-rw-r--r-- | Lib/ctypes/macholib/dylib.py | 3 | ||||
-rw-r--r-- | Lib/ctypes/macholib/framework.py | 3 | ||||
-rw-r--r-- | Lib/ctypes/util.py | 3 | ||||
-rw-r--r-- | Lib/ctypes/wintypes.py | 3 |
8 files changed, 24 insertions, 0 deletions
diff --git a/Lib/ctypes/__init__.py b/Lib/ctypes/__init__.py index 042bc477ea..eb4753202c 100644 --- a/Lib/ctypes/__init__.py +++ b/Lib/ctypes/__init__.py @@ -1,3 +1,6 @@ +###################################################################### +# This file should be kept compatible with Python 2.3, see PEP 291. # +###################################################################### """create and manipulate C data types in Python""" import os as _os, sys as _sys diff --git a/Lib/ctypes/_endian.py b/Lib/ctypes/_endian.py index 5818ae14bc..6de0d47b2c 100644 --- a/Lib/ctypes/_endian.py +++ b/Lib/ctypes/_endian.py @@ -1,3 +1,6 @@ +###################################################################### +# This file should be kept compatible with Python 2.3, see PEP 291. # +###################################################################### import sys from ctypes import * diff --git a/Lib/ctypes/macholib/__init__.py b/Lib/ctypes/macholib/__init__.py index 5621defccd..36149d28a1 100644 --- a/Lib/ctypes/macholib/__init__.py +++ b/Lib/ctypes/macholib/__init__.py @@ -1,3 +1,6 @@ +###################################################################### +# This file should be kept compatible with Python 2.3, see PEP 291. # +###################################################################### """ Enough Mach-O to make your head spin. diff --git a/Lib/ctypes/macholib/dyld.py b/Lib/ctypes/macholib/dyld.py index a336fd085f..14e21395ea 100644 --- a/Lib/ctypes/macholib/dyld.py +++ b/Lib/ctypes/macholib/dyld.py @@ -1,3 +1,6 @@ +###################################################################### +# This file should be kept compatible with Python 2.3, see PEP 291. # +###################################################################### """ dyld emulation """ diff --git a/Lib/ctypes/macholib/dylib.py b/Lib/ctypes/macholib/dylib.py index aa107507bd..ea3dd38bdf 100644 --- a/Lib/ctypes/macholib/dylib.py +++ b/Lib/ctypes/macholib/dylib.py @@ -1,3 +1,6 @@ +###################################################################### +# This file should be kept compatible with Python 2.3, see PEP 291. # +###################################################################### """ Generic dylib path manipulation """ diff --git a/Lib/ctypes/macholib/framework.py b/Lib/ctypes/macholib/framework.py index ad6ed554ba..dd7fb2f296 100644 --- a/Lib/ctypes/macholib/framework.py +++ b/Lib/ctypes/macholib/framework.py @@ -1,3 +1,6 @@ +###################################################################### +# This file should be kept compatible with Python 2.3, see PEP 291. # +###################################################################### """ Generic framework path manipulation """ diff --git a/Lib/ctypes/util.py b/Lib/ctypes/util.py index 094b029a40..d4e314a6a0 100644 --- a/Lib/ctypes/util.py +++ b/Lib/ctypes/util.py @@ -1,3 +1,6 @@ +###################################################################### +# This file should be kept compatible with Python 2.3, see PEP 291. # +###################################################################### import sys, os # find_library(name) returns the pathname of a library, or None. diff --git a/Lib/ctypes/wintypes.py b/Lib/ctypes/wintypes.py index 92b79d2abf..870d917b05 100644 --- a/Lib/ctypes/wintypes.py +++ b/Lib/ctypes/wintypes.py @@ -1,3 +1,6 @@ +###################################################################### +# This file should be kept compatible with Python 2.3, see PEP 291. # +###################################################################### # XXX This module needs cleanup. from ctypes import * |