Staging
v0.5.1
https://github.com/python/cpython
Revision a85c95d5e85e1d6886d1260b88221c2a31686a55 authored by Thomas Heller on 24 September 2008, 18:26:05 UTC, committed by Thomas Heller on 24 September 2008, 18:26:05 UTC
1 parent 8798c90
Raw File
Tip revision: a85c95d5e85e1d6886d1260b88221c2a31686a55 authored by Thomas Heller on 24 September 2008, 18:26:05 UTC
Fix issue #3547: ctypes is confused by bitfields of varying integer types
Tip revision: a85c95d
setup.py
from distutils.core import setup

if __name__ == '__main__':
    setup(
      scripts=[
        'byteyears.py',
        'checkpyc.py',
        'copytime.py',
        'crlf.py',
        'dutree.py',
        'ftpmirror.py',
        'h2py.py',
        'lfcr.py',
        '../i18n/pygettext.py',
        'logmerge.py',
        '../../Lib/tabnanny.py',
        '../../Lib/timeit.py',
        'untabify.py',
        ],
      )
back to top