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

Skip to content

Commit 51f77b5

Browse files
author
Thomas Heller
committed
Remove the magic to run an uninstalled ctypes version from a CVS sandbox.
1 parent aeadf95 commit 51f77b5

2 files changed

Lines changed: 0 additions & 21 deletions

File tree

Lib/ctypes/.CTYPES_DEVEL

Lines changed: 0 additions & 14 deletions
This file was deleted.

Lib/ctypes/__init__.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
11
"""create and manipulate C data types in Python"""
22

3-
# special developer support to use ctypes from the CVS sandbox,
4-
# without installing it
53
import os as _os, sys as _sys
64
from itertools import chain as _chain
75

8-
_magicfile = _os.path.join(_os.path.dirname(__file__), ".CTYPES_DEVEL")
9-
if _os.path.isfile(_magicfile):
10-
execfile(_magicfile)
11-
del _magicfile
12-
136
__version__ = "0.9.9.4"
147

158
from _ctypes import Union, Structure, Array

0 commit comments

Comments
 (0)