├── tests
├── pythons
│ ├── win32-py32
│ │ ├── Lib
│ │ │ ├── urllib
│ │ │ │ └── __init__.py
│ │ │ ├── email
│ │ │ │ └── mime
│ │ │ │ │ └── __init__.py
│ │ │ ├── pydoc_data
│ │ │ │ ├── __init__.py
│ │ │ │ └── _pydoc.css
│ │ │ ├── test
│ │ │ │ ├── leakers
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── test_gestalt.py
│ │ │ │ │ └── test_selftype.py
│ │ │ │ ├── cjkencodings
│ │ │ │ │ ├── big5hkscs-utf8.txt
│ │ │ │ │ ├── hz-utf8.txt
│ │ │ │ │ ├── hz.txt
│ │ │ │ │ ├── gbk.txt
│ │ │ │ │ ├── big5.txt
│ │ │ │ │ ├── cp949.txt
│ │ │ │ │ ├── euc_jp.txt
│ │ │ │ │ ├── euc_kr.txt
│ │ │ │ │ ├── gb2312.txt
│ │ │ │ │ ├── johab.txt
│ │ │ │ │ ├── gb18030.txt
│ │ │ │ │ ├── big5hkscs.txt
│ │ │ │ │ ├── shift_jis.txt
│ │ │ │ │ ├── euc_jisx0213.txt
│ │ │ │ │ ├── shift_jisx0213.txt
│ │ │ │ │ ├── gb2312-utf8.txt
│ │ │ │ │ ├── cp949-utf8.txt
│ │ │ │ │ ├── johab-utf8.txt
│ │ │ │ │ ├── iso2022_kr-utf8.txt
│ │ │ │ │ ├── euc_kr-utf8.txt
│ │ │ │ │ └── big5-utf8.txt
│ │ │ │ ├── crashers
│ │ │ │ │ ├── compiler_recursion.py
│ │ │ │ │ └── underlying_dict.py
│ │ │ │ ├── sndhdrdata
│ │ │ │ │ ├── sndhdr.au
│ │ │ │ │ ├── sndhdr.8svx
│ │ │ │ │ ├── sndhdr.aifc
│ │ │ │ │ ├── sndhdr.aiff
│ │ │ │ │ ├── sndhdr.hcom
│ │ │ │ │ ├── sndhdr.sndt
│ │ │ │ │ ├── sndhdr.voc
│ │ │ │ │ └── sndhdr.wav
│ │ │ │ ├── encoded_modules
│ │ │ │ │ ├── module_koi8_r.py
│ │ │ │ │ └── module_iso_8859_1.py
│ │ │ │ ├── xmltestdata
│ │ │ │ │ ├── simple.xml
│ │ │ │ │ └── simple-ns.xml
│ │ │ │ ├── subprocessdata
│ │ │ │ │ ├── input_reader.py
│ │ │ │ │ ├── qcat.py
│ │ │ │ │ └── qgrep.py
│ │ │ │ ├── tracedmodules
│ │ │ │ │ ├── testmod.py
│ │ │ │ │ └── __init__.py
│ │ │ │ └── json_tests
│ │ │ │ │ └── test_default.py
│ │ │ ├── turtledemo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── turtle.cfg
│ │ │ │ └── about_turtledemo.txt
│ │ │ ├── lib2to3
│ │ │ │ ├── __init__.py
│ │ │ │ ├── tests
│ │ │ │ │ └── data
│ │ │ │ │ │ └── fixers
│ │ │ │ │ │ ├── myfixes
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── fix_first.py
│ │ │ │ │ │ ├── fix_explicit.py
│ │ │ │ │ │ ├── fix_last.py
│ │ │ │ │ │ ├── fix_preorder.py
│ │ │ │ │ │ └── fix_parrot.py
│ │ │ │ │ │ ├── parrot_example.py
│ │ │ │ │ │ ├── no_fixer_cls.py
│ │ │ │ │ │ └── bad_order.py
│ │ │ │ ├── fixes
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── fix_imports2.py
│ │ │ │ │ └── fix_basestring.py
│ │ │ │ ├── Grammar3.2.5.final.0.pickle
│ │ │ │ ├── PatternGrammar3.2.5.final.0.pickle
│ │ │ │ └── pgen2
│ │ │ │ │ └── __init__.py
│ │ │ ├── tkinter
│ │ │ │ └── test
│ │ │ │ │ ├── test_ttk
│ │ │ │ │ └── __init__.py
│ │ │ │ │ └── test_tkinter
│ │ │ │ │ └── __init__.py
│ │ │ ├── site-packages
│ │ │ │ ├── pip
│ │ │ │ │ ├── _vendor
│ │ │ │ │ │ ├── html5lib
│ │ │ │ │ │ │ ├── filters
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ ├── _base.py
│ │ │ │ │ │ │ │ └── sanitizer.py
│ │ │ │ │ │ │ └── trie
│ │ │ │ │ │ │ │ └── __init__.py
│ │ │ │ │ │ ├── requests
│ │ │ │ │ │ │ └── packages
│ │ │ │ │ │ │ │ ├── urllib3
│ │ │ │ │ │ │ │ ├── contrib
│ │ │ │ │ │ │ │ │ └── __init__.py
│ │ │ │ │ │ │ │ └── packages
│ │ │ │ │ │ │ │ │ └── __init__.py
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ └── charade
│ │ │ │ │ │ │ │ └── __main__.py
│ │ │ │ │ │ ├── colorama
│ │ │ │ │ │ │ └── __init__.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ └── distlib
│ │ │ │ │ │ │ └── _backport
│ │ │ │ │ │ │ └── __init__.py
│ │ │ │ │ ├── __main__.py
│ │ │ │ │ ├── status_codes.py
│ │ │ │ │ └── commands
│ │ │ │ │ │ └── unzip.py
│ │ │ │ ├── setuptools-3.3.dist-info
│ │ │ │ │ ├── zip-safe
│ │ │ │ │ ├── top_level.txt
│ │ │ │ │ ├── requires.txt.orig
│ │ │ │ │ ├── WHEEL
│ │ │ │ │ ├── dependency_links.txt
│ │ │ │ │ └── dependency_links.txt.orig
│ │ │ │ ├── pip-1.5.4.dist-info
│ │ │ │ │ ├── top_level.txt
│ │ │ │ │ ├── entry_points.txt
│ │ │ │ │ └── WHEEL
│ │ │ │ ├── setuptools
│ │ │ │ │ ├── version.py
│ │ │ │ │ ├── tests
│ │ │ │ │ │ ├── script-with-bom.py
│ │ │ │ │ │ └── py26compat.py
│ │ │ │ │ ├── script template.py
│ │ │ │ │ ├── command
│ │ │ │ │ │ └── register.py
│ │ │ │ │ ├── script template (dev).py
│ │ │ │ │ └── py27compat.py
│ │ │ │ ├── README.txt
│ │ │ │ └── easy_install.py
│ │ │ ├── http
│ │ │ │ └── __init__.py
│ │ │ ├── concurrent
│ │ │ │ └── __init__.py
│ │ │ ├── xmlrpc
│ │ │ │ └── __init__.py
│ │ │ ├── __phello__.foo.py
│ │ │ ├── dbm
│ │ │ │ ├── gnu.py
│ │ │ │ └── ndbm.py
│ │ │ ├── xml
│ │ │ │ ├── etree
│ │ │ │ │ └── cElementTree.py
│ │ │ │ └── parsers
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── expat.py
│ │ │ ├── ctypes
│ │ │ │ └── macholib
│ │ │ │ │ ├── fetch_macholib.bat
│ │ │ │ │ ├── fetch_macholib
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── README.ctypes
│ │ │ ├── curses
│ │ │ │ └── panel.py
│ │ │ ├── distutils
│ │ │ │ ├── debug.py
│ │ │ │ ├── README
│ │ │ │ └── __init__.py
│ │ │ ├── importlib
│ │ │ │ ├── test
│ │ │ │ │ ├── builtin
│ │ │ │ │ │ ├── util.py
│ │ │ │ │ │ └── __init__.py
│ │ │ │ │ ├── frozen
│ │ │ │ │ │ └── __init__.py
│ │ │ │ │ ├── source
│ │ │ │ │ │ └── __init__.py
│ │ │ │ │ ├── import_
│ │ │ │ │ │ └── __init__.py
│ │ │ │ │ └── extension
│ │ │ │ │ │ └── __init__.py
│ │ │ │ ├── util.py
│ │ │ │ └── machinery.py
│ │ │ ├── wsgiref.egg-info
│ │ │ ├── struct.py
│ │ │ └── unittest
│ │ │ │ └── __main__.py
│ │ ├── DLLs
│ │ │ ├── bz2.pyd
│ │ │ ├── py.ico
│ │ │ ├── pyc.ico
│ │ │ ├── _msi.pyd
│ │ │ ├── _ssl.pyd
│ │ │ ├── _ctypes.pyd
│ │ │ ├── _hashlib.pyd
│ │ │ ├── _socket.pyd
│ │ │ ├── _sqlite3.pyd
│ │ │ ├── pyexpat.pyd
│ │ │ ├── select.pyd
│ │ │ ├── winsound.pyd
│ │ │ ├── _testcapi.pyd
│ │ │ ├── _ctypes_test.pyd
│ │ │ ├── _elementtree.pyd
│ │ │ ├── unicodedata.pyd
│ │ │ └── _multiprocessing.pyd
│ │ ├── libs
│ │ │ └── libpython32.a
│ │ └── include
│ │ │ ├── bltinmodule.h
│ │ │ ├── pgen.h
│ │ │ ├── enumobject.h
│ │ │ ├── metagrammar.h
│ │ │ ├── intrcheck.h
│ │ │ ├── ast.h
│ │ │ └── dtoa.h
│ ├── win32-py33
│ │ ├── Lib
│ │ │ ├── urllib
│ │ │ │ └── __init__.py
│ │ │ ├── email
│ │ │ │ └── mime
│ │ │ │ │ └── __init__.py
│ │ │ ├── pydoc_data
│ │ │ │ ├── __init__.py
│ │ │ │ └── _pydoc.css
│ │ │ ├── lib2to3
│ │ │ │ ├── __init__.py
│ │ │ │ ├── fixes
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── fix_imports2.py
│ │ │ │ │ └── fix_basestring.py
│ │ │ │ ├── __main__.py
│ │ │ │ ├── Grammar3.3.5.final.0.pickle
│ │ │ │ ├── PatternGrammar3.3.5.final.0.pickle
│ │ │ │ └── pgen2
│ │ │ │ │ └── __init__.py
│ │ │ ├── http
│ │ │ │ └── __init__.py
│ │ │ ├── concurrent
│ │ │ │ └── __init__.py
│ │ │ ├── xmlrpc
│ │ │ │ └── __init__.py
│ │ │ ├── __phello__.foo.py
│ │ │ ├── dbm
│ │ │ │ ├── gnu.py
│ │ │ │ └── ndbm.py
│ │ │ ├── ctypes
│ │ │ │ └── macholib
│ │ │ │ │ ├── fetch_macholib.bat
│ │ │ │ │ ├── fetch_macholib
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── README.ctypes
│ │ │ ├── xml
│ │ │ │ ├── etree
│ │ │ │ │ └── cElementTree.py
│ │ │ │ └── parsers
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── expat.py
│ │ │ ├── curses
│ │ │ │ └── panel.py
│ │ │ ├── site-packages
│ │ │ │ └── README.txt
│ │ │ ├── distutils
│ │ │ │ ├── debug.py
│ │ │ │ ├── README.txt
│ │ │ │ └── __init__.py
│ │ │ ├── venv
│ │ │ │ └── __main__.py
│ │ │ └── struct.py
│ │ ├── DLLs
│ │ │ ├── py.ico
│ │ │ ├── pyc.ico
│ │ │ ├── _bz2.pyd
│ │ │ ├── _lzma.pyd
│ │ │ ├── _msi.pyd
│ │ │ ├── _ssl.pyd
│ │ │ ├── _ctypes.pyd
│ │ │ ├── _decimal.pyd
│ │ │ ├── _hashlib.pyd
│ │ │ ├── _socket.pyd
│ │ │ ├── _sqlite3.pyd
│ │ │ ├── pyexpat.pyd
│ │ │ ├── select.pyd
│ │ │ ├── winsound.pyd
│ │ │ ├── _testcapi.pyd
│ │ │ ├── _ctypes_test.pyd
│ │ │ ├── _elementtree.pyd
│ │ │ ├── _testbuffer.pyd
│ │ │ ├── unicodedata.pyd
│ │ │ └── _multiprocessing.pyd
│ │ ├── libs
│ │ │ └── libpython33.a
│ │ └── include
│ │ │ ├── bltinmodule.h
│ │ │ ├── pgen.h
│ │ │ ├── enumobject.h
│ │ │ ├── metagrammar.h
│ │ │ ├── namespaceobject.h
│ │ │ └── ast.h
│ ├── win64-py32
│ │ ├── Lib
│ │ │ ├── urllib
│ │ │ │ └── __init__.py
│ │ │ ├── email
│ │ │ │ └── mime
│ │ │ │ │ └── __init__.py
│ │ │ ├── pydoc_data
│ │ │ │ ├── __init__.py
│ │ │ │ └── _pydoc.css
│ │ │ ├── test
│ │ │ │ ├── leakers
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── test_gestalt.py
│ │ │ │ │ └── test_selftype.py
│ │ │ │ ├── cjkencodings
│ │ │ │ │ ├── big5hkscs-utf8.txt
│ │ │ │ │ ├── hz-utf8.txt
│ │ │ │ │ ├── hz.txt
│ │ │ │ │ ├── gbk.txt
│ │ │ │ │ ├── big5.txt
│ │ │ │ │ ├── cp949.txt
│ │ │ │ │ ├── euc_jp.txt
│ │ │ │ │ ├── euc_kr.txt
│ │ │ │ │ ├── gb2312.txt
│ │ │ │ │ ├── johab.txt
│ │ │ │ │ ├── gb18030.txt
│ │ │ │ │ ├── big5hkscs.txt
│ │ │ │ │ ├── shift_jis.txt
│ │ │ │ │ ├── euc_jisx0213.txt
│ │ │ │ │ ├── shift_jisx0213.txt
│ │ │ │ │ ├── gb2312-utf8.txt
│ │ │ │ │ ├── cp949-utf8.txt
│ │ │ │ │ ├── johab-utf8.txt
│ │ │ │ │ ├── iso2022_kr-utf8.txt
│ │ │ │ │ ├── euc_kr-utf8.txt
│ │ │ │ │ └── big5-utf8.txt
│ │ │ │ ├── crashers
│ │ │ │ │ ├── compiler_recursion.py
│ │ │ │ │ └── underlying_dict.py
│ │ │ │ ├── sndhdrdata
│ │ │ │ │ ├── sndhdr.au
│ │ │ │ │ ├── sndhdr.8svx
│ │ │ │ │ ├── sndhdr.aifc
│ │ │ │ │ ├── sndhdr.aiff
│ │ │ │ │ ├── sndhdr.hcom
│ │ │ │ │ ├── sndhdr.sndt
│ │ │ │ │ ├── sndhdr.voc
│ │ │ │ │ └── sndhdr.wav
│ │ │ │ ├── encoded_modules
│ │ │ │ │ ├── module_koi8_r.py
│ │ │ │ │ └── module_iso_8859_1.py
│ │ │ │ ├── xmltestdata
│ │ │ │ │ ├── simple.xml
│ │ │ │ │ └── simple-ns.xml
│ │ │ │ ├── subprocessdata
│ │ │ │ │ ├── input_reader.py
│ │ │ │ │ ├── qcat.py
│ │ │ │ │ └── qgrep.py
│ │ │ │ ├── tracedmodules
│ │ │ │ │ ├── testmod.py
│ │ │ │ │ └── __init__.py
│ │ │ │ └── json_tests
│ │ │ │ │ └── test_default.py
│ │ │ ├── turtledemo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── turtle.cfg
│ │ │ │ └── about_turtledemo.txt
│ │ │ ├── lib2to3
│ │ │ │ ├── __init__.py
│ │ │ │ ├── tests
│ │ │ │ │ └── data
│ │ │ │ │ │ └── fixers
│ │ │ │ │ │ ├── myfixes
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── fix_first.py
│ │ │ │ │ │ ├── fix_explicit.py
│ │ │ │ │ │ ├── fix_last.py
│ │ │ │ │ │ ├── fix_preorder.py
│ │ │ │ │ │ └── fix_parrot.py
│ │ │ │ │ │ ├── parrot_example.py
│ │ │ │ │ │ ├── no_fixer_cls.py
│ │ │ │ │ │ └── bad_order.py
│ │ │ │ ├── fixes
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── fix_imports2.py
│ │ │ │ │ └── fix_basestring.py
│ │ │ │ ├── Grammar3.2.5.final.0.pickle
│ │ │ │ ├── PatternGrammar3.2.5.final.0.pickle
│ │ │ │ └── pgen2
│ │ │ │ │ └── __init__.py
│ │ │ ├── tkinter
│ │ │ │ └── test
│ │ │ │ │ ├── test_ttk
│ │ │ │ │ └── __init__.py
│ │ │ │ │ └── test_tkinter
│ │ │ │ │ └── __init__.py
│ │ │ ├── http
│ │ │ │ └── __init__.py
│ │ │ ├── concurrent
│ │ │ │ └── __init__.py
│ │ │ ├── xmlrpc
│ │ │ │ └── __init__.py
│ │ │ ├── __phello__.foo.py
│ │ │ ├── dbm
│ │ │ │ ├── gnu.py
│ │ │ │ └── ndbm.py
│ │ │ ├── xml
│ │ │ │ ├── etree
│ │ │ │ │ └── cElementTree.py
│ │ │ │ └── parsers
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── expat.py
│ │ │ ├── ctypes
│ │ │ │ └── macholib
│ │ │ │ │ ├── fetch_macholib.bat
│ │ │ │ │ ├── fetch_macholib
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── README.ctypes
│ │ │ ├── curses
│ │ │ │ └── panel.py
│ │ │ ├── site-packages
│ │ │ │ └── README.txt
│ │ │ ├── distutils
│ │ │ │ ├── debug.py
│ │ │ │ ├── README
│ │ │ │ └── __init__.py
│ │ │ ├── importlib
│ │ │ │ ├── test
│ │ │ │ │ ├── builtin
│ │ │ │ │ │ ├── util.py
│ │ │ │ │ │ └── __init__.py
│ │ │ │ │ ├── frozen
│ │ │ │ │ │ └── __init__.py
│ │ │ │ │ ├── source
│ │ │ │ │ │ └── __init__.py
│ │ │ │ │ ├── import_
│ │ │ │ │ │ └── __init__.py
│ │ │ │ │ └── extension
│ │ │ │ │ │ └── __init__.py
│ │ │ │ ├── util.py
│ │ │ │ └── machinery.py
│ │ │ ├── wsgiref.egg-info
│ │ │ ├── struct.py
│ │ │ └── unittest
│ │ │ │ └── __main__.py
│ │ ├── DLLs
│ │ │ ├── bz2.pyd
│ │ │ ├── py.ico
│ │ │ ├── pyc.ico
│ │ │ ├── _msi.pyd
│ │ │ ├── _ssl.pyd
│ │ │ ├── _ctypes.pyd
│ │ │ ├── _hashlib.pyd
│ │ │ ├── _socket.pyd
│ │ │ ├── _sqlite3.pyd
│ │ │ ├── pyexpat.pyd
│ │ │ ├── select.pyd
│ │ │ ├── winsound.pyd
│ │ │ ├── _testcapi.pyd
│ │ │ ├── _ctypes_test.pyd
│ │ │ ├── _elementtree.pyd
│ │ │ ├── unicodedata.pyd
│ │ │ └── _multiprocessing.pyd
│ │ └── include
│ │ │ ├── bltinmodule.h
│ │ │ ├── pgen.h
│ │ │ ├── enumobject.h
│ │ │ ├── metagrammar.h
│ │ │ ├── intrcheck.h
│ │ │ ├── ast.h
│ │ │ └── dtoa.h
│ ├── win64-py33
│ │ ├── Lib
│ │ │ ├── urllib
│ │ │ │ └── __init__.py
│ │ │ ├── email
│ │ │ │ └── mime
│ │ │ │ │ └── __init__.py
│ │ │ ├── pydoc_data
│ │ │ │ ├── __init__.py
│ │ │ │ └── _pydoc.css
│ │ │ ├── lib2to3
│ │ │ │ ├── __init__.py
│ │ │ │ ├── fixes
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── fix_imports2.py
│ │ │ │ │ └── fix_basestring.py
│ │ │ │ ├── __main__.py
│ │ │ │ ├── Grammar3.3.5.final.0.pickle
│ │ │ │ ├── PatternGrammar3.3.5.final.0.pickle
│ │ │ │ └── pgen2
│ │ │ │ │ └── __init__.py
│ │ │ ├── http
│ │ │ │ └── __init__.py
│ │ │ ├── concurrent
│ │ │ │ └── __init__.py
│ │ │ ├── xmlrpc
│ │ │ │ └── __init__.py
│ │ │ ├── __phello__.foo.py
│ │ │ ├── dbm
│ │ │ │ ├── gnu.py
│ │ │ │ └── ndbm.py
│ │ │ ├── ctypes
│ │ │ │ └── macholib
│ │ │ │ │ ├── fetch_macholib.bat
│ │ │ │ │ ├── fetch_macholib
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── README.ctypes
│ │ │ ├── xml
│ │ │ │ ├── etree
│ │ │ │ │ └── cElementTree.py
│ │ │ │ └── parsers
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── expat.py
│ │ │ ├── curses
│ │ │ │ └── panel.py
│ │ │ ├── site-packages
│ │ │ │ └── README.txt
│ │ │ ├── distutils
│ │ │ │ ├── debug.py
│ │ │ │ ├── README.txt
│ │ │ │ └── __init__.py
│ │ │ ├── venv
│ │ │ │ └── __main__.py
│ │ │ └── struct.py
│ │ ├── DLLs
│ │ │ ├── py.ico
│ │ │ ├── pyc.ico
│ │ │ ├── _bz2.pyd
│ │ │ ├── _lzma.pyd
│ │ │ ├── _msi.pyd
│ │ │ ├── _ssl.pyd
│ │ │ ├── _ctypes.pyd
│ │ │ ├── _decimal.pyd
│ │ │ ├── _hashlib.pyd
│ │ │ ├── _socket.pyd
│ │ │ ├── _sqlite3.pyd
│ │ │ ├── pyexpat.pyd
│ │ │ ├── select.pyd
│ │ │ ├── winsound.pyd
│ │ │ ├── _testcapi.pyd
│ │ │ ├── _ctypes_test.pyd
│ │ │ ├── _elementtree.pyd
│ │ │ ├── _testbuffer.pyd
│ │ │ ├── unicodedata.pyd
│ │ │ └── _multiprocessing.pyd
│ │ └── include
│ │ │ ├── bltinmodule.h
│ │ │ ├── pgen.h
│ │ │ ├── enumobject.h
│ │ │ ├── metagrammar.h
│ │ │ ├── namespaceobject.h
│ │ │ └── ast.h
│ ├── win32-py27
│ │ ├── Lib
│ │ │ ├── email
│ │ │ │ └── mime
│ │ │ │ │ └── __init__.py
│ │ │ ├── pydoc_data
│ │ │ │ └── __init__.py
│ │ │ ├── test
│ │ │ │ ├── leakers
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── test_dictself.py
│ │ │ │ │ ├── test_gestalt.py
│ │ │ │ │ ├── test_selftype.py
│ │ │ │ │ └── test_ctypes.py
│ │ │ │ ├── cjkencodings
│ │ │ │ │ ├── big5hkscs-utf8.txt
│ │ │ │ │ ├── hz-utf8.txt
│ │ │ │ │ ├── hz.txt
│ │ │ │ │ ├── gbk.txt
│ │ │ │ │ ├── big5.txt
│ │ │ │ │ ├── cp949.txt
│ │ │ │ │ ├── euc_jp.txt
│ │ │ │ │ ├── euc_kr.txt
│ │ │ │ │ ├── gb2312.txt
│ │ │ │ │ ├── johab.txt
│ │ │ │ │ ├── gb18030.txt
│ │ │ │ │ ├── big5hkscs.txt
│ │ │ │ │ ├── shift_jis.txt
│ │ │ │ │ ├── euc_jisx0213.txt
│ │ │ │ │ ├── shift_jisx0213.txt
│ │ │ │ │ ├── gb2312-utf8.txt
│ │ │ │ │ ├── cp949-utf8.txt
│ │ │ │ │ ├── johab-utf8.txt
│ │ │ │ │ ├── iso2022_kr-utf8.txt
│ │ │ │ │ ├── euc_kr-utf8.txt
│ │ │ │ │ └── big5-utf8.txt
│ │ │ │ ├── crashers
│ │ │ │ │ ├── compiler_recursion.py
│ │ │ │ │ └── recursive_call.py
│ │ │ │ ├── xmltestdata
│ │ │ │ │ ├── simple.xml
│ │ │ │ │ └── simple-ns.xml
│ │ │ │ └── tracedmodules
│ │ │ │ │ ├── testmod.py
│ │ │ │ │ └── __init__.py
│ │ │ ├── lib-tk
│ │ │ │ └── test
│ │ │ │ │ ├── test_ttk
│ │ │ │ │ └── __init__.py
│ │ │ │ │ └── test_tkinter
│ │ │ │ │ └── __init__.py
│ │ │ ├── lib2to3
│ │ │ │ ├── __init__.py
│ │ │ │ ├── tests
│ │ │ │ │ └── data
│ │ │ │ │ │ └── fixers
│ │ │ │ │ │ ├── myfixes
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── fix_first.py
│ │ │ │ │ │ ├── fix_explicit.py
│ │ │ │ │ │ ├── fix_last.py
│ │ │ │ │ │ ├── fix_preorder.py
│ │ │ │ │ │ └── fix_parrot.py
│ │ │ │ │ │ ├── parrot_example.py
│ │ │ │ │ │ ├── no_fixer_cls.py
│ │ │ │ │ │ └── bad_order.py
│ │ │ │ ├── fixes
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── fix_imports2.py
│ │ │ │ │ └── fix_basestring.py
│ │ │ │ ├── __main__.py
│ │ │ │ └── pgen2
│ │ │ │ │ └── __init__.py
│ │ │ ├── site-packages
│ │ │ │ ├── pip
│ │ │ │ │ ├── _vendor
│ │ │ │ │ │ ├── html5lib
│ │ │ │ │ │ │ ├── filters
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ ├── _base.py
│ │ │ │ │ │ │ │ └── sanitizer.py
│ │ │ │ │ │ │ └── trie
│ │ │ │ │ │ │ │ └── __init__.py
│ │ │ │ │ │ ├── requests
│ │ │ │ │ │ │ └── packages
│ │ │ │ │ │ │ │ ├── urllib3
│ │ │ │ │ │ │ │ ├── contrib
│ │ │ │ │ │ │ │ │ └── __init__.py
│ │ │ │ │ │ │ │ └── packages
│ │ │ │ │ │ │ │ │ └── __init__.py
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ └── charade
│ │ │ │ │ │ │ │ └── __main__.py
│ │ │ │ │ │ ├── colorama
│ │ │ │ │ │ │ └── __init__.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ └── distlib
│ │ │ │ │ │ │ └── _backport
│ │ │ │ │ │ │ └── __init__.py
│ │ │ │ │ ├── __main__.py
│ │ │ │ │ ├── status_codes.py
│ │ │ │ │ └── commands
│ │ │ │ │ │ └── unzip.py
│ │ │ │ ├── setuptools-3.3.dist-info
│ │ │ │ │ ├── zip-safe
│ │ │ │ │ ├── top_level.txt
│ │ │ │ │ ├── requires.txt.orig
│ │ │ │ │ ├── WHEEL
│ │ │ │ │ ├── dependency_links.txt
│ │ │ │ │ └── dependency_links.txt.orig
│ │ │ │ ├── pip-1.5.4.dist-info
│ │ │ │ │ ├── top_level.txt
│ │ │ │ │ ├── entry_points.txt
│ │ │ │ │ └── WHEEL
│ │ │ │ ├── setuptools
│ │ │ │ │ ├── version.py
│ │ │ │ │ ├── tests
│ │ │ │ │ │ ├── script-with-bom.py
│ │ │ │ │ │ └── py26compat.py
│ │ │ │ │ ├── script template.py
│ │ │ │ │ ├── command
│ │ │ │ │ │ └── register.py
│ │ │ │ │ ├── script template (dev).py
│ │ │ │ │ └── py27compat.py
│ │ │ │ ├── README.txt
│ │ │ │ └── easy_install.py
│ │ │ ├── __phello__.foo.py
│ │ │ ├── antigravity.py
│ │ │ ├── xml
│ │ │ │ ├── etree
│ │ │ │ │ └── cElementTree.py
│ │ │ │ └── parsers
│ │ │ │ │ ├── expat.py
│ │ │ │ │ └── __init__.py
│ │ │ ├── heapq.py
│ │ │ ├── shlex.py
│ │ │ ├── struct.py
│ │ │ ├── tarfile.py
│ │ │ ├── msilib
│ │ │ │ └── __init__.py
│ │ │ ├── sqlite3
│ │ │ │ ├── dbapi2.py
│ │ │ │ └── __init__.py
│ │ │ ├── encodings
│ │ │ │ ├── punycode.py
│ │ │ │ └── string_escape.py
│ │ │ ├── distutils
│ │ │ │ ├── command
│ │ │ │ │ └── bdist_msi.py
│ │ │ │ ├── debug.py
│ │ │ │ └── __init__.py
│ │ │ ├── curses
│ │ │ │ └── panel.py
│ │ │ ├── unittest
│ │ │ │ └── __main__.py
│ │ │ ├── idlelib
│ │ │ │ └── idle_test
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── test_pathbrowser.py
│ │ │ ├── md5.py
│ │ │ ├── ctypes
│ │ │ │ └── macholib
│ │ │ │ │ └── __init__.py
│ │ │ └── sre.py
│ │ ├── DLLs
│ │ │ ├── bz2.pyd
│ │ │ ├── py.ico
│ │ │ ├── pyc.ico
│ │ │ ├── _msi.pyd
│ │ │ ├── _ssl.pyd
│ │ │ ├── _bsddb.pyd
│ │ │ ├── _ctypes.pyd
│ │ │ ├── _hashlib.pyd
│ │ │ ├── _socket.pyd
│ │ │ ├── _sqlite3.pyd
│ │ │ ├── pyexpat.pyd
│ │ │ ├── select.pyd
│ │ │ ├── winsound.pyd
│ │ │ ├── _testcapi.pyd
│ │ │ ├── _ctypes_test.pyd
│ │ │ ├── _elementtree.pyd
│ │ │ ├── unicodedata.pyd
│ │ │ └── _multiprocessing.pyd
│ │ ├── libs
│ │ │ └── libpython27.a
│ │ └── include
│ │ │ ├── ast.h
│ │ │ ├── pgen.h
│ │ │ ├── enumobject.h
│ │ │ ├── metagrammar.h
│ │ │ ├── intrcheck.h
│ │ │ ├── dtoa.h
│ │ │ └── pygetopt.h
│ └── win64-py27
│ │ ├── Lib
│ │ ├── email
│ │ │ └── mime
│ │ │ │ └── __init__.py
│ │ ├── pydoc_data
│ │ │ └── __init__.py
│ │ ├── test
│ │ │ ├── leakers
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_dictself.py
│ │ │ │ ├── test_gestalt.py
│ │ │ │ ├── test_selftype.py
│ │ │ │ └── test_ctypes.py
│ │ │ ├── cjkencodings
│ │ │ │ ├── big5hkscs-utf8.txt
│ │ │ │ ├── hz-utf8.txt
│ │ │ │ ├── hz.txt
│ │ │ │ ├── gbk.txt
│ │ │ │ ├── big5.txt
│ │ │ │ ├── cp949.txt
│ │ │ │ ├── euc_jp.txt
│ │ │ │ ├── euc_kr.txt
│ │ │ │ ├── gb2312.txt
│ │ │ │ ├── johab.txt
│ │ │ │ ├── gb18030.txt
│ │ │ │ ├── big5hkscs.txt
│ │ │ │ ├── shift_jis.txt
│ │ │ │ ├── euc_jisx0213.txt
│ │ │ │ ├── shift_jisx0213.txt
│ │ │ │ ├── gb2312-utf8.txt
│ │ │ │ ├── cp949-utf8.txt
│ │ │ │ ├── johab-utf8.txt
│ │ │ │ ├── iso2022_kr-utf8.txt
│ │ │ │ ├── euc_kr-utf8.txt
│ │ │ │ └── big5-utf8.txt
│ │ │ ├── crashers
│ │ │ │ ├── compiler_recursion.py
│ │ │ │ └── recursive_call.py
│ │ │ ├── xmltestdata
│ │ │ │ ├── simple.xml
│ │ │ │ └── simple-ns.xml
│ │ │ └── tracedmodules
│ │ │ │ ├── testmod.py
│ │ │ │ └── __init__.py
│ │ ├── lib-tk
│ │ │ └── test
│ │ │ │ ├── test_ttk
│ │ │ │ └── __init__.py
│ │ │ │ └── test_tkinter
│ │ │ │ └── __init__.py
│ │ ├── lib2to3
│ │ │ ├── __init__.py
│ │ │ ├── tests
│ │ │ │ └── data
│ │ │ │ │ └── fixers
│ │ │ │ │ ├── myfixes
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── fix_first.py
│ │ │ │ │ ├── fix_explicit.py
│ │ │ │ │ ├── fix_last.py
│ │ │ │ │ ├── fix_preorder.py
│ │ │ │ │ └── fix_parrot.py
│ │ │ │ │ ├── parrot_example.py
│ │ │ │ │ ├── no_fixer_cls.py
│ │ │ │ │ └── bad_order.py
│ │ │ ├── fixes
│ │ │ │ ├── __init__.py
│ │ │ │ ├── fix_imports2.py
│ │ │ │ └── fix_basestring.py
│ │ │ ├── __main__.py
│ │ │ └── pgen2
│ │ │ │ └── __init__.py
│ │ ├── __phello__.foo.py
│ │ ├── antigravity.py
│ │ ├── xml
│ │ │ ├── etree
│ │ │ │ └── cElementTree.py
│ │ │ └── parsers
│ │ │ │ ├── expat.py
│ │ │ │ └── __init__.py
│ │ ├── heapq.py
│ │ ├── shlex.py
│ │ ├── struct.py
│ │ ├── tarfile.py
│ │ ├── msilib
│ │ │ └── __init__.py
│ │ ├── sqlite3
│ │ │ ├── dbapi2.py
│ │ │ └── __init__.py
│ │ ├── encodings
│ │ │ ├── punycode.py
│ │ │ └── string_escape.py
│ │ ├── distutils
│ │ │ ├── command
│ │ │ │ └── bdist_msi.py
│ │ │ ├── debug.py
│ │ │ └── __init__.py
│ │ ├── site-packages
│ │ │ └── README.txt
│ │ ├── curses
│ │ │ └── panel.py
│ │ ├── unittest
│ │ │ └── __main__.py
│ │ ├── idlelib
│ │ │ └── idle_test
│ │ │ │ ├── __init__.py
│ │ │ │ └── test_pathbrowser.py
│ │ ├── md5.py
│ │ ├── ctypes
│ │ │ └── macholib
│ │ │ │ └── __init__.py
│ │ └── sre.py
│ │ ├── DLLs
│ │ ├── bz2.pyd
│ │ ├── py.ico
│ │ ├── pyc.ico
│ │ ├── _msi.pyd
│ │ ├── _ssl.pyd
│ │ ├── _bsddb.pyd
│ │ ├── _ctypes.pyd
│ │ ├── _hashlib.pyd
│ │ ├── _socket.pyd
│ │ ├── _sqlite3.pyd
│ │ ├── pyexpat.pyd
│ │ ├── select.pyd
│ │ ├── winsound.pyd
│ │ ├── _testcapi.pyd
│ │ ├── _ctypes_test.pyd
│ │ ├── _elementtree.pyd
│ │ ├── unicodedata.pyd
│ │ └── _multiprocessing.pyd
│ │ └── include
│ │ ├── ast.h
│ │ ├── pgen.h
│ │ ├── enumobject.h
│ │ ├── metagrammar.h
│ │ ├── intrcheck.h
│ │ ├── dtoa.h
│ │ └── pygetopt.h
└── test.py
├── psycopg2
└── _psycopg.pyd
└── .gitignore
/tests/pythons/win32-py32/Lib/urllib/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/urllib/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/urllib/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/urllib/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/email/mime/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/pydoc_data/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/leakers/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/email/mime/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/pydoc_data/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/leakers/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/turtledemo/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/email/mime/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/pydoc_data/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/email/mime/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/pydoc_data/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/leakers/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/email/mime/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/pydoc_data/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/leakers/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/turtledemo/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/email/mime/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/pydoc_data/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib-tk/test/test_ttk/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/__init__.py:
--------------------------------------------------------------------------------
1 | #empty
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/__init__.py:
--------------------------------------------------------------------------------
1 | #empty
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/tkinter/test/test_ttk/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/lib2to3/__init__.py:
--------------------------------------------------------------------------------
1 | #empty
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib-tk/test/test_ttk/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/__init__.py:
--------------------------------------------------------------------------------
1 | #empty
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/__init__.py:
--------------------------------------------------------------------------------
1 | #empty
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/tkinter/test/test_ttk/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/lib2to3/__init__.py:
--------------------------------------------------------------------------------
1 | #empty
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib-tk/test/test_tkinter/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/tkinter/test/test_tkinter/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib-tk/test/test_tkinter/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/tkinter/test/test_tkinter/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/setuptools-3.3.dist-info/zip-safe:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/setuptools-3.3.dist-info/zip-safe:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip-1.5.4.dist-info/top_level.txt:
--------------------------------------------------------------------------------
1 | pip
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/setuptools/version.py:
--------------------------------------------------------------------------------
1 | __version__ = '3.3'
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/http/__init__.py:
--------------------------------------------------------------------------------
1 | # This directory is a Python package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip-1.5.4.dist-info/top_level.txt:
--------------------------------------------------------------------------------
1 | pip
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/setuptools/version.py:
--------------------------------------------------------------------------------
1 | __version__ = '3.3'
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/http/__init__.py:
--------------------------------------------------------------------------------
1 | # This directory is a Python package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/http/__init__.py:
--------------------------------------------------------------------------------
1 | # This directory is a Python package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/http/__init__.py:
--------------------------------------------------------------------------------
1 | # This directory is a Python package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/big5hkscs-utf8.txt:
--------------------------------------------------------------------------------
1 | 𠄌Ě鵮罓洆
2 | ÊÊ̄ê êê̄
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/concurrent/__init__.py:
--------------------------------------------------------------------------------
1 | # This directory is a Python package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/big5hkscs-utf8.txt:
--------------------------------------------------------------------------------
1 | 𠄌Ě鵮罓洆
2 | ÊÊ̄ê êê̄
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/xmlrpc/__init__.py:
--------------------------------------------------------------------------------
1 | # This directory is a Python package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/concurrent/__init__.py:
--------------------------------------------------------------------------------
1 | # This directory is a Python package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/xmlrpc/__init__.py:
--------------------------------------------------------------------------------
1 | # This directory is a Python package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/big5hkscs-utf8.txt:
--------------------------------------------------------------------------------
1 | 𠄌Ě鵮罓洆
2 | ÊÊ̄ê êê̄
3 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/concurrent/__init__.py:
--------------------------------------------------------------------------------
1 | # This directory is a Python package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/big5hkscs-utf8.txt:
--------------------------------------------------------------------------------
1 | 𠄌Ě鵮罓洆
2 | ÊÊ̄ê êê̄
3 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/xmlrpc/__init__.py:
--------------------------------------------------------------------------------
1 | # This directory is a Python package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/concurrent/__init__.py:
--------------------------------------------------------------------------------
1 | # This directory is a Python package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/xmlrpc/__init__.py:
--------------------------------------------------------------------------------
1 | # This directory is a Python package.
2 |
--------------------------------------------------------------------------------
/psycopg2/_psycopg.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/psycopg2/_psycopg.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/tests/data/fixers/parrot_example.py:
--------------------------------------------------------------------------------
1 | def parrot():
2 | pass
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/tests/data/fixers/parrot_example.py:
--------------------------------------------------------------------------------
1 | def parrot():
2 | pass
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/tests/data/fixers/parrot_example.py:
--------------------------------------------------------------------------------
1 | def parrot():
2 | pass
3 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/tests/data/fixers/parrot_example.py:
--------------------------------------------------------------------------------
1 | def parrot():
2 | pass
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/fixes/__init__.py:
--------------------------------------------------------------------------------
1 | # Dummy file to make this directory a package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/fixes/__init__.py:
--------------------------------------------------------------------------------
1 | # Dummy file to make this directory a package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/lib2to3/fixes/__init__.py:
--------------------------------------------------------------------------------
1 | # Dummy file to make this directory a package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/fixes/__init__.py:
--------------------------------------------------------------------------------
1 | # Dummy file to make this directory a package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/fixes/__init__.py:
--------------------------------------------------------------------------------
1 | # Dummy file to make this directory a package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/lib2to3/fixes/__init__.py:
--------------------------------------------------------------------------------
1 | # Dummy file to make this directory a package.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/__phello__.foo.py:
--------------------------------------------------------------------------------
1 | # This file exists as a helper for the test.test_frozen module.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/__phello__.foo.py:
--------------------------------------------------------------------------------
1 | # This file exists as a helper for the test.test_frozen module.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/__phello__.foo.py:
--------------------------------------------------------------------------------
1 | # This file exists as a helper for the test.test_frozen module.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/__phello__.foo.py:
--------------------------------------------------------------------------------
1 | # This file exists as a helper for the test.test_frozen module.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/__phello__.foo.py:
--------------------------------------------------------------------------------
1 | # This file exists as a helper for the test.test_frozen module.
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/__phello__.foo.py:
--------------------------------------------------------------------------------
1 | # This file exists as a helper for the test.test_frozen module.
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | ###SublimeText###
2 | *.pyc
3 |
4 | # SublimeText project files
5 | *.sublime-workspace
6 | *.sublime-project
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/antigravity.py:
--------------------------------------------------------------------------------
1 |
2 | import webbrowser
3 |
4 | webbrowser.open("http://xkcd.com/353/")
5 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/dbm/gnu.py:
--------------------------------------------------------------------------------
1 | """Provide the _gdbm module as a dbm submodule."""
2 |
3 | from _gdbm import *
4 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/dbm/ndbm.py:
--------------------------------------------------------------------------------
1 | """Provide the _dbm module as a dbm submodule."""
2 |
3 | from _dbm import *
4 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/dbm/gnu.py:
--------------------------------------------------------------------------------
1 | """Provide the _gdbm module as a dbm submodule."""
2 |
3 | from _gdbm import *
4 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/dbm/ndbm.py:
--------------------------------------------------------------------------------
1 | """Provide the _dbm module as a dbm submodule."""
2 |
3 | from _dbm import *
4 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/antigravity.py:
--------------------------------------------------------------------------------
1 |
2 | import webbrowser
3 |
4 | webbrowser.open("http://xkcd.com/353/")
5 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/dbm/gnu.py:
--------------------------------------------------------------------------------
1 | """Provide the _gdbm module as a dbm submodule."""
2 |
3 | from _gdbm import *
4 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/dbm/ndbm.py:
--------------------------------------------------------------------------------
1 | """Provide the _dbm module as a dbm submodule."""
2 |
3 | from _dbm import *
4 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/dbm/gnu.py:
--------------------------------------------------------------------------------
1 | """Provide the _gdbm module as a dbm submodule."""
2 |
3 | from _gdbm import *
4 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/dbm/ndbm.py:
--------------------------------------------------------------------------------
1 | """Provide the _dbm module as a dbm submodule."""
2 |
3 | from _dbm import *
4 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/xml/etree/cElementTree.py:
--------------------------------------------------------------------------------
1 | # Wrapper module for _elementtree
2 |
3 | from _elementtree import *
4 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/xml/etree/cElementTree.py:
--------------------------------------------------------------------------------
1 | # Wrapper module for _elementtree
2 |
3 | from _elementtree import *
4 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/xml/etree/cElementTree.py:
--------------------------------------------------------------------------------
1 | # Wrapper module for _elementtree
2 |
3 | from _elementtree import *
4 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/xml/etree/cElementTree.py:
--------------------------------------------------------------------------------
1 | # Wrapper module for _elementtree
2 |
3 | from _elementtree import *
4 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/bz2.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/bz2.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/py.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/py.ico
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/pyc.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/pyc.ico
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/heapq.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/heapq.py
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/__main__.py:
--------------------------------------------------------------------------------
1 | import sys
2 | from .main import main
3 |
4 | sys.exit(main("lib2to3.fixes"))
5 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/shlex.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/shlex.py
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/setuptools/tests/script-with-bom.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 |
3 | result = 'passed'
4 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/struct.py:
--------------------------------------------------------------------------------
1 | from _struct import *
2 | from _struct import _clearcache
3 | from _struct import __doc__
4 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/bz2.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/bz2.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/py.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/py.ico
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/pyc.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/pyc.ico
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/setuptools/tests/script-with-bom.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 |
3 | result = 'passed'
4 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/py.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/py.ico
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/pyc.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/pyc.ico
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/lib2to3/__main__.py:
--------------------------------------------------------------------------------
1 | import sys
2 | from .main import main
3 |
4 | sys.exit(main("lib2to3.fixes"))
5 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/bz2.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/bz2.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/py.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/py.ico
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/pyc.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/pyc.ico
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/heapq.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/heapq.py
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/__main__.py:
--------------------------------------------------------------------------------
1 | import sys
2 | from .main import main
3 |
4 | sys.exit(main("lib2to3.fixes"))
5 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/shlex.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/shlex.py
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/struct.py:
--------------------------------------------------------------------------------
1 | from _struct import *
2 | from _struct import _clearcache
3 | from _struct import __doc__
4 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/bz2.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/bz2.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/py.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/py.ico
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/pyc.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/pyc.ico
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/py.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/py.ico
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/pyc.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/pyc.ico
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/lib2to3/__main__.py:
--------------------------------------------------------------------------------
1 | import sys
2 | from .main import main
3 |
4 | sys.exit(main("lib2to3.fixes"))
5 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/_msi.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/_msi.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/_ssl.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/_ssl.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/tarfile.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/tarfile.py
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/hz-utf8.txt:
--------------------------------------------------------------------------------
1 | This sentence is in ASCII.
2 | The next sentence is in GB.己所不欲,勿施於人。Bye.
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/_msi.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/_msi.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/_ssl.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/_ssl.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/hz-utf8.txt:
--------------------------------------------------------------------------------
1 | This sentence is in ASCII.
2 | The next sentence is in GB.己所不欲,勿施於人。Bye.
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/_bz2.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/_bz2.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/_lzma.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/_lzma.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/_msi.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/_msi.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/_ssl.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/_ssl.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/_msi.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/_msi.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/_ssl.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/_ssl.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/tarfile.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/tarfile.py
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/hz-utf8.txt:
--------------------------------------------------------------------------------
1 | This sentence is in ASCII.
2 | The next sentence is in GB.己所不欲,勿施於人。Bye.
3 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/_msi.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/_msi.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/_ssl.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/_ssl.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/hz-utf8.txt:
--------------------------------------------------------------------------------
1 | This sentence is in ASCII.
2 | The next sentence is in GB.己所不欲,勿施於人。Bye.
3 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/_bz2.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/_bz2.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/_lzma.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/_lzma.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/_msi.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/_msi.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/_ssl.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/_ssl.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/_bsddb.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/_bsddb.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/_ctypes.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/_ctypes.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/_hashlib.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/_hashlib.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/_socket.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/_socket.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/_sqlite3.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/_sqlite3.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/pyexpat.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/pyexpat.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/select.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/select.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/winsound.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/winsound.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/_ctypes.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/_ctypes.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/_hashlib.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/_hashlib.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/_socket.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/_socket.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/_sqlite3.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/_sqlite3.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/pyexpat.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/pyexpat.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/select.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/select.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/winsound.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/winsound.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/ctypes/macholib/fetch_macholib.bat:
--------------------------------------------------------------------------------
1 | svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/_ctypes.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/_ctypes.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/_decimal.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/_decimal.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/_hashlib.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/_hashlib.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/_socket.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/_socket.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/_sqlite3.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/_sqlite3.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/pyexpat.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/pyexpat.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/select.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/select.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/winsound.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/winsound.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/ctypes/macholib/fetch_macholib.bat:
--------------------------------------------------------------------------------
1 | svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/_bsddb.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/_bsddb.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/_ctypes.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/_ctypes.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/_hashlib.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/_hashlib.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/_socket.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/_socket.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/_sqlite3.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/_sqlite3.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/pyexpat.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/pyexpat.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/select.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/select.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/winsound.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/winsound.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/_ctypes.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/_ctypes.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/_hashlib.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/_hashlib.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/_socket.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/_socket.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/_sqlite3.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/_sqlite3.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/pyexpat.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/pyexpat.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/select.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/select.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/winsound.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/winsound.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/ctypes/macholib/fetch_macholib.bat:
--------------------------------------------------------------------------------
1 | svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/_ctypes.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/_ctypes.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/_decimal.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/_decimal.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/_hashlib.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/_hashlib.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/_socket.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/_socket.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/_sqlite3.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/_sqlite3.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/pyexpat.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/pyexpat.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/select.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/select.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/winsound.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/winsound.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/ctypes/macholib/fetch_macholib.bat:
--------------------------------------------------------------------------------
1 | svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/_testcapi.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/_testcapi.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/setuptools-3.3.dist-info/top_level.txt:
--------------------------------------------------------------------------------
1 | _markerlib
2 | pkg_resources
3 | setuptools
4 | easy_install
5 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/hz.txt:
--------------------------------------------------------------------------------
1 | This sentence is in ASCII.
2 | The next sentence is in GB.~{<:Ky2;S{#,NpJ)l6HK!#~}Bye.
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/libs/libpython27.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/libs/libpython27.a
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/_testcapi.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/_testcapi.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/setuptools-3.3.dist-info/top_level.txt:
--------------------------------------------------------------------------------
1 | _markerlib
2 | pkg_resources
3 | setuptools
4 | easy_install
5 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/hz.txt:
--------------------------------------------------------------------------------
1 | This sentence is in ASCII.
2 | The next sentence is in GB.~{<:Ky2;S{#,NpJ)l6HK!#~}Bye.
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/libs/libpython32.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/libs/libpython32.a
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/_testcapi.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/_testcapi.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/xml/etree/cElementTree.py:
--------------------------------------------------------------------------------
1 | # Deprecated alias for xml.etree.ElementTree
2 |
3 | from xml.etree.ElementTree import *
4 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/libs/libpython33.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/libs/libpython33.a
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/_testcapi.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/_testcapi.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/hz.txt:
--------------------------------------------------------------------------------
1 | This sentence is in ASCII.
2 | The next sentence is in GB.~{<:Ky2;S{#,NpJ)l6HK!#~}Bye.
3 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/_testcapi.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/_testcapi.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/hz.txt:
--------------------------------------------------------------------------------
1 | This sentence is in ASCII.
2 | The next sentence is in GB.~{<:Ky2;S{#,NpJ)l6HK!#~}Bye.
3 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/_testcapi.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/_testcapi.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/xml/etree/cElementTree.py:
--------------------------------------------------------------------------------
1 | # Deprecated alias for xml.etree.ElementTree
2 |
3 | from xml.etree.ElementTree import *
4 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/_ctypes_test.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/_ctypes_test.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/_elementtree.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/_elementtree.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/unicodedata.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/unicodedata.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/tests/data/fixers/no_fixer_cls.py:
--------------------------------------------------------------------------------
1 | # This is empty so trying to fetch the fixer class gives an AttributeError
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/msilib/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/msilib/__init__.py
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/sqlite3/dbapi2.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/sqlite3/dbapi2.py
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/_ctypes_test.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/_ctypes_test.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/_elementtree.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/_elementtree.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/unicodedata.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/unicodedata.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/ctypes/macholib/fetch_macholib:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/tests/data/fixers/no_fixer_cls.py:
--------------------------------------------------------------------------------
1 | # This is empty so trying to fetch the fixer class gives an AttributeError
2 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/_ctypes_test.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/_ctypes_test.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/_elementtree.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/_elementtree.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/_testbuffer.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/_testbuffer.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/unicodedata.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/unicodedata.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/ctypes/macholib/fetch_macholib:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
3 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/_ctypes_test.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/_ctypes_test.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/_elementtree.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/_elementtree.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/unicodedata.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/unicodedata.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/tests/data/fixers/no_fixer_cls.py:
--------------------------------------------------------------------------------
1 | # This is empty so trying to fetch the fixer class gives an AttributeError
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/msilib/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/msilib/__init__.py
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/sqlite3/dbapi2.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/sqlite3/dbapi2.py
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/_ctypes_test.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/_ctypes_test.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/_elementtree.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/_elementtree.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/unicodedata.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/unicodedata.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/ctypes/macholib/fetch_macholib:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
3 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/tests/data/fixers/no_fixer_cls.py:
--------------------------------------------------------------------------------
1 | # This is empty so trying to fetch the fixer class gives an AttributeError
2 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/_ctypes_test.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/_ctypes_test.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/_elementtree.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/_elementtree.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/_testbuffer.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/_testbuffer.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/unicodedata.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/unicodedata.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/ctypes/macholib/fetch_macholib:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip/_vendor/requests/packages/__init__.py:
--------------------------------------------------------------------------------
1 | from __future__ import absolute_import
2 |
3 | from . import urllib3
4 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/sqlite3/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/sqlite3/__init__.py
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/curses/panel.py:
--------------------------------------------------------------------------------
1 | """curses.panel
2 |
3 | Module for using panels with curses.
4 | """
5 |
6 | from _curses_panel import *
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip/_vendor/requests/packages/__init__.py:
--------------------------------------------------------------------------------
1 | from __future__ import absolute_import
2 |
3 | from . import urllib3
4 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/curses/panel.py:
--------------------------------------------------------------------------------
1 | """curses.panel
2 |
3 | Module for using panels with curses.
4 | """
5 |
6 | from _curses_panel import *
7 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/sqlite3/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/sqlite3/__init__.py
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/curses/panel.py:
--------------------------------------------------------------------------------
1 | """curses.panel
2 |
3 | Module for using panels with curses.
4 | """
5 |
6 | from _curses_panel import *
7 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/curses/panel.py:
--------------------------------------------------------------------------------
1 | """curses.panel
2 |
3 | Module for using panels with curses.
4 | """
5 |
6 | from _curses_panel import *
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/DLLs/_multiprocessing.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/DLLs/_multiprocessing.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/encodings/punycode.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/encodings/punycode.py
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/DLLs/_multiprocessing.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/DLLs/_multiprocessing.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/DLLs/_multiprocessing.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/DLLs/_multiprocessing.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/DLLs/_multiprocessing.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/DLLs/_multiprocessing.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/encodings/punycode.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/encodings/punycode.py
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/DLLs/_multiprocessing.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/DLLs/_multiprocessing.pyd
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/DLLs/_multiprocessing.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/DLLs/_multiprocessing.pyd
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip-1.5.4.dist-info/entry_points.txt:
--------------------------------------------------------------------------------
1 | [console_scripts]
2 | pip = pip:main
3 | pip2.7 = pip:main
4 | pip2 = pip:main
5 |
6 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/gbk.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/test/cjkencodings/gbk.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/crashers/compiler_recursion.py:
--------------------------------------------------------------------------------
1 | """
2 | The compiler (>= 2.5) recurses happily.
3 | """
4 |
5 | compile('()'*9**5, '?', 'exec')
6 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip-1.5.4.dist-info/entry_points.txt:
--------------------------------------------------------------------------------
1 | [console_scripts]
2 | pip = pip:main
3 | pip2.7 = pip:main
4 | pip2 = pip:main
5 |
6 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/gbk.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/cjkencodings/gbk.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/crashers/compiler_recursion.py:
--------------------------------------------------------------------------------
1 | """
2 | The compiler (>= 2.5) recurses happily.
3 | """
4 |
5 | compile('()'*9**5, '?', 'exec')
6 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.au:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.au
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/gbk.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/test/cjkencodings/gbk.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/crashers/compiler_recursion.py:
--------------------------------------------------------------------------------
1 | """
2 | The compiler (>= 2.5) recurses happily.
3 | """
4 |
5 | compile('()'*9**5, '?', 'exec')
6 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/gbk.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/cjkencodings/gbk.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/crashers/compiler_recursion.py:
--------------------------------------------------------------------------------
1 | """
2 | The compiler (>= 2.5) recurses happily.
3 | """
4 |
5 | compile('()'*9**5, '?', 'exec')
6 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.au:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.au
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/encodings/string_escape.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/encodings/string_escape.py
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/big5.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/test/cjkencodings/big5.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/cp949.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/test/cjkencodings/cp949.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/euc_jp.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/test/cjkencodings/euc_jp.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/euc_kr.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/test/cjkencodings/euc_kr.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/gb2312.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/test/cjkencodings/gb2312.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/johab.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/test/cjkencodings/johab.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/pydoc_data/_pydoc.css:
--------------------------------------------------------------------------------
1 | /*
2 | CSS file for pydoc.
3 |
4 | Contents of this file are subject to change without notice.
5 |
6 | */
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/big5.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/cjkencodings/big5.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/cp949.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/cjkencodings/cp949.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/euc_jp.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/cjkencodings/euc_jp.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/euc_kr.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/cjkencodings/euc_kr.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/gb2312.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/cjkencodings/gb2312.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/johab.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/cjkencodings/johab.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.8svx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.8svx
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.aifc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.aifc
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.aiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.aiff
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.hcom:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.hcom
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.sndt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.sndt
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.voc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.voc
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/sndhdrdata/sndhdr.wav
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/pydoc_data/_pydoc.css:
--------------------------------------------------------------------------------
1 | /*
2 | CSS file for pydoc.
3 |
4 | Contents of this file are subject to change without notice.
5 |
6 | */
7 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/encodings/string_escape.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/encodings/string_escape.py
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/big5.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/test/cjkencodings/big5.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/cp949.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/test/cjkencodings/cp949.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/euc_jp.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/test/cjkencodings/euc_jp.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/euc_kr.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/test/cjkencodings/euc_kr.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/gb2312.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/test/cjkencodings/gb2312.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/johab.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/test/cjkencodings/johab.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/pydoc_data/_pydoc.css:
--------------------------------------------------------------------------------
1 | /*
2 | CSS file for pydoc.
3 |
4 | Contents of this file are subject to change without notice.
5 |
6 | */
7 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/big5.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/cjkencodings/big5.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/cp949.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/cjkencodings/cp949.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/euc_jp.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/cjkencodings/euc_jp.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/euc_kr.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/cjkencodings/euc_kr.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/gb2312.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/cjkencodings/gb2312.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/johab.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/cjkencodings/johab.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.8svx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.8svx
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.aifc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.aifc
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.aiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.aiff
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.hcom:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.hcom
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.sndt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.sndt
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.voc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.voc
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/sndhdrdata/sndhdr.wav
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/pydoc_data/_pydoc.css:
--------------------------------------------------------------------------------
1 | /*
2 | CSS file for pydoc.
3 |
4 | Contents of this file are subject to change without notice.
5 |
6 | */
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/distutils/command/bdist_msi.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/distutils/command/bdist_msi.py
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/tests/data/fixers/bad_order.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixBadOrder(BaseFix):
4 |
5 | order = "crazy"
6 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/gb18030.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/test/cjkencodings/gb18030.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/tests/data/fixers/bad_order.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixBadOrder(BaseFix):
4 |
5 | order = "crazy"
6 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/gb18030.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/cjkencodings/gb18030.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/distutils/command/bdist_msi.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/distutils/command/bdist_msi.py
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/tests/data/fixers/bad_order.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixBadOrder(BaseFix):
4 |
5 | order = "crazy"
6 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/gb18030.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/test/cjkencodings/gb18030.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/tests/data/fixers/bad_order.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixBadOrder(BaseFix):
4 |
5 | order = "crazy"
6 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/gb18030.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/cjkencodings/gb18030.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/README.txt:
--------------------------------------------------------------------------------
1 | This directory exists so that 3rd party packages can be installed
2 | here. Read the source for site.py for more details.
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/setuptools-3.3.dist-info/requires.txt.orig:
--------------------------------------------------------------------------------
1 |
2 |
3 | [ssl:sys_platform=='win32']
4 | wincertstore==0.2
5 |
6 | [certs]
7 | certifi==1.0.1
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/big5hkscs.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/test/cjkencodings/big5hkscs.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/shift_jis.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/test/cjkencodings/shift_jis.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/xml/parsers/expat.py:
--------------------------------------------------------------------------------
1 | """Interface to the Expat non-validating XML parser."""
2 | __version__ = '$Revision: 17640 $'
3 |
4 | from pyexpat import *
5 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/README.txt:
--------------------------------------------------------------------------------
1 | This directory exists so that 3rd party packages can be installed
2 | here. Read the source for site.py for more details.
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/setuptools-3.3.dist-info/requires.txt.orig:
--------------------------------------------------------------------------------
1 |
2 |
3 | [ssl:sys_platform=='win32']
4 | wincertstore==0.2
5 |
6 | [certs]
7 | certifi==1.0.1
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/big5hkscs.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/cjkencodings/big5hkscs.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/shift_jis.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/cjkencodings/shift_jis.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/site-packages/README.txt:
--------------------------------------------------------------------------------
1 | This directory exists so that 3rd party packages can be installed
2 | here. Read the source for site.py for more details.
3 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/site-packages/README.txt:
--------------------------------------------------------------------------------
1 | This directory exists so that 3rd party packages can be installed
2 | here. Read the source for site.py for more details.
3 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/big5hkscs.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/test/cjkencodings/big5hkscs.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/shift_jis.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/test/cjkencodings/shift_jis.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/xml/parsers/expat.py:
--------------------------------------------------------------------------------
1 | """Interface to the Expat non-validating XML parser."""
2 | __version__ = '$Revision: 17640 $'
3 |
4 | from pyexpat import *
5 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/site-packages/README.txt:
--------------------------------------------------------------------------------
1 | This directory exists so that 3rd party packages can be installed
2 | here. Read the source for site.py for more details.
3 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/big5hkscs.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/cjkencodings/big5hkscs.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/shift_jis.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/cjkencodings/shift_jis.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/site-packages/README.txt:
--------------------------------------------------------------------------------
1 | This directory exists so that 3rd party packages can be installed
2 | here. Read the source for site.py for more details.
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/curses/panel.py:
--------------------------------------------------------------------------------
1 | """curses.panel
2 |
3 | Module for using panels with curses.
4 | """
5 |
6 | __revision__ = "$Id$"
7 |
8 | from _curses_panel import *
9 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/euc_jisx0213.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/test/cjkencodings/euc_jisx0213.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/Grammar3.2.5.final.0.pickle:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/lib2to3/Grammar3.2.5.final.0.pickle
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/euc_jisx0213.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/cjkencodings/euc_jisx0213.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/lib2to3/Grammar3.3.5.final.0.pickle:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/Lib/lib2to3/Grammar3.3.5.final.0.pickle
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/curses/panel.py:
--------------------------------------------------------------------------------
1 | """curses.panel
2 |
3 | Module for using panels with curses.
4 | """
5 |
6 | __revision__ = "$Id$"
7 |
8 | from _curses_panel import *
9 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/euc_jisx0213.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/test/cjkencodings/euc_jisx0213.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/Grammar3.2.5.final.0.pickle:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/lib2to3/Grammar3.2.5.final.0.pickle
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/euc_jisx0213.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/cjkencodings/euc_jisx0213.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/lib2to3/Grammar3.3.5.final.0.pickle:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/Lib/lib2to3/Grammar3.3.5.final.0.pickle
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip/_vendor/requests/packages/urllib3/packages/__init__.py:
--------------------------------------------------------------------------------
1 | from __future__ import absolute_import
2 |
3 | from . import ssl_match_hostname
4 |
5 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/shift_jisx0213.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py27/Lib/test/cjkencodings/shift_jisx0213.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip/_vendor/requests/packages/urllib3/packages/__init__.py:
--------------------------------------------------------------------------------
1 | from __future__ import absolute_import
2 |
3 | from . import ssl_match_hostname
4 |
5 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/shift_jisx0213.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/cjkencodings/shift_jisx0213.txt
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/encoded_modules/module_koi8_r.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/encoded_modules/module_koi8_r.py
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/shift_jisx0213.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py27/Lib/test/cjkencodings/shift_jisx0213.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/shift_jisx0213.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/cjkencodings/shift_jisx0213.txt
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/encoded_modules/module_koi8_r.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/encoded_modules/module_koi8_r.py
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip-1.5.4.dist-info/WHEEL:
--------------------------------------------------------------------------------
1 | Wheel-Version: 1.0
2 | Generator: bdist_wheel (0.22.0)
3 | Root-Is-Purelib: true
4 | Tag: py2-none-any
5 | Tag: py3-none-any
6 |
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip/__main__.py:
--------------------------------------------------------------------------------
1 | import sys
2 | from .runner import run
3 |
4 | if __name__ == '__main__':
5 | exit = run()
6 | if exit:
7 | sys.exit(exit)
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip/status_codes.py:
--------------------------------------------------------------------------------
1 | SUCCESS = 0
2 | ERROR = 1
3 | UNKNOWN_ERROR = 2
4 | VIRTUALENV_NOT_FOUND = 3
5 | PREVIOUS_BUILD_DIR_ERROR = 4
6 | NO_MATCHES_FOUND = 23
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/xmltestdata/simple.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | text
4 | texttail
5 |
6 |
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/PatternGrammar3.2.5.final.0.pickle:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/lib2to3/PatternGrammar3.2.5.final.0.pickle
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip-1.5.4.dist-info/WHEEL:
--------------------------------------------------------------------------------
1 | Wheel-Version: 1.0
2 | Generator: bdist_wheel (0.22.0)
3 | Root-Is-Purelib: true
4 | Tag: py2-none-any
5 | Tag: py3-none-any
6 |
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip/__main__.py:
--------------------------------------------------------------------------------
1 | import sys
2 | from .runner import run
3 |
4 | if __name__ == '__main__':
5 | exit = run()
6 | if exit:
7 | sys.exit(exit)
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip/status_codes.py:
--------------------------------------------------------------------------------
1 | SUCCESS = 0
2 | ERROR = 1
3 | UNKNOWN_ERROR = 2
4 | VIRTUALENV_NOT_FOUND = 3
5 | PREVIOUS_BUILD_DIR_ERROR = 4
6 | NO_MATCHES_FOUND = 23
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/encoded_modules/module_iso_8859_1.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py32/Lib/test/encoded_modules/module_iso_8859_1.py
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/xmltestdata/simple.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | text
4 | texttail
5 |
6 |
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/lib2to3/PatternGrammar3.3.5.final.0.pickle:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win32-py33/Lib/lib2to3/PatternGrammar3.3.5.final.0.pickle
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/xmltestdata/simple.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | text
4 | texttail
5 |
6 |
7 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/PatternGrammar3.2.5.final.0.pickle:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/lib2to3/PatternGrammar3.2.5.final.0.pickle
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/encoded_modules/module_iso_8859_1.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py32/Lib/test/encoded_modules/module_iso_8859_1.py
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/xmltestdata/simple.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | text
4 | texttail
5 |
6 |
7 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/lib2to3/PatternGrammar3.3.5.final.0.pickle:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nwcell/psycopg2-windows/HEAD/tests/pythons/win64-py33/Lib/lib2to3/PatternGrammar3.3.5.final.0.pickle
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/easy_install.py:
--------------------------------------------------------------------------------
1 | """Run the EasyInstall command"""
2 |
3 | if __name__ == '__main__':
4 | from setuptools.command.easy_install import main
5 | main()
6 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/setuptools-3.3.dist-info/WHEEL:
--------------------------------------------------------------------------------
1 | Wheel-Version: 1.0
2 | Generator: bdist_wheel (0.22.0)
3 | Root-Is-Purelib: true
4 | Tag: py2-none-any
5 | Tag: py3-none-any
6 |
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/distutils/debug.py:
--------------------------------------------------------------------------------
1 | import os
2 |
3 | # If DISTUTILS_DEBUG is anything other than the empty string, we run in
4 | # debug mode.
5 | DEBUG = os.environ.get('DISTUTILS_DEBUG')
6 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/easy_install.py:
--------------------------------------------------------------------------------
1 | """Run the EasyInstall command"""
2 |
3 | if __name__ == '__main__':
4 | from setuptools.command.easy_install import main
5 | main()
6 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/setuptools-3.3.dist-info/WHEEL:
--------------------------------------------------------------------------------
1 | Wheel-Version: 1.0
2 | Generator: bdist_wheel (0.22.0)
3 | Root-Is-Purelib: true
4 | Tag: py2-none-any
5 | Tag: py3-none-any
6 |
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/distutils/debug.py:
--------------------------------------------------------------------------------
1 | import os
2 |
3 | # If DISTUTILS_DEBUG is anything other than the empty string, we run in
4 | # debug mode.
5 | DEBUG = os.environ.get('DISTUTILS_DEBUG')
6 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/distutils/debug.py:
--------------------------------------------------------------------------------
1 | import os
2 |
3 | # If DISTUTILS_DEBUG is anything other than the empty string, we run in
4 | # debug mode.
5 | DEBUG = os.environ.get('DISTUTILS_DEBUG')
6 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/distutils/debug.py:
--------------------------------------------------------------------------------
1 | import os
2 |
3 | # If DISTUTILS_DEBUG is anything other than the empty string, we run in
4 | # debug mode.
5 | DEBUG = os.environ.get('DISTUTILS_DEBUG')
6 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/pgen2/__init__.py:
--------------------------------------------------------------------------------
1 | # Copyright 2004-2005 Elemental Security, Inc. All Rights Reserved.
2 | # Licensed to PSF under a Contributor Agreement.
3 |
4 | """The pgen2 package."""
5 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/pgen2/__init__.py:
--------------------------------------------------------------------------------
1 | # Copyright 2004-2005 Elemental Security, Inc. All Rights Reserved.
2 | # Licensed to PSF under a Contributor Agreement.
3 |
4 | """The pgen2 package."""
5 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/lib2to3/pgen2/__init__.py:
--------------------------------------------------------------------------------
1 | # Copyright 2004-2005 Elemental Security, Inc. All Rights Reserved.
2 | # Licensed to PSF under a Contributor Agreement.
3 |
4 | """The pgen2 package."""
5 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/pgen2/__init__.py:
--------------------------------------------------------------------------------
1 | # Copyright 2004-2005 Elemental Security, Inc. All Rights Reserved.
2 | # Licensed to PSF under a Contributor Agreement.
3 |
4 | """The pgen2 package."""
5 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/pgen2/__init__.py:
--------------------------------------------------------------------------------
1 | # Copyright 2004-2005 Elemental Security, Inc. All Rights Reserved.
2 | # Licensed to PSF under a Contributor Agreement.
3 |
4 | """The pgen2 package."""
5 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/lib2to3/pgen2/__init__.py:
--------------------------------------------------------------------------------
1 | # Copyright 2004-2005 Elemental Security, Inc. All Rights Reserved.
2 | # Licensed to PSF under a Contributor Agreement.
3 |
4 | """The pgen2 package."""
5 |
--------------------------------------------------------------------------------
/tests/test.py:
--------------------------------------------------------------------------------
1 | import sys
2 | from pprint import pprint
3 | try:
4 | import psycopg2
5 | pprint('Success: Python %s' % sys.version)
6 | except ImportError:
7 | pprint('Failure: Python %s' % sys.version)
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/tests/data/fixers/myfixes/fix_first.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixFirst(BaseFix):
4 | run_order = 1
5 |
6 | def match(self, node): return False
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/tests/data/fixers/myfixes/fix_first.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixFirst(BaseFix):
4 | run_order = 1
5 |
6 | def match(self, node): return False
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/subprocessdata/input_reader.py:
--------------------------------------------------------------------------------
1 | """When called as a script, consumes the input"""
2 |
3 | import sys
4 |
5 | if __name__ == "__main__":
6 | for line in sys.stdin:
7 | pass
8 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/tests/data/fixers/myfixes/fix_first.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixFirst(BaseFix):
4 | run_order = 1
5 |
6 | def match(self, node): return False
7 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/tests/data/fixers/myfixes/fix_first.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixFirst(BaseFix):
4 | run_order = 1
5 |
6 | def match(self, node): return False
7 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/subprocessdata/input_reader.py:
--------------------------------------------------------------------------------
1 | """When called as a script, consumes the input"""
2 |
3 | import sys
4 |
5 | if __name__ == "__main__":
6 | for line in sys.stdin:
7 | pass
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/tests/data/fixers/myfixes/fix_explicit.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixExplicit(BaseFix):
4 | explicit = True
5 |
6 | def match(self): return False
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/tests/data/fixers/myfixes/fix_last.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixLast(BaseFix):
4 |
5 | run_order = 10
6 |
7 | def match(self, node): return False
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/tests/data/fixers/myfixes/fix_explicit.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixExplicit(BaseFix):
4 | explicit = True
5 |
6 | def match(self): return False
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/tests/data/fixers/myfixes/fix_last.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixLast(BaseFix):
4 |
5 | run_order = 10
6 |
7 | def match(self, node): return False
8 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/tests/data/fixers/myfixes/fix_explicit.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixExplicit(BaseFix):
4 | explicit = True
5 |
6 | def match(self): return False
7 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/tests/data/fixers/myfixes/fix_last.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixLast(BaseFix):
4 |
5 | run_order = 10
6 |
7 | def match(self, node): return False
8 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/tests/data/fixers/myfixes/fix_explicit.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixExplicit(BaseFix):
4 | explicit = True
5 |
6 | def match(self): return False
7 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/tests/data/fixers/myfixes/fix_last.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixLast(BaseFix):
4 |
5 | run_order = 10
6 |
7 | def match(self, node): return False
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/tests/data/fixers/myfixes/fix_preorder.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixPreorder(BaseFix):
4 | order = "pre"
5 |
6 | def match(self, node): return False
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/importlib/test/builtin/util.py:
--------------------------------------------------------------------------------
1 | import sys
2 |
3 | assert 'errno' in sys.builtin_module_names
4 | NAME = 'errno'
5 |
6 | assert 'importlib' not in sys.builtin_module_names
7 | BAD_NAME = 'importlib'
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/importlib/util.py:
--------------------------------------------------------------------------------
1 | """Utility code for constructing importers, etc."""
2 |
3 | from ._bootstrap import module_for_loader
4 | from ._bootstrap import set_loader
5 | from ._bootstrap import set_package
6 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/tests/data/fixers/myfixes/fix_preorder.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixPreorder(BaseFix):
4 | order = "pre"
5 |
6 | def match(self, node): return False
7 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/tests/data/fixers/myfixes/fix_preorder.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixPreorder(BaseFix):
4 | order = "pre"
5 |
6 | def match(self, node): return False
7 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/importlib/test/builtin/util.py:
--------------------------------------------------------------------------------
1 | import sys
2 |
3 | assert 'errno' in sys.builtin_module_names
4 | NAME = 'errno'
5 |
6 | assert 'importlib' not in sys.builtin_module_names
7 | BAD_NAME = 'importlib'
8 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/importlib/util.py:
--------------------------------------------------------------------------------
1 | """Utility code for constructing importers, etc."""
2 |
3 | from ._bootstrap import module_for_loader
4 | from ._bootstrap import set_loader
5 | from ._bootstrap import set_package
6 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/tests/data/fixers/myfixes/fix_preorder.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 |
3 | class FixPreorder(BaseFix):
4 | order = "pre"
5 |
6 | def match(self, node): return False
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/distutils/debug.py:
--------------------------------------------------------------------------------
1 | import os
2 |
3 | __revision__ = "$Id$"
4 |
5 | # If DISTUTILS_DEBUG is anything other than the empty string, we run in
6 | # debug mode.
7 | DEBUG = os.environ.get('DISTUTILS_DEBUG')
8 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/distutils/debug.py:
--------------------------------------------------------------------------------
1 | import os
2 |
3 | __revision__ = "$Id$"
4 |
5 | # If DISTUTILS_DEBUG is anything other than the empty string, we run in
6 | # debug mode.
7 | DEBUG = os.environ.get('DISTUTILS_DEBUG')
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/xmltestdata/simple-ns.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | text
5 | texttail
6 |
7 |
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/subprocessdata/qcat.py:
--------------------------------------------------------------------------------
1 | """When ran as a script, simulates cat with no arguments."""
2 |
3 | import sys
4 |
5 | if __name__ == "__main__":
6 | for line in sys.stdin:
7 | sys.stdout.write(line)
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/xmltestdata/simple-ns.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | text
5 | texttail
6 |
7 |
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/venv/__main__.py:
--------------------------------------------------------------------------------
1 | import sys
2 | from . import main
3 |
4 | rc = 1
5 | try:
6 | main()
7 | rc = 0
8 | except Exception as e:
9 | print('Error: %s' % e, file=sys.stderr)
10 | sys.exit(rc)
11 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/xmltestdata/simple-ns.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | text
5 | texttail
6 |
7 |
8 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/subprocessdata/qcat.py:
--------------------------------------------------------------------------------
1 | """When ran as a script, simulates cat with no arguments."""
2 |
3 | import sys
4 |
5 | if __name__ == "__main__":
6 | for line in sys.stdin:
7 | sys.stdout.write(line)
8 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/xmltestdata/simple-ns.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | text
5 | texttail
6 |
7 |
8 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/venv/__main__.py:
--------------------------------------------------------------------------------
1 | import sys
2 | from . import main
3 |
4 | rc = 1
5 | try:
6 | main()
7 | rc = 0
8 | except Exception as e:
9 | print('Error: %s' % e, file=sys.stderr)
10 | sys.exit(rc)
11 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/tracedmodules/testmod.py:
--------------------------------------------------------------------------------
1 | def func(x):
2 | b = x + 1
3 | return b + 2
4 |
5 | def func2():
6 | """Test function for issue 9936 """
7 | return (1,
8 | 2,
9 | 3)
10 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/tracedmodules/testmod.py:
--------------------------------------------------------------------------------
1 | def func(x):
2 | b = x + 1
3 | return b + 2
4 |
5 | def func2():
6 | """Test function for issue 9936 """
7 | return (1,
8 | 2,
9 | 3)
10 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/tracedmodules/testmod.py:
--------------------------------------------------------------------------------
1 | def func(x):
2 | b = x + 1
3 | return b + 2
4 |
5 | def func2():
6 | """Test function for issue 9936 """
7 | return (1,
8 | 2,
9 | 3)
10 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/tracedmodules/testmod.py:
--------------------------------------------------------------------------------
1 | def func(x):
2 | b = x + 1
3 | return b + 2
4 |
5 | def func2():
6 | """Test function for issue 9936 """
7 | return (1,
8 | 2,
9 | 3)
10 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/setuptools/script template.py:
--------------------------------------------------------------------------------
1 | # EASY-INSTALL-SCRIPT: %(spec)r,%(script_name)r
2 | __requires__ = """%(spec)r"""
3 | import pkg_resources
4 | pkg_resources.run_script("""%(spec)r""", """%(script_name)r""")
5 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/xml/parsers/__init__.py:
--------------------------------------------------------------------------------
1 | """Python interfaces to XML parsers.
2 |
3 | This package contains one module:
4 |
5 | expat -- Python wrapper for James Clark's Expat parser, with namespace
6 | support.
7 |
8 | """
9 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/importlib/machinery.py:
--------------------------------------------------------------------------------
1 | """The machinery of importlib: finders, loaders, hooks, etc."""
2 |
3 | from ._bootstrap import BuiltinImporter
4 | from ._bootstrap import FrozenImporter
5 | from ._bootstrap import PathFinder
6 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/setuptools/script template.py:
--------------------------------------------------------------------------------
1 | # EASY-INSTALL-SCRIPT: %(spec)r,%(script_name)r
2 | __requires__ = """%(spec)r"""
3 | import pkg_resources
4 | pkg_resources.run_script("""%(spec)r""", """%(script_name)r""")
5 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/xml/parsers/__init__.py:
--------------------------------------------------------------------------------
1 | """Python interfaces to XML parsers.
2 |
3 | This package contains one module:
4 |
5 | expat -- Python wrapper for James Clark's Expat parser, with namespace
6 | support.
7 |
8 | """
9 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/xml/parsers/__init__.py:
--------------------------------------------------------------------------------
1 | """Python interfaces to XML parsers.
2 |
3 | This package contains one module:
4 |
5 | expat -- Python wrapper for James Clark's Expat parser, with namespace
6 | support.
7 |
8 | """
9 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/xml/parsers/__init__.py:
--------------------------------------------------------------------------------
1 | """Python interfaces to XML parsers.
2 |
3 | This package contains one module:
4 |
5 | expat -- Python wrapper for James Clark's Expat parser, with namespace
6 | support.
7 |
8 | """
9 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/importlib/machinery.py:
--------------------------------------------------------------------------------
1 | """The machinery of importlib: finders, loaders, hooks, etc."""
2 |
3 | from ._bootstrap import BuiltinImporter
4 | from ._bootstrap import FrozenImporter
5 | from ._bootstrap import PathFinder
6 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/xml/parsers/__init__.py:
--------------------------------------------------------------------------------
1 | """Python interfaces to XML parsers.
2 |
3 | This package contains one module:
4 |
5 | expat -- Python wrapper for James Clark's Expat parser, with namespace
6 | support.
7 |
8 | """
9 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/xml/parsers/__init__.py:
--------------------------------------------------------------------------------
1 | """Python interfaces to XML parsers.
2 |
3 | This package contains one module:
4 |
5 | expat -- Python wrapper for James Clark's Expat parser, with namespace
6 | support.
7 |
8 | """
9 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip/_vendor/requests/packages/charade/__main__.py:
--------------------------------------------------------------------------------
1 | '''
2 | support ';python -m charade [file2] ...' package execution syntax (2.7+)
3 | '''
4 |
5 | from charade import charade_cli
6 |
7 | charade_cli()
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/gb2312-utf8.txt:
--------------------------------------------------------------------------------
1 | Python(派森)语言是一种功能强大而完善的通用型计算机程序设计语言,
2 | 已经具有十多年的发展历史,成熟且稳定。这种语言具有非常简捷而清晰
3 | 的语法特点,适合完成各种高层任务,几乎可以在所有的操作系统中
4 | 运行。这种语言简单而强大,适合各种人士学习使用。目前,基于这
5 | 种语言的相关技术正在飞速的发展,用户数量急剧扩大,相关的资源非常多。
6 |
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/ctypes/macholib/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Enough Mach-O to make your head spin.
3 |
4 | See the relevant header files in /usr/include/mach-o
5 |
6 | And also Apple's documentation.
7 | """
8 |
9 | __version__ = '1.0'
10 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip/_vendor/requests/packages/charade/__main__.py:
--------------------------------------------------------------------------------
1 | '''
2 | support ';python -m charade [file2] ...' package execution syntax (2.7+)
3 | '''
4 |
5 | from charade import charade_cli
6 |
7 | charade_cli()
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/gb2312-utf8.txt:
--------------------------------------------------------------------------------
1 | Python(派森)语言是一种功能强大而完善的通用型计算机程序设计语言,
2 | 已经具有十多年的发展历史,成熟且稳定。这种语言具有非常简捷而清晰
3 | 的语法特点,适合完成各种高层任务,几乎可以在所有的操作系统中
4 | 运行。这种语言简单而强大,适合各种人士学习使用。目前,基于这
5 | 种语言的相关技术正在飞速的发展,用户数量急剧扩大,相关的资源非常多。
6 |
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/ctypes/macholib/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Enough Mach-O to make your head spin.
3 |
4 | See the relevant header files in /usr/include/mach-o
5 |
6 | And also Apple's documentation.
7 | """
8 |
9 | __version__ = '1.0'
10 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/gb2312-utf8.txt:
--------------------------------------------------------------------------------
1 | Python(派森)语言是一种功能强大而完善的通用型计算机程序设计语言,
2 | 已经具有十多年的发展历史,成熟且稳定。这种语言具有非常简捷而清晰
3 | 的语法特点,适合完成各种高层任务,几乎可以在所有的操作系统中
4 | 运行。这种语言简单而强大,适合各种人士学习使用。目前,基于这
5 | 种语言的相关技术正在飞速的发展,用户数量急剧扩大,相关的资源非常多。
6 |
7 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/ctypes/macholib/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Enough Mach-O to make your head spin.
3 |
4 | See the relevant header files in /usr/include/mach-o
5 |
6 | And also Apple's documentation.
7 | """
8 |
9 | __version__ = '1.0'
10 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/gb2312-utf8.txt:
--------------------------------------------------------------------------------
1 | Python(派森)语言是一种功能强大而完善的通用型计算机程序设计语言,
2 | 已经具有十多年的发展历史,成熟且稳定。这种语言具有非常简捷而清晰
3 | 的语法特点,适合完成各种高层任务,几乎可以在所有的操作系统中
4 | 运行。这种语言简单而强大,适合各种人士学习使用。目前,基于这
5 | 种语言的相关技术正在飞速的发展,用户数量急剧扩大,相关的资源非常多。
6 |
7 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/ctypes/macholib/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | Enough Mach-O to make your head spin.
3 |
4 | See the relevant header files in /usr/include/mach-o
5 |
6 | And also Apple's documentation.
7 | """
8 |
9 | __version__ = '1.0'
10 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/turtledemo/turtle.cfg:
--------------------------------------------------------------------------------
1 | width = 800
2 | height = 600
3 | canvwidth = 1200
4 | canvheight = 900
5 | shape = arrow
6 | mode = standard
7 | resizemode = auto
8 | fillcolor = ""
9 | title = Python turtle graphics demo.
10 |
11 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/turtledemo/turtle.cfg:
--------------------------------------------------------------------------------
1 | width = 800
2 | height = 600
3 | canvwidth = 1200
4 | canvheight = 900
5 | shape = arrow
6 | mode = standard
7 | resizemode = auto
8 | fillcolor = ""
9 | title = Python turtle graphics demo.
10 |
11 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/wsgiref.egg-info:
--------------------------------------------------------------------------------
1 | Metadata-Version: 1.0
2 | Name: wsgiref
3 | Version: 0.1.2
4 | Summary: WSGI (PEP 333) Reference Library
5 | Author: Phillip J. Eby
6 | Author-email: web-sig@python.org
7 | License: PSF or ZPL
8 | Platform: UNKNOWN
9 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/wsgiref.egg-info:
--------------------------------------------------------------------------------
1 | Metadata-Version: 1.0
2 | Name: wsgiref
3 | Version: 0.1.2
4 | Summary: WSGI (PEP 333) Reference Library
5 | Author: Phillip J. Eby
6 | Author-email: web-sig@python.org
7 | License: PSF or ZPL
8 | Platform: UNKNOWN
9 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip/commands/unzip.py:
--------------------------------------------------------------------------------
1 | from pip.commands.zip import ZipCommand
2 |
3 |
4 | class UnzipCommand(ZipCommand):
5 | """Unzip individual packages."""
6 | name = 'unzip'
7 | summary = 'DEPRECATED. Unzip individual packages.'
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/tracedmodules/__init__.py:
--------------------------------------------------------------------------------
1 | """This package contains modules that help testing the trace.py module. Note
2 | that the exact location of functions in these modules is important, as trace.py
3 | takes the real line numbers into account.
4 | """
5 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip/commands/unzip.py:
--------------------------------------------------------------------------------
1 | from pip.commands.zip import ZipCommand
2 |
3 |
4 | class UnzipCommand(ZipCommand):
5 | """Unzip individual packages."""
6 | name = 'unzip'
7 | summary = 'DEPRECATED. Unzip individual packages.'
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/tracedmodules/__init__.py:
--------------------------------------------------------------------------------
1 | """This package contains modules that help testing the trace.py module. Note
2 | that the exact location of functions in these modules is important, as trace.py
3 | takes the real line numbers into account.
4 | """
5 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/tracedmodules/__init__.py:
--------------------------------------------------------------------------------
1 | """This package contains modules that help testing the trace.py module. Note
2 | that the exact location of functions in these modules is important, as trace.py
3 | takes the real line numbers into account.
4 | """
5 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/tracedmodules/__init__.py:
--------------------------------------------------------------------------------
1 | """This package contains modules that help testing the trace.py module. Note
2 | that the exact location of functions in these modules is important, as trace.py
3 | takes the real line numbers into account.
4 | """
5 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip/_vendor/colorama/__init__.py:
--------------------------------------------------------------------------------
1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.
2 | from .initialise import init, deinit, reinit
3 | from .ansi import Fore, Back, Style
4 | from .ansitowin32 import AnsiToWin32
5 |
6 | VERSION = '0.2.7'
7 |
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/setuptools-3.3.dist-info/dependency_links.txt:
--------------------------------------------------------------------------------
1 | https://pypi.python.org/packages/source/c/certifi/certifi-1.0.1.tar.gz#md5=45f5cb94b8af9e1df0f9450a8f61b790
2 | https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/cp949-utf8.txt:
--------------------------------------------------------------------------------
1 | 똠방각하 펲시콜라
2 |
3 | ㉯㉯납!! 因九月패믤릔궈 ⓡⓖ훀¿¿¿ 긍뒙 ⓔ뎨 ㉯. .
4 | 亞영ⓔ능횹 . . . . 서울뤄 뎐학乙 家훀 ! ! !ㅠ.ㅠ
5 | 흐흐흐 ㄱㄱㄱ☆ㅠ_ㅠ 어릨 탸콰긐 뎌응 칑九들乙 ㉯드긐
6 | 설릌 家훀 . . . . 굴애쉌 ⓔ궈 ⓡ릘㉱긐 因仁川女中까즼
7 | 와쒀훀 ! ! 亞영ⓔ 家능궈 ☆上관 없능궈능 亞능뒈훀 글애듴
8 | ⓡ려듀九 싀풔숴훀 어릨 因仁川女中싁⑨들앜!! ㉯㉯납♡ ⌒⌒*
9 |
10 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/johab-utf8.txt:
--------------------------------------------------------------------------------
1 | 똠방각하 펲시콜라
2 |
3 | ㉯㉯납!! 因九月패믤릔궈 ⓡⓖ훀¿¿¿ 긍뒙 ⓔ뎨 ㉯. .
4 | 亞영ⓔ능횹 . . . . 서울뤄 뎐학乙 家훀 ! ! !ㅠ.ㅠ
5 | 흐흐흐 ㄱㄱㄱ☆ㅠ_ㅠ 어릨 탸콰긐 뎌응 칑九들乙 ㉯드긐
6 | 설릌 家훀 . . . . 굴애쉌 ⓔ궈 ⓡ릘㉱긐 因仁川女中까즼
7 | 와쒀훀 ! ! 亞영ⓔ 家능궈 ☆上관 없능궈능 亞능뒈훀 글애듴
8 | ⓡ려듀九 싀풔숴훀 어릨 因仁川女中싁⑨들앜!! ㉯㉯납♡ ⌒⌒*
9 |
10 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip/_vendor/colorama/__init__.py:
--------------------------------------------------------------------------------
1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.
2 | from .initialise import init, deinit, reinit
3 | from .ansi import Fore, Back, Style
4 | from .ansitowin32 import AnsiToWin32
5 |
6 | VERSION = '0.2.7'
7 |
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/setuptools-3.3.dist-info/dependency_links.txt:
--------------------------------------------------------------------------------
1 | https://pypi.python.org/packages/source/c/certifi/certifi-1.0.1.tar.gz#md5=45f5cb94b8af9e1df0f9450a8f61b790
2 | https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/cp949-utf8.txt:
--------------------------------------------------------------------------------
1 | 똠방각하 펲시콜라
2 |
3 | ㉯㉯납!! 因九月패믤릔궈 ⓡⓖ훀¿¿¿ 긍뒙 ⓔ뎨 ㉯. .
4 | 亞영ⓔ능횹 . . . . 서울뤄 뎐학乙 家훀 ! ! !ㅠ.ㅠ
5 | 흐흐흐 ㄱㄱㄱ☆ㅠ_ㅠ 어릨 탸콰긐 뎌응 칑九들乙 ㉯드긐
6 | 설릌 家훀 . . . . 굴애쉌 ⓔ궈 ⓡ릘㉱긐 因仁川女中까즼
7 | 와쒀훀 ! ! 亞영ⓔ 家능궈 ☆上관 없능궈능 亞능뒈훀 글애듴
8 | ⓡ려듀九 싀풔숴훀 어릨 因仁川女中싁⑨들앜!! ㉯㉯납♡ ⌒⌒*
9 |
10 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/johab-utf8.txt:
--------------------------------------------------------------------------------
1 | 똠방각하 펲시콜라
2 |
3 | ㉯㉯납!! 因九月패믤릔궈 ⓡⓖ훀¿¿¿ 긍뒙 ⓔ뎨 ㉯. .
4 | 亞영ⓔ능횹 . . . . 서울뤄 뎐학乙 家훀 ! ! !ㅠ.ㅠ
5 | 흐흐흐 ㄱㄱㄱ☆ㅠ_ㅠ 어릨 탸콰긐 뎌응 칑九들乙 ㉯드긐
6 | 설릌 家훀 . . . . 굴애쉌 ⓔ궈 ⓡ릘㉱긐 因仁川女中까즼
7 | 와쒀훀 ! ! 亞영ⓔ 家능궈 ☆上관 없능궈능 亞능뒈훀 글애듴
8 | ⓡ려듀九 싀풔숴훀 어릨 因仁川女中싁⑨들앜!! ㉯㉯납♡ ⌒⌒*
9 |
10 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/cp949-utf8.txt:
--------------------------------------------------------------------------------
1 | 똠방각하 펲시콜라
2 |
3 | ㉯㉯납!! 因九月패믤릔궈 ⓡⓖ훀¿¿¿ 긍뒙 ⓔ뎨 ㉯. .
4 | 亞영ⓔ능횹 . . . . 서울뤄 뎐학乙 家훀 ! ! !ㅠ.ㅠ
5 | 흐흐흐 ㄱㄱㄱ☆ㅠ_ㅠ 어릨 탸콰긐 뎌응 칑九들乙 ㉯드긐
6 | 설릌 家훀 . . . . 굴애쉌 ⓔ궈 ⓡ릘㉱긐 因仁川女中까즼
7 | 와쒀훀 ! ! 亞영ⓔ 家능궈 ☆上관 없능궈능 亞능뒈훀 글애듴
8 | ⓡ려듀九 싀풔숴훀 어릨 因仁川女中싁⑨들앜!! ㉯㉯납♡ ⌒⌒*
9 |
10 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/johab-utf8.txt:
--------------------------------------------------------------------------------
1 | 똠방각하 펲시콜라
2 |
3 | ㉯㉯납!! 因九月패믤릔궈 ⓡⓖ훀¿¿¿ 긍뒙 ⓔ뎨 ㉯. .
4 | 亞영ⓔ능횹 . . . . 서울뤄 뎐학乙 家훀 ! ! !ㅠ.ㅠ
5 | 흐흐흐 ㄱㄱㄱ☆ㅠ_ㅠ 어릨 탸콰긐 뎌응 칑九들乙 ㉯드긐
6 | 설릌 家훀 . . . . 굴애쉌 ⓔ궈 ⓡ릘㉱긐 因仁川女中까즼
7 | 와쒀훀 ! ! 亞영ⓔ 家능궈 ☆上관 없능궈능 亞능뒈훀 글애듴
8 | ⓡ려듀九 싀풔숴훀 어릨 因仁川女中싁⑨들앜!! ㉯㉯납♡ ⌒⌒*
9 |
10 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/cp949-utf8.txt:
--------------------------------------------------------------------------------
1 | 똠방각하 펲시콜라
2 |
3 | ㉯㉯납!! 因九月패믤릔궈 ⓡⓖ훀¿¿¿ 긍뒙 ⓔ뎨 ㉯. .
4 | 亞영ⓔ능횹 . . . . 서울뤄 뎐학乙 家훀 ! ! !ㅠ.ㅠ
5 | 흐흐흐 ㄱㄱㄱ☆ㅠ_ㅠ 어릨 탸콰긐 뎌응 칑九들乙 ㉯드긐
6 | 설릌 家훀 . . . . 굴애쉌 ⓔ궈 ⓡ릘㉱긐 因仁川女中까즼
7 | 와쒀훀 ! ! 亞영ⓔ 家능궈 ☆上관 없능궈능 亞능뒈훀 글애듴
8 | ⓡ려듀九 싀풔숴훀 어릨 因仁川女中싁⑨들앜!! ㉯㉯납♡ ⌒⌒*
9 |
10 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/johab-utf8.txt:
--------------------------------------------------------------------------------
1 | 똠방각하 펲시콜라
2 |
3 | ㉯㉯납!! 因九月패믤릔궈 ⓡⓖ훀¿¿¿ 긍뒙 ⓔ뎨 ㉯. .
4 | 亞영ⓔ능횹 . . . . 서울뤄 뎐학乙 家훀 ! ! !ㅠ.ㅠ
5 | 흐흐흐 ㄱㄱㄱ☆ㅠ_ㅠ 어릨 탸콰긐 뎌응 칑九들乙 ㉯드긐
6 | 설릌 家훀 . . . . 굴애쉌 ⓔ궈 ⓡ릘㉱긐 因仁川女中까즼
7 | 와쒀훀 ! ! 亞영ⓔ 家능궈 ☆上관 없능궈능 亞능뒈훀 글애듴
8 | ⓡ려듀九 싀풔숴훀 어릨 因仁川女中싁⑨들앜!! ㉯㉯납♡ ⌒⌒*
9 |
10 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/setuptools-3.3.dist-info/dependency_links.txt.orig:
--------------------------------------------------------------------------------
1 | https://pypi.python.org/packages/source/c/certifi/certifi-1.0.1.tar.gz#md5=45f5cb94b8af9e1df0f9450a8f61b790
2 | https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/setuptools-3.3.dist-info/dependency_links.txt.orig:
--------------------------------------------------------------------------------
1 | https://pypi.python.org/packages/source/c/certifi/certifi-1.0.1.tar.gz#md5=45f5cb94b8af9e1df0f9450a8f61b790
2 | https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2
3 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/iso2022_kr-utf8.txt:
--------------------------------------------------------------------------------
1 | ◎ 파이썬(Python)은 배우기 쉽고, 강력한 프로그래밍 언어입니다. 파이썬은
2 | 효율적인 고수준 데이터 구조와 간단하지만 효율적인 객체지향프로그래밍을
3 | 지원합니다. 파이썬의 우아(優雅)한 문법과 동적 타이핑, 그리고 인터프리팅
4 | 환경은 파이썬을 스크립팅과 여러 분야에서와 대부분의 플랫폼에서의 빠른
5 | 애플리케이션 개발을 할 수 있는 이상적인 언어로 만들어줍니다.
6 |
7 | ☆첫가끝: 날아라 쓩~ 큼! 금없이 전니다. 그런거 다.
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/iso2022_kr-utf8.txt:
--------------------------------------------------------------------------------
1 | ◎ 파이썬(Python)은 배우기 쉽고, 강력한 프로그래밍 언어입니다. 파이썬은
2 | 효율적인 고수준 데이터 구조와 간단하지만 효율적인 객체지향프로그래밍을
3 | 지원합니다. 파이썬의 우아(優雅)한 문법과 동적 타이핑, 그리고 인터프리팅
4 | 환경은 파이썬을 스크립팅과 여러 분야에서와 대부분의 플랫폼에서의 빠른
5 | 애플리케이션 개발을 할 수 있는 이상적인 언어로 만들어줍니다.
6 |
7 | ☆첫가끝: 날아라 쓩~ 큼! 금없이 전니다. 그런거 다.
8 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/iso2022_kr-utf8.txt:
--------------------------------------------------------------------------------
1 | ◎ 파이썬(Python)은 배우기 쉽고, 강력한 프로그래밍 언어입니다. 파이썬은
2 | 효율적인 고수준 데이터 구조와 간단하지만 효율적인 객체지향프로그래밍을
3 | 지원합니다. 파이썬의 우아(優雅)한 문법과 동적 타이핑, 그리고 인터프리팅
4 | 환경은 파이썬을 스크립팅과 여러 분야에서와 대부분의 플랫폼에서의 빠른
5 | 애플리케이션 개발을 할 수 있는 이상적인 언어로 만들어줍니다.
6 |
7 | ☆첫가끝: 날아라 쓩~ 큼! 금없이 전니다. 그런거 다.
8 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/iso2022_kr-utf8.txt:
--------------------------------------------------------------------------------
1 | ◎ 파이썬(Python)은 배우기 쉽고, 강력한 프로그래밍 언어입니다. 파이썬은
2 | 효율적인 고수준 데이터 구조와 간단하지만 효율적인 객체지향프로그래밍을
3 | 지원합니다. 파이썬의 우아(優雅)한 문법과 동적 타이핑, 그리고 인터프리팅
4 | 환경은 파이썬을 스크립팅과 여러 분야에서와 대부분의 플랫폼에서의 빠른
5 | 애플리케이션 개발을 할 수 있는 이상적인 언어로 만들어줍니다.
6 |
7 | ☆첫가끝: 날아라 쓩~ 큼! 금없이 전니다. 그런거 다.
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/euc_kr-utf8.txt:
--------------------------------------------------------------------------------
1 | ◎ 파이썬(Python)은 배우기 쉽고, 강력한 프로그래밍 언어입니다. 파이썬은
2 | 효율적인 고수준 데이터 구조와 간단하지만 효율적인 객체지향프로그래밍을
3 | 지원합니다. 파이썬의 우아(優雅)한 문법과 동적 타이핑, 그리고 인터프리팅
4 | 환경은 파이썬을 스크립팅과 여러 분야에서와 대부분의 플랫폼에서의 빠른
5 | 애플리케이션 개발을 할 수 있는 이상적인 언어로 만들어줍니다.
6 |
7 | ☆첫가끝: 날아라 쓔쓔쓩~ 닁큼! 뜽금없이 전홥니다. 뷁. 그런거 읎다.
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/euc_kr-utf8.txt:
--------------------------------------------------------------------------------
1 | ◎ 파이썬(Python)은 배우기 쉽고, 강력한 프로그래밍 언어입니다. 파이썬은
2 | 효율적인 고수준 데이터 구조와 간단하지만 효율적인 객체지향프로그래밍을
3 | 지원합니다. 파이썬의 우아(優雅)한 문법과 동적 타이핑, 그리고 인터프리팅
4 | 환경은 파이썬을 스크립팅과 여러 분야에서와 대부분의 플랫폼에서의 빠른
5 | 애플리케이션 개발을 할 수 있는 이상적인 언어로 만들어줍니다.
6 |
7 | ☆첫가끝: 날아라 쓔쓔쓩~ 닁큼! 뜽금없이 전홥니다. 뷁. 그런거 읎다.
8 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/xml/parsers/expat.py:
--------------------------------------------------------------------------------
1 | """Interface to the Expat non-validating XML parser."""
2 | import sys
3 |
4 | from pyexpat import *
5 |
6 | # provide pyexpat submodules as xml.parsers.expat submodules
7 | sys.modules['xml.parsers.expat.model'] = model
8 | sys.modules['xml.parsers.expat.errors'] = errors
9 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/euc_kr-utf8.txt:
--------------------------------------------------------------------------------
1 | ◎ 파이썬(Python)은 배우기 쉽고, 강력한 프로그래밍 언어입니다. 파이썬은
2 | 효율적인 고수준 데이터 구조와 간단하지만 효율적인 객체지향프로그래밍을
3 | 지원합니다. 파이썬의 우아(優雅)한 문법과 동적 타이핑, 그리고 인터프리팅
4 | 환경은 파이썬을 스크립팅과 여러 분야에서와 대부분의 플랫폼에서의 빠른
5 | 애플리케이션 개발을 할 수 있는 이상적인 언어로 만들어줍니다.
6 |
7 | ☆첫가끝: 날아라 쓔쓔쓩~ 닁큼! 뜽금없이 전홥니다. 뷁. 그런거 읎다.
8 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/euc_kr-utf8.txt:
--------------------------------------------------------------------------------
1 | ◎ 파이썬(Python)은 배우기 쉽고, 강력한 프로그래밍 언어입니다. 파이썬은
2 | 효율적인 고수준 데이터 구조와 간단하지만 효율적인 객체지향프로그래밍을
3 | 지원합니다. 파이썬의 우아(優雅)한 문법과 동적 타이핑, 그리고 인터프리팅
4 | 환경은 파이썬을 스크립팅과 여러 분야에서와 대부분의 플랫폼에서의 빠른
5 | 애플리케이션 개발을 할 수 있는 이상적인 언어로 만들어줍니다.
6 |
7 | ☆첫가끝: 날아라 쓔쓔쓩~ 닁큼! 뜽금없이 전홥니다. 뷁. 그런거 읎다.
8 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/xml/parsers/expat.py:
--------------------------------------------------------------------------------
1 | """Interface to the Expat non-validating XML parser."""
2 | import sys
3 |
4 | from pyexpat import *
5 |
6 | # provide pyexpat submodules as xml.parsers.expat submodules
7 | sys.modules['xml.parsers.expat.model'] = model
8 | sys.modules['xml.parsers.expat.errors'] = errors
9 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/include/ast.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_AST_H
2 | #define Py_AST_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 | PyAPI_FUNC(mod_ty) PyAST_FromNode(const node *, PyCompilerFlags *flags,
8 | const char *, PyArena *);
9 |
10 | #ifdef __cplusplus
11 | }
12 | #endif
13 | #endif /* !Py_AST_H */
14 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/include/ast.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_AST_H
2 | #define Py_AST_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 | PyAPI_FUNC(mod_ty) PyAST_FromNode(const node *, PyCompilerFlags *flags,
8 | const char *, PyArena *);
9 |
10 | #ifdef __cplusplus
11 | }
12 | #endif
13 | #endif /* !Py_AST_H */
14 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/unittest/__main__.py:
--------------------------------------------------------------------------------
1 | """Main entry point"""
2 |
3 | import sys
4 | if sys.argv[0].endswith("__main__.py"):
5 | sys.argv[0] = "python -m unittest"
6 |
7 | __unittest = True
8 |
9 | from .main import main, TestProgram, USAGE_AS_MAIN
10 | TestProgram.USAGE = USAGE_AS_MAIN
11 |
12 | main(module=None)
13 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/struct.py:
--------------------------------------------------------------------------------
1 | __all__ = [
2 | # Functions
3 | 'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from',
4 |
5 | # Classes
6 | 'Struct',
7 |
8 | # Exceptions
9 | 'error'
10 | ]
11 |
12 | from _struct import *
13 | from _struct import _clearcache
14 | from _struct import __doc__
15 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/unittest/__main__.py:
--------------------------------------------------------------------------------
1 | """Main entry point"""
2 |
3 | import sys
4 | if sys.argv[0].endswith("__main__.py"):
5 | sys.argv[0] = "python -m unittest"
6 |
7 | __unittest = True
8 |
9 | from .main import main, TestProgram, USAGE_AS_MAIN
10 | TestProgram.USAGE = USAGE_AS_MAIN
11 |
12 | main(module=None)
13 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/struct.py:
--------------------------------------------------------------------------------
1 | __all__ = [
2 | # Functions
3 | 'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from',
4 |
5 | # Classes
6 | 'Struct',
7 |
8 | # Exceptions
9 | 'error'
10 | ]
11 |
12 | from _struct import *
13 | from _struct import _clearcache
14 | from _struct import __doc__
15 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/unittest/__main__.py:
--------------------------------------------------------------------------------
1 | """Main entry point"""
2 |
3 | import sys
4 | if sys.argv[0].endswith("__main__.py"):
5 | sys.argv[0] = "python -m unittest"
6 |
7 | __unittest = True
8 |
9 | from .main import main, TestProgram, USAGE_AS_MAIN
10 | TestProgram.USAGE = USAGE_AS_MAIN
11 |
12 | main(module=None)
13 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/struct.py:
--------------------------------------------------------------------------------
1 | __all__ = [
2 | # Functions
3 | 'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from',
4 |
5 | # Classes
6 | 'Struct',
7 |
8 | # Exceptions
9 | 'error'
10 | ]
11 |
12 | from _struct import *
13 | from _struct import _clearcache
14 | from _struct import __doc__
15 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/unittest/__main__.py:
--------------------------------------------------------------------------------
1 | """Main entry point"""
2 |
3 | import sys
4 | if sys.argv[0].endswith("__main__.py"):
5 | sys.argv[0] = "python -m unittest"
6 |
7 | __unittest = True
8 |
9 | from .main import main, TestProgram, USAGE_AS_MAIN
10 | TestProgram.USAGE = USAGE_AS_MAIN
11 |
12 | main(module=None)
13 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/struct.py:
--------------------------------------------------------------------------------
1 | __all__ = [
2 | # Functions
3 | 'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from',
4 |
5 | # Classes
6 | 'Struct',
7 |
8 | # Exceptions
9 | 'error'
10 | ]
11 |
12 | from _struct import *
13 | from _struct import _clearcache
14 | from _struct import __doc__
15 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip/_vendor/html5lib/trie/__init__.py:
--------------------------------------------------------------------------------
1 | from __future__ import absolute_import, division, unicode_literals
2 |
3 | from .py import Trie as PyTrie
4 |
5 | Trie = PyTrie
6 |
7 | try:
8 | from .datrie import Trie as DATrie
9 | except ImportError:
10 | pass
11 | else:
12 | Trie = DATrie
13 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/leakers/test_dictself.py:
--------------------------------------------------------------------------------
1 | '''Test case for "self.__dict__ = self" circular reference bug (#1469629)'''
2 |
3 | import gc
4 |
5 | class LeakyDict(dict):
6 | pass
7 |
8 | def leak():
9 | ld = LeakyDict()
10 | ld.__dict__ = ld
11 | del ld
12 | gc.collect(); gc.collect(); gc.collect()
13 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip/_vendor/html5lib/trie/__init__.py:
--------------------------------------------------------------------------------
1 | from __future__ import absolute_import, division, unicode_literals
2 |
3 | from .py import Trie as PyTrie
4 |
5 | Trie = PyTrie
6 |
7 | try:
8 | from .datrie import Trie as DATrie
9 | except ImportError:
10 | pass
11 | else:
12 | Trie = DATrie
13 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/leakers/test_dictself.py:
--------------------------------------------------------------------------------
1 | '''Test case for "self.__dict__ = self" circular reference bug (#1469629)'''
2 |
3 | import gc
4 |
5 | class LeakyDict(dict):
6 | pass
7 |
8 | def leak():
9 | ld = LeakyDict()
10 | ld.__dict__ = ld
11 | del ld
12 | gc.collect(); gc.collect(); gc.collect()
13 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/subprocessdata/qgrep.py:
--------------------------------------------------------------------------------
1 | """When called with a single argument, simulated fgrep with a single
2 | argument and no options."""
3 |
4 | import sys
5 |
6 | if __name__ == "__main__":
7 | pattern = sys.argv[1]
8 | for line in sys.stdin:
9 | if pattern in line:
10 | sys.stdout.write(line)
11 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/subprocessdata/qgrep.py:
--------------------------------------------------------------------------------
1 | """When called with a single argument, simulated fgrep with a single
2 | argument and no options."""
3 |
4 | import sys
5 |
6 | if __name__ == "__main__":
7 | pattern = sys.argv[1]
8 | for line in sys.stdin:
9 | if pattern in line:
10 | sys.stdout.write(line)
11 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip/_vendor/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | pip._vendor is for vendoring dependencies of pip to prevent needing pip to
3 | depend on something external.
4 |
5 | Files inside of pip._vendor should be considered immutable and should only be
6 | updated to versions from upstream.
7 | """
8 | from __future__ import absolute_import
9 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip/_vendor/__init__.py:
--------------------------------------------------------------------------------
1 | """
2 | pip._vendor is for vendoring dependencies of pip to prevent needing pip to
3 | depend on something external.
4 |
5 | Files inside of pip._vendor should be considered immutable and should only be
6 | updated to versions from upstream.
7 | """
8 | from __future__ import absolute_import
9 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/ctypes/macholib/README.ctypes:
--------------------------------------------------------------------------------
1 | Files in this directory from from Bob Ippolito's py2app.
2 |
3 | License: Any components of the py2app suite may be distributed under
4 | the MIT or PSF open source licenses.
5 |
6 | This is version 1.0, SVN revision 789, from 2006/01/25.
7 | The main repository is http://svn.red-bean.com/bob/macholib/trunk/macholib/
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/xml/parsers/expat.py:
--------------------------------------------------------------------------------
1 | """Interface to the Expat non-validating XML parser."""
2 | __version__ = '$Revision$'
3 |
4 | import sys
5 |
6 | from pyexpat import *
7 |
8 | # provide pyexpat submodules as xml.parsers.expat submodules
9 | sys.modules['xml.parsers.expat.model'] = model
10 | sys.modules['xml.parsers.expat.errors'] = errors
11 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/ctypes/macholib/README.ctypes:
--------------------------------------------------------------------------------
1 | Files in this directory from from Bob Ippolito's py2app.
2 |
3 | License: Any components of the py2app suite may be distributed under
4 | the MIT or PSF open source licenses.
5 |
6 | This is version 1.0, SVN revision 789, from 2006/01/25.
7 | The main repository is http://svn.red-bean.com/bob/macholib/trunk/macholib/
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/ctypes/macholib/README.ctypes:
--------------------------------------------------------------------------------
1 | Files in this directory from from Bob Ippolito's py2app.
2 |
3 | License: Any components of the py2app suite may be distributed under
4 | the MIT or PSF open source licenses.
5 |
6 | This is version 1.0, SVN revision 789, from 2006/01/25.
7 | The main repository is http://svn.red-bean.com/bob/macholib/trunk/macholib/
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/xml/parsers/expat.py:
--------------------------------------------------------------------------------
1 | """Interface to the Expat non-validating XML parser."""
2 | __version__ = '$Revision$'
3 |
4 | import sys
5 |
6 | from pyexpat import *
7 |
8 | # provide pyexpat submodules as xml.parsers.expat submodules
9 | sys.modules['xml.parsers.expat.model'] = model
10 | sys.modules['xml.parsers.expat.errors'] = errors
11 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/ctypes/macholib/README.ctypes:
--------------------------------------------------------------------------------
1 | Files in this directory from from Bob Ippolito's py2app.
2 |
3 | License: Any components of the py2app suite may be distributed under
4 | the MIT or PSF open source licenses.
5 |
6 | This is version 1.0, SVN revision 789, from 2006/01/25.
7 | The main repository is http://svn.red-bean.com/bob/macholib/trunk/macholib/
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip/_vendor/distlib/_backport/__init__.py:
--------------------------------------------------------------------------------
1 | """Modules copied from Python 3 standard libraries, for internal use only.
2 |
3 | Individual classes and functions are found in d2._backport.misc. Intended
4 | usage is to always import things missing from 3.1 from that module: the
5 | built-in/stdlib objects will be used if found.
6 | """
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/include/pgen.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_PGEN_H
2 | #define Py_PGEN_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 |
8 | /* Parser generator interface */
9 |
10 | extern grammar *meta_grammar(void);
11 |
12 | struct _node;
13 | extern grammar *pgen(struct _node *);
14 |
15 | #ifdef __cplusplus
16 | }
17 | #endif
18 | #endif /* !Py_PGEN_H */
19 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip/_vendor/distlib/_backport/__init__.py:
--------------------------------------------------------------------------------
1 | """Modules copied from Python 3 standard libraries, for internal use only.
2 |
3 | Individual classes and functions are found in d2._backport.misc. Intended
4 | usage is to always import things missing from 3.1 from that module: the
5 | built-in/stdlib objects will be used if found.
6 | """
7 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/include/bltinmodule.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_BLTINMODULE_H
2 | #define Py_BLTINMODULE_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 | PyAPI_DATA(PyTypeObject) PyFilter_Type;
8 | PyAPI_DATA(PyTypeObject) PyMap_Type;
9 | PyAPI_DATA(PyTypeObject) PyZip_Type;
10 |
11 | #ifdef __cplusplus
12 | }
13 | #endif
14 | #endif /* !Py_BLTINMODULE_H */
15 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/include/pgen.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_PGEN_H
2 | #define Py_PGEN_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 |
8 | /* Parser generator interface */
9 |
10 | extern grammar *meta_grammar(void);
11 |
12 | struct _node;
13 | extern grammar *pgen(struct _node *);
14 |
15 | #ifdef __cplusplus
16 | }
17 | #endif
18 | #endif /* !Py_PGEN_H */
19 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/include/bltinmodule.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_BLTINMODULE_H
2 | #define Py_BLTINMODULE_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 | PyAPI_DATA(PyTypeObject) PyFilter_Type;
8 | PyAPI_DATA(PyTypeObject) PyMap_Type;
9 | PyAPI_DATA(PyTypeObject) PyZip_Type;
10 |
11 | #ifdef __cplusplus
12 | }
13 | #endif
14 | #endif /* !Py_BLTINMODULE_H */
15 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/include/pgen.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_PGEN_H
2 | #define Py_PGEN_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 |
8 | /* Parser generator interface */
9 |
10 | extern grammar *meta_grammar(void);
11 |
12 | struct _node;
13 | extern grammar *pgen(struct _node *);
14 |
15 | #ifdef __cplusplus
16 | }
17 | #endif
18 | #endif /* !Py_PGEN_H */
19 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/include/pgen.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_PGEN_H
2 | #define Py_PGEN_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 |
8 | /* Parser generator interface */
9 |
10 | extern grammar *meta_grammar(void);
11 |
12 | struct _node;
13 | extern grammar *pgen(struct _node *);
14 |
15 | #ifdef __cplusplus
16 | }
17 | #endif
18 | #endif /* !Py_PGEN_H */
19 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/include/bltinmodule.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_BLTINMODULE_H
2 | #define Py_BLTINMODULE_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 | PyAPI_DATA(PyTypeObject) PyFilter_Type;
8 | PyAPI_DATA(PyTypeObject) PyMap_Type;
9 | PyAPI_DATA(PyTypeObject) PyZip_Type;
10 |
11 | #ifdef __cplusplus
12 | }
13 | #endif
14 | #endif /* !Py_BLTINMODULE_H */
15 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/include/pgen.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_PGEN_H
2 | #define Py_PGEN_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 |
8 | /* Parser generator interface */
9 |
10 | extern grammar *meta_grammar(void);
11 |
12 | struct _node;
13 | extern grammar *pgen(struct _node *);
14 |
15 | #ifdef __cplusplus
16 | }
17 | #endif
18 | #endif /* !Py_PGEN_H */
19 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/include/bltinmodule.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_BLTINMODULE_H
2 | #define Py_BLTINMODULE_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 | PyAPI_DATA(PyTypeObject) PyFilter_Type;
8 | PyAPI_DATA(PyTypeObject) PyMap_Type;
9 | PyAPI_DATA(PyTypeObject) PyZip_Type;
10 |
11 | #ifdef __cplusplus
12 | }
13 | #endif
14 | #endif /* !Py_BLTINMODULE_H */
15 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/include/pgen.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_PGEN_H
2 | #define Py_PGEN_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 |
8 | /* Parser generator interface */
9 |
10 | extern grammar *meta_grammar(void);
11 |
12 | struct _node;
13 | extern grammar *pgen(struct _node *);
14 |
15 | #ifdef __cplusplus
16 | }
17 | #endif
18 | #endif /* !Py_PGEN_H */
19 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/include/enumobject.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_ENUMOBJECT_H
2 | #define Py_ENUMOBJECT_H
3 |
4 | /* Enumerate Object */
5 |
6 | #ifdef __cplusplus
7 | extern "C" {
8 | #endif
9 |
10 | PyAPI_DATA(PyTypeObject) PyEnum_Type;
11 | PyAPI_DATA(PyTypeObject) PyReversed_Type;
12 |
13 | #ifdef __cplusplus
14 | }
15 | #endif
16 |
17 | #endif /* !Py_ENUMOBJECT_H */
18 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/include/enumobject.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_ENUMOBJECT_H
2 | #define Py_ENUMOBJECT_H
3 |
4 | /* Enumerate Object */
5 |
6 | #ifdef __cplusplus
7 | extern "C" {
8 | #endif
9 |
10 | PyAPI_DATA(PyTypeObject) PyEnum_Type;
11 | PyAPI_DATA(PyTypeObject) PyReversed_Type;
12 |
13 | #ifdef __cplusplus
14 | }
15 | #endif
16 |
17 | #endif /* !Py_ENUMOBJECT_H */
18 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/include/enumobject.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_ENUMOBJECT_H
2 | #define Py_ENUMOBJECT_H
3 |
4 | /* Enumerate Object */
5 |
6 | #ifdef __cplusplus
7 | extern "C" {
8 | #endif
9 |
10 | PyAPI_DATA(PyTypeObject) PyEnum_Type;
11 | PyAPI_DATA(PyTypeObject) PyReversed_Type;
12 |
13 | #ifdef __cplusplus
14 | }
15 | #endif
16 |
17 | #endif /* !Py_ENUMOBJECT_H */
18 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/include/enumobject.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_ENUMOBJECT_H
2 | #define Py_ENUMOBJECT_H
3 |
4 | /* Enumerate Object */
5 |
6 | #ifdef __cplusplus
7 | extern "C" {
8 | #endif
9 |
10 | PyAPI_DATA(PyTypeObject) PyEnum_Type;
11 | PyAPI_DATA(PyTypeObject) PyReversed_Type;
12 |
13 | #ifdef __cplusplus
14 | }
15 | #endif
16 |
17 | #endif /* !Py_ENUMOBJECT_H */
18 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/include/enumobject.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_ENUMOBJECT_H
2 | #define Py_ENUMOBJECT_H
3 |
4 | /* Enumerate Object */
5 |
6 | #ifdef __cplusplus
7 | extern "C" {
8 | #endif
9 |
10 | PyAPI_DATA(PyTypeObject) PyEnum_Type;
11 | PyAPI_DATA(PyTypeObject) PyReversed_Type;
12 |
13 | #ifdef __cplusplus
14 | }
15 | #endif
16 |
17 | #endif /* !Py_ENUMOBJECT_H */
18 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/include/enumobject.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_ENUMOBJECT_H
2 | #define Py_ENUMOBJECT_H
3 |
4 | /* Enumerate Object */
5 |
6 | #ifdef __cplusplus
7 | extern "C" {
8 | #endif
9 |
10 | PyAPI_DATA(PyTypeObject) PyEnum_Type;
11 | PyAPI_DATA(PyTypeObject) PyReversed_Type;
12 |
13 | #ifdef __cplusplus
14 | }
15 | #endif
16 |
17 | #endif /* !Py_ENUMOBJECT_H */
18 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/include/metagrammar.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_METAGRAMMAR_H
2 | #define Py_METAGRAMMAR_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 |
8 | #define MSTART 256
9 | #define RULE 257
10 | #define RHS 258
11 | #define ALT 259
12 | #define ITEM 260
13 | #define ATOM 261
14 |
15 | #ifdef __cplusplus
16 | }
17 | #endif
18 | #endif /* !Py_METAGRAMMAR_H */
19 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/include/metagrammar.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_METAGRAMMAR_H
2 | #define Py_METAGRAMMAR_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 |
8 | #define MSTART 256
9 | #define RULE 257
10 | #define RHS 258
11 | #define ALT 259
12 | #define ITEM 260
13 | #define ATOM 261
14 |
15 | #ifdef __cplusplus
16 | }
17 | #endif
18 | #endif /* !Py_METAGRAMMAR_H */
19 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/include/metagrammar.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_METAGRAMMAR_H
2 | #define Py_METAGRAMMAR_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 |
8 | #define MSTART 256
9 | #define RULE 257
10 | #define RHS 258
11 | #define ALT 259
12 | #define ITEM 260
13 | #define ATOM 261
14 |
15 | #ifdef __cplusplus
16 | }
17 | #endif
18 | #endif /* !Py_METAGRAMMAR_H */
19 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/include/metagrammar.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_METAGRAMMAR_H
2 | #define Py_METAGRAMMAR_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 |
8 | #define MSTART 256
9 | #define RULE 257
10 | #define RHS 258
11 | #define ALT 259
12 | #define ITEM 260
13 | #define ATOM 261
14 |
15 | #ifdef __cplusplus
16 | }
17 | #endif
18 | #endif /* !Py_METAGRAMMAR_H */
19 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/include/metagrammar.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_METAGRAMMAR_H
2 | #define Py_METAGRAMMAR_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 |
8 | #define MSTART 256
9 | #define RULE 257
10 | #define RHS 258
11 | #define ALT 259
12 | #define ITEM 260
13 | #define ATOM 261
14 |
15 | #ifdef __cplusplus
16 | }
17 | #endif
18 | #endif /* !Py_METAGRAMMAR_H */
19 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/include/metagrammar.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_METAGRAMMAR_H
2 | #define Py_METAGRAMMAR_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 |
8 | #define MSTART 256
9 | #define RULE 257
10 | #define RHS 258
11 | #define ALT 259
12 | #define ITEM 260
13 | #define ATOM 261
14 |
15 | #ifdef __cplusplus
16 | }
17 | #endif
18 | #endif /* !Py_METAGRAMMAR_H */
19 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/include/intrcheck.h:
--------------------------------------------------------------------------------
1 |
2 | #ifndef Py_INTRCHECK_H
3 | #define Py_INTRCHECK_H
4 | #ifdef __cplusplus
5 | extern "C" {
6 | #endif
7 |
8 | PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
9 | PyAPI_FUNC(void) PyOS_InitInterrupts(void);
10 | PyAPI_FUNC(void) PyOS_AfterFork(void);
11 |
12 | #ifdef __cplusplus
13 | }
14 | #endif
15 | #endif /* !Py_INTRCHECK_H */
16 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/importlib/test/builtin/__init__.py:
--------------------------------------------------------------------------------
1 | import importlib.test
2 | import os
3 |
4 |
5 | def test_suite():
6 | directory = os.path.dirname(__file__)
7 | return importlib.test.test_suite('importlib.test.builtin', directory)
8 |
9 |
10 | if __name__ == '__main__':
11 | from test.support import run_unittest
12 | run_unittest(test_suite())
13 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/include/intrcheck.h:
--------------------------------------------------------------------------------
1 |
2 | #ifndef Py_INTRCHECK_H
3 | #define Py_INTRCHECK_H
4 | #ifdef __cplusplus
5 | extern "C" {
6 | #endif
7 |
8 | PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
9 | PyAPI_FUNC(void) PyOS_InitInterrupts(void);
10 | PyAPI_FUNC(void) PyOS_AfterFork(void);
11 |
12 | #ifdef __cplusplus
13 | }
14 | #endif
15 | #endif /* !Py_INTRCHECK_H */
16 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/include/intrcheck.h:
--------------------------------------------------------------------------------
1 |
2 | #ifndef Py_INTRCHECK_H
3 | #define Py_INTRCHECK_H
4 | #ifdef __cplusplus
5 | extern "C" {
6 | #endif
7 |
8 | PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
9 | PyAPI_FUNC(void) PyOS_InitInterrupts(void);
10 | PyAPI_FUNC(void) PyOS_AfterFork(void);
11 |
12 | #ifdef __cplusplus
13 | }
14 | #endif
15 | #endif /* !Py_INTRCHECK_H */
16 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/importlib/test/builtin/__init__.py:
--------------------------------------------------------------------------------
1 | import importlib.test
2 | import os
3 |
4 |
5 | def test_suite():
6 | directory = os.path.dirname(__file__)
7 | return importlib.test.test_suite('importlib.test.builtin', directory)
8 |
9 |
10 | if __name__ == '__main__':
11 | from test.support import run_unittest
12 | run_unittest(test_suite())
13 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/include/intrcheck.h:
--------------------------------------------------------------------------------
1 |
2 | #ifndef Py_INTRCHECK_H
3 | #define Py_INTRCHECK_H
4 | #ifdef __cplusplus
5 | extern "C" {
6 | #endif
7 |
8 | PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
9 | PyAPI_FUNC(void) PyOS_InitInterrupts(void);
10 | PyAPI_FUNC(void) PyOS_AfterFork(void);
11 |
12 | #ifdef __cplusplus
13 | }
14 | #endif
15 | #endif /* !Py_INTRCHECK_H */
16 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/setuptools/command/register.py:
--------------------------------------------------------------------------------
1 | from distutils.command.register import register as _register
2 |
3 | class register(_register):
4 | __doc__ = _register.__doc__
5 |
6 | def run(self):
7 | # Make sure that we are using valid current name/version info
8 | self.run_command('egg_info')
9 | _register.run(self)
10 |
11 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/leakers/test_gestalt.py:
--------------------------------------------------------------------------------
1 | import sys
2 |
3 | if sys.platform != 'darwin':
4 | raise ValueError, "This test only leaks on Mac OS X"
5 |
6 | def leak():
7 | # taken from platform._mac_ver_lookup()
8 | from gestalt import gestalt
9 | import MacOS
10 |
11 | try:
12 | gestalt('sysu')
13 | except MacOS.Error:
14 | pass
15 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/setuptools/command/register.py:
--------------------------------------------------------------------------------
1 | from distutils.command.register import register as _register
2 |
3 | class register(_register):
4 | __doc__ = _register.__doc__
5 |
6 | def run(self):
7 | # Make sure that we are using valid current name/version info
8 | self.run_command('egg_info')
9 | _register.run(self)
10 |
11 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/leakers/test_gestalt.py:
--------------------------------------------------------------------------------
1 | import sys
2 |
3 | if sys.platform != 'darwin':
4 | raise ValueError("This test only leaks on Mac OS X")
5 |
6 | def leak():
7 | # taken from platform._mac_ver_lookup()
8 | from gestalt import gestalt
9 | import MacOS
10 |
11 | try:
12 | gestalt('sysu')
13 | except MacOS.Error:
14 | pass
15 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/leakers/test_gestalt.py:
--------------------------------------------------------------------------------
1 | import sys
2 |
3 | if sys.platform != 'darwin':
4 | raise ValueError, "This test only leaks on Mac OS X"
5 |
6 | def leak():
7 | # taken from platform._mac_ver_lookup()
8 | from gestalt import gestalt
9 | import MacOS
10 |
11 | try:
12 | gestalt('sysu')
13 | except MacOS.Error:
14 | pass
15 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/leakers/test_gestalt.py:
--------------------------------------------------------------------------------
1 | import sys
2 |
3 | if sys.platform != 'darwin':
4 | raise ValueError("This test only leaks on Mac OS X")
5 |
6 | def leak():
7 | # taken from platform._mac_ver_lookup()
8 | from gestalt import gestalt
9 | import MacOS
10 |
11 | try:
12 | gestalt('sysu')
13 | except MacOS.Error:
14 | pass
15 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/cjkencodings/big5-utf8.txt:
--------------------------------------------------------------------------------
1 | 如何在 Python 中使用既有的 C library?
2 | 在資訊科技快速發展的今天, 開發及測試軟體的速度是不容忽視的
3 | 課題. 為加快開發及測試的速度, 我們便常希望能利用一些已開發好的
4 | library, 並有一個 fast prototyping 的 programming language 可
5 | 供使用. 目前有許許多多的 library 是以 C 寫成, 而 Python 是一個
6 | fast prototyping 的 programming language. 故我們希望能將既有的
7 | C library 拿到 Python 的環境中測試及整合. 其中最主要也是我們所
8 | 要討論的問題就是:
9 |
10 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/distutils/README:
--------------------------------------------------------------------------------
1 | This directory contains the Distutils package.
2 |
3 | There's a full documentation available at:
4 |
5 | http://docs.python.org/distutils/
6 |
7 | The Distutils-SIG web page is also a good starting point:
8 |
9 | http://www.python.org/sigs/distutils-sig/
10 |
11 | WARNING : Distutils must remain compatible with 2.3
12 |
13 | $Id$
14 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/cjkencodings/big5-utf8.txt:
--------------------------------------------------------------------------------
1 | 如何在 Python 中使用既有的 C library?
2 | 在資訊科技快速發展的今天, 開發及測試軟體的速度是不容忽視的
3 | 課題. 為加快開發及測試的速度, 我們便常希望能利用一些已開發好的
4 | library, 並有一個 fast prototyping 的 programming language 可
5 | 供使用. 目前有許許多多的 library 是以 C 寫成, 而 Python 是一個
6 | fast prototyping 的 programming language. 故我們希望能將既有的
7 | C library 拿到 Python 的環境中測試及整合. 其中最主要也是我們所
8 | 要討論的問題就是:
9 |
10 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/cjkencodings/big5-utf8.txt:
--------------------------------------------------------------------------------
1 | 如何在 Python 中使用既有的 C library?
2 | 在資訊科技快速發展的今天, 開發及測試軟體的速度是不容忽視的
3 | 課題. 為加快開發及測試的速度, 我們便常希望能利用一些已開發好的
4 | library, 並有一個 fast prototyping 的 programming language 可
5 | 供使用. 目前有許許多多的 library 是以 C 寫成, 而 Python 是一個
6 | fast prototyping 的 programming language. 故我們希望能將既有的
7 | C library 拿到 Python 的環境中測試及整合. 其中最主要也是我們所
8 | 要討論的問題就是:
9 |
10 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/distutils/README:
--------------------------------------------------------------------------------
1 | This directory contains the Distutils package.
2 |
3 | There's a full documentation available at:
4 |
5 | http://docs.python.org/distutils/
6 |
7 | The Distutils-SIG web page is also a good starting point:
8 |
9 | http://www.python.org/sigs/distutils-sig/
10 |
11 | WARNING : Distutils must remain compatible with 2.3
12 |
13 | $Id$
14 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/cjkencodings/big5-utf8.txt:
--------------------------------------------------------------------------------
1 | 如何在 Python 中使用既有的 C library?
2 | 在資訊科技快速發展的今天, 開發及測試軟體的速度是不容忽視的
3 | 課題. 為加快開發及測試的速度, 我們便常希望能利用一些已開發好的
4 | library, 並有一個 fast prototyping 的 programming language 可
5 | 供使用. 目前有許許多多的 library 是以 C 寫成, 而 Python 是一個
6 | fast prototyping 的 programming language. 故我們希望能將既有的
7 | C library 拿到 Python 的環境中測試及整合. 其中最主要也是我們所
8 | 要討論的問題就是:
9 |
10 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/setuptools/tests/py26compat.py:
--------------------------------------------------------------------------------
1 | import unittest
2 |
3 | try:
4 | # provide skipIf for Python 2.4-2.6
5 | skipIf = unittest.skipIf
6 | except AttributeError:
7 | def skipIf(condition, reason):
8 | def skipper(func):
9 | def skip(*args, **kwargs):
10 | return
11 | if condition:
12 | return skip
13 | return func
14 | return skipper
15 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/setuptools/tests/py26compat.py:
--------------------------------------------------------------------------------
1 | import unittest
2 |
3 | try:
4 | # provide skipIf for Python 2.4-2.6
5 | skipIf = unittest.skipIf
6 | except AttributeError:
7 | def skipIf(condition, reason):
8 | def skipper(func):
9 | def skip(*args, **kwargs):
10 | return
11 | if condition:
12 | return skip
13 | return func
14 | return skipper
15 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/json_tests/test_default.py:
--------------------------------------------------------------------------------
1 | from test.json_tests import PyTest, CTest
2 |
3 |
4 | class TestDefault:
5 | def test_default(self):
6 | self.assertEqual(
7 | self.dumps(type, default=repr),
8 | self.dumps(repr(type)))
9 |
10 |
11 | class TestPyDefault(TestDefault, PyTest): pass
12 | class TestCDefault(TestDefault, CTest): pass
13 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/distutils/README.txt:
--------------------------------------------------------------------------------
1 | This directory contains the Distutils package.
2 |
3 | There's a full documentation available at:
4 |
5 | http://docs.python.org/distutils/
6 |
7 | The Distutils-SIG web page is also a good starting point:
8 |
9 | http://www.python.org/sigs/distutils-sig/
10 |
11 | WARNING : Distutils must remain compatible with 2.3
12 |
13 | $Id$
14 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/json_tests/test_default.py:
--------------------------------------------------------------------------------
1 | from test.json_tests import PyTest, CTest
2 |
3 |
4 | class TestDefault:
5 | def test_default(self):
6 | self.assertEqual(
7 | self.dumps(type, default=repr),
8 | self.dumps(repr(type)))
9 |
10 |
11 | class TestPyDefault(TestDefault, PyTest): pass
12 | class TestCDefault(TestDefault, CTest): pass
13 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/distutils/README.txt:
--------------------------------------------------------------------------------
1 | This directory contains the Distutils package.
2 |
3 | There's a full documentation available at:
4 |
5 | http://docs.python.org/distutils/
6 |
7 | The Distutils-SIG web page is also a good starting point:
8 |
9 | http://www.python.org/sigs/distutils-sig/
10 |
11 | WARNING : Distutils must remain compatible with 2.3
12 |
13 | $Id$
14 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/leakers/test_selftype.py:
--------------------------------------------------------------------------------
1 | # Reference cycles involving only the ob_type field are rather uncommon
2 | # but possible. Inspired by SF bug 1469629.
3 |
4 | import gc
5 |
6 | def leak():
7 | class T(type):
8 | pass
9 | class U(type):
10 | __metaclass__ = T
11 | U.__class__ = U
12 | del U
13 | gc.collect(); gc.collect(); gc.collect()
14 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/importlib/test/frozen/__init__.py:
--------------------------------------------------------------------------------
1 | import importlib.test
2 | import os.path
3 | import unittest
4 |
5 |
6 | def test_suite():
7 | directory = os.path.dirname(__file__)
8 | return importlib.test.test_suite('importlib.test.frozen', directory)
9 |
10 |
11 | if __name__ == '__main__':
12 | from test.support import run_unittest
13 | run_unittest(test_suite())
14 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/importlib/test/source/__init__.py:
--------------------------------------------------------------------------------
1 | import importlib.test
2 | import os.path
3 | import unittest
4 |
5 |
6 | def test_suite():
7 | directory = os.path.dirname(__file__)
8 | return importlib.test.test_suite('importlib.test.source', directory)
9 |
10 |
11 | if __name__ == '__main__':
12 | from test.support import run_unittest
13 | run_unittest(test_suite())
14 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/leakers/test_selftype.py:
--------------------------------------------------------------------------------
1 | # Reference cycles involving only the ob_type field are rather uncommon
2 | # but possible. Inspired by SF bug 1469629.
3 |
4 | import gc
5 |
6 | def leak():
7 | class T(type):
8 | pass
9 | class U(type, metaclass=T):
10 | pass
11 | U.__class__ = U
12 | del U
13 | gc.collect(); gc.collect(); gc.collect()
14 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/leakers/test_selftype.py:
--------------------------------------------------------------------------------
1 | # Reference cycles involving only the ob_type field are rather uncommon
2 | # but possible. Inspired by SF bug 1469629.
3 |
4 | import gc
5 |
6 | def leak():
7 | class T(type):
8 | pass
9 | class U(type):
10 | __metaclass__ = T
11 | U.__class__ = U
12 | del U
13 | gc.collect(); gc.collect(); gc.collect()
14 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/importlib/test/frozen/__init__.py:
--------------------------------------------------------------------------------
1 | import importlib.test
2 | import os.path
3 | import unittest
4 |
5 |
6 | def test_suite():
7 | directory = os.path.dirname(__file__)
8 | return importlib.test.test_suite('importlib.test.frozen', directory)
9 |
10 |
11 | if __name__ == '__main__':
12 | from test.support import run_unittest
13 | run_unittest(test_suite())
14 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/importlib/test/source/__init__.py:
--------------------------------------------------------------------------------
1 | import importlib.test
2 | import os.path
3 | import unittest
4 |
5 |
6 | def test_suite():
7 | directory = os.path.dirname(__file__)
8 | return importlib.test.test_suite('importlib.test.source', directory)
9 |
10 |
11 | if __name__ == '__main__':
12 | from test.support import run_unittest
13 | run_unittest(test_suite())
14 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/leakers/test_selftype.py:
--------------------------------------------------------------------------------
1 | # Reference cycles involving only the ob_type field are rather uncommon
2 | # but possible. Inspired by SF bug 1469629.
3 |
4 | import gc
5 |
6 | def leak():
7 | class T(type):
8 | pass
9 | class U(type, metaclass=T):
10 | pass
11 | U.__class__ = U
12 | del U
13 | gc.collect(); gc.collect(); gc.collect()
14 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/importlib/test/import_/__init__.py:
--------------------------------------------------------------------------------
1 | import importlib.test
2 | import os.path
3 | import unittest
4 |
5 |
6 | def test_suite():
7 | directory = os.path.dirname(__file__)
8 | return importlib.test.test_suite('importlib.test.import_', directory)
9 |
10 |
11 | if __name__ == '__main__':
12 | from test.support import run_unittest
13 | run_unittest(test_suite())
14 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/include/ast.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_AST_H
2 | #define Py_AST_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 | PyAPI_FUNC(mod_ty) PyAST_FromNode(
8 | const node *n,
9 | PyCompilerFlags *flags,
10 | const char *filename, /* decoded from the filesystem encoding */
11 | PyArena *arena);
12 |
13 | #ifdef __cplusplus
14 | }
15 | #endif
16 | #endif /* !Py_AST_H */
17 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/importlib/test/import_/__init__.py:
--------------------------------------------------------------------------------
1 | import importlib.test
2 | import os.path
3 | import unittest
4 |
5 |
6 | def test_suite():
7 | directory = os.path.dirname(__file__)
8 | return importlib.test.test_suite('importlib.test.import_', directory)
9 |
10 |
11 | if __name__ == '__main__':
12 | from test.support import run_unittest
13 | run_unittest(test_suite())
14 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/include/ast.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_AST_H
2 | #define Py_AST_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 | PyAPI_FUNC(mod_ty) PyAST_FromNode(
8 | const node *n,
9 | PyCompilerFlags *flags,
10 | const char *filename, /* decoded from the filesystem encoding */
11 | PyArena *arena);
12 |
13 | #ifdef __cplusplus
14 | }
15 | #endif
16 | #endif /* !Py_AST_H */
17 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/fixes/fix_imports2.py:
--------------------------------------------------------------------------------
1 | """Fix incompatible imports and module references that must be fixed after
2 | fix_imports."""
3 | from . import fix_imports
4 |
5 |
6 | MAPPING = {
7 | 'whichdb': 'dbm',
8 | 'anydbm': 'dbm',
9 | }
10 |
11 |
12 | class FixImports2(fix_imports.FixImports):
13 |
14 | run_order = 7
15 |
16 | mapping = MAPPING
17 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip/_vendor/html5lib/filters/_base.py:
--------------------------------------------------------------------------------
1 | from __future__ import absolute_import, division, unicode_literals
2 |
3 |
4 | class Filter(object):
5 | def __init__(self, source):
6 | self.source = source
7 |
8 | def __iter__(self):
9 | return iter(self.source)
10 |
11 | def __getattr__(self, name):
12 | return getattr(self.source, name)
13 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/importlib/test/extension/__init__.py:
--------------------------------------------------------------------------------
1 | import importlib.test
2 | import os.path
3 | import unittest
4 |
5 |
6 | def test_suite():
7 | directory = os.path.dirname(__file__)
8 | return importlib.test.test_suite('importlib.test.extension', directory)
9 |
10 |
11 | if __name__ == '__main__':
12 | from test.support import run_unittest
13 | run_unittest(test_suite())
14 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/fixes/fix_imports2.py:
--------------------------------------------------------------------------------
1 | """Fix incompatible imports and module references that must be fixed after
2 | fix_imports."""
3 | from . import fix_imports
4 |
5 |
6 | MAPPING = {
7 | 'whichdb': 'dbm',
8 | 'anydbm': 'dbm',
9 | }
10 |
11 |
12 | class FixImports2(fix_imports.FixImports):
13 |
14 | run_order = 7
15 |
16 | mapping = MAPPING
17 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip/_vendor/html5lib/filters/_base.py:
--------------------------------------------------------------------------------
1 | from __future__ import absolute_import, division, unicode_literals
2 |
3 |
4 | class Filter(object):
5 | def __init__(self, source):
6 | self.source = source
7 |
8 | def __iter__(self):
9 | return iter(self.source)
10 |
11 | def __getattr__(self, name):
12 | return getattr(self.source, name)
13 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/lib2to3/fixes/fix_imports2.py:
--------------------------------------------------------------------------------
1 | """Fix incompatible imports and module references that must be fixed after
2 | fix_imports."""
3 | from . import fix_imports
4 |
5 |
6 | MAPPING = {
7 | 'whichdb': 'dbm',
8 | 'anydbm': 'dbm',
9 | }
10 |
11 |
12 | class FixImports2(fix_imports.FixImports):
13 |
14 | run_order = 7
15 |
16 | mapping = MAPPING
17 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/fixes/fix_imports2.py:
--------------------------------------------------------------------------------
1 | """Fix incompatible imports and module references that must be fixed after
2 | fix_imports."""
3 | from . import fix_imports
4 |
5 |
6 | MAPPING = {
7 | 'whichdb': 'dbm',
8 | 'anydbm': 'dbm',
9 | }
10 |
11 |
12 | class FixImports2(fix_imports.FixImports):
13 |
14 | run_order = 7
15 |
16 | mapping = MAPPING
17 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/importlib/test/extension/__init__.py:
--------------------------------------------------------------------------------
1 | import importlib.test
2 | import os.path
3 | import unittest
4 |
5 |
6 | def test_suite():
7 | directory = os.path.dirname(__file__)
8 | return importlib.test.test_suite('importlib.test.extension', directory)
9 |
10 |
11 | if __name__ == '__main__':
12 | from test.support import run_unittest
13 | run_unittest(test_suite())
14 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/fixes/fix_imports2.py:
--------------------------------------------------------------------------------
1 | """Fix incompatible imports and module references that must be fixed after
2 | fix_imports."""
3 | from . import fix_imports
4 |
5 |
6 | MAPPING = {
7 | 'whichdb': 'dbm',
8 | 'anydbm': 'dbm',
9 | }
10 |
11 |
12 | class FixImports2(fix_imports.FixImports):
13 |
14 | run_order = 7
15 |
16 | mapping = MAPPING
17 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/lib2to3/fixes/fix_imports2.py:
--------------------------------------------------------------------------------
1 | """Fix incompatible imports and module references that must be fixed after
2 | fix_imports."""
3 | from . import fix_imports
4 |
5 |
6 | MAPPING = {
7 | 'whichdb': 'dbm',
8 | 'anydbm': 'dbm',
9 | }
10 |
11 |
12 | class FixImports2(fix_imports.FixImports):
13 |
14 | run_order = 7
15 |
16 | mapping = MAPPING
17 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/turtledemo/about_turtledemo.txt:
--------------------------------------------------------------------------------
1 |
2 | --------------------------------------
3 | About this viewer
4 | --------------------------------------
5 |
6 | Tiny demo viewer to view turtle graphics example scripts.
7 |
8 | Quickly and dirtyly assembled by Gregor Lingl.
9 | June, 2006
10 |
11 | For more information see: turtleDemo - Help
12 |
13 | Have fun!
14 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/include/namespaceobject.h:
--------------------------------------------------------------------------------
1 |
2 | /* simple namespace object interface */
3 |
4 | #ifndef NAMESPACEOBJECT_H
5 | #define NAMESPACEOBJECT_H
6 | #ifdef __cplusplus
7 | extern "C" {
8 | #endif
9 |
10 | PyAPI_DATA(PyTypeObject) _PyNamespace_Type;
11 |
12 | PyAPI_FUNC(PyObject *) _PyNamespace_New(PyObject *kwds);
13 |
14 | #ifdef __cplusplus
15 | }
16 | #endif
17 | #endif /* !NAMESPACEOBJECT_H */
18 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/turtledemo/about_turtledemo.txt:
--------------------------------------------------------------------------------
1 |
2 | --------------------------------------
3 | About this viewer
4 | --------------------------------------
5 |
6 | Tiny demo viewer to view turtle graphics example scripts.
7 |
8 | Quickly and dirtyly assembled by Gregor Lingl.
9 | June, 2006
10 |
11 | For more information see: turtleDemo - Help
12 |
13 | Have fun!
14 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/include/namespaceobject.h:
--------------------------------------------------------------------------------
1 |
2 | /* simple namespace object interface */
3 |
4 | #ifndef NAMESPACEOBJECT_H
5 | #define NAMESPACEOBJECT_H
6 | #ifdef __cplusplus
7 | extern "C" {
8 | #endif
9 |
10 | PyAPI_DATA(PyTypeObject) _PyNamespace_Type;
11 |
12 | PyAPI_FUNC(PyObject *) _PyNamespace_New(PyObject *kwds);
13 |
14 | #ifdef __cplusplus
15 | }
16 | #endif
17 | #endif /* !NAMESPACEOBJECT_H */
18 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/setuptools/script template (dev).py:
--------------------------------------------------------------------------------
1 | # EASY-INSTALL-DEV-SCRIPT: %(spec)r,%(script_name)r
2 | __requires__ = """%(spec)r"""
3 | import sys
4 | from pkg_resources import require
5 | require("""%(spec)r""")
6 | del require
7 | __file__ = """%(dev_path)r"""
8 | if sys.version_info < (3, 0):
9 | execfile(__file__)
10 | else:
11 | exec(compile(open(__file__).read(), __file__, 'exec'))
12 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/setuptools/script template (dev).py:
--------------------------------------------------------------------------------
1 | # EASY-INSTALL-DEV-SCRIPT: %(spec)r,%(script_name)r
2 | __requires__ = """%(spec)r"""
3 | import sys
4 | from pkg_resources import require
5 | require("""%(spec)r""")
6 | del require
7 | __file__ = """%(dev_path)r"""
8 | if sys.version_info < (3, 0):
9 | execfile(__file__)
10 | else:
11 | exec(compile(open(__file__).read(), __file__, 'exec'))
12 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/test/crashers/underlying_dict.py:
--------------------------------------------------------------------------------
1 | import gc
2 |
3 | thingy = object()
4 | class A(object):
5 | def f(self):
6 | return 1
7 | x = thingy
8 |
9 | r = gc.get_referrers(thingy)
10 | if "__module__" in r[0]:
11 | dct = r[0]
12 | else:
13 | dct = r[1]
14 |
15 | a = A()
16 | for i in range(10):
17 | a.f()
18 | dct["f"] = lambda self: 2
19 |
20 | print(a.f()) # should print 1
21 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/test/crashers/underlying_dict.py:
--------------------------------------------------------------------------------
1 | import gc
2 |
3 | thingy = object()
4 | class A(object):
5 | def f(self):
6 | return 1
7 | x = thingy
8 |
9 | r = gc.get_referrers(thingy)
10 | if "__module__" in r[0]:
11 | dct = r[0]
12 | else:
13 | dct = r[1]
14 |
15 | a = A()
16 | for i in range(10):
17 | a.f()
18 | dct["f"] = lambda self: 2
19 |
20 | print(a.f()) # should print 1
21 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/fixes/fix_basestring.py:
--------------------------------------------------------------------------------
1 | """Fixer for basestring -> str."""
2 | # Author: Christian Heimes
3 |
4 | # Local imports
5 | from .. import fixer_base
6 | from ..fixer_util import Name
7 |
8 | class FixBasestring(fixer_base.BaseFix):
9 | BM_compatible = True
10 |
11 | PATTERN = "'basestring'"
12 |
13 | def transform(self, node, results):
14 | return Name(u"str", prefix=node.prefix)
15 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/setuptools/py27compat.py:
--------------------------------------------------------------------------------
1 | """
2 | Compatibility Support for Python 2.7 and earlier
3 | """
4 |
5 | import sys
6 |
7 | def get_all_headers(message, key):
8 | """
9 | Given an HTTPMessage, return all headers matching a given key.
10 | """
11 | return message.get_all(key)
12 |
13 | if sys.version_info < (3,):
14 | def get_all_headers(message, key):
15 | return message.getheaders(key)
16 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/include/dtoa.h:
--------------------------------------------------------------------------------
1 | #ifndef PY_NO_SHORT_FLOAT_REPR
2 | #ifdef __cplusplus
3 | extern "C" {
4 | #endif
5 |
6 | PyAPI_FUNC(double) _Py_dg_strtod(const char *str, char **ptr);
7 | PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
8 | int *decpt, int *sign, char **rve);
9 | PyAPI_FUNC(void) _Py_dg_freedtoa(char *s);
10 |
11 |
12 | #ifdef __cplusplus
13 | }
14 | #endif
15 | #endif
16 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/distutils/__init__.py:
--------------------------------------------------------------------------------
1 | """distutils
2 |
3 | The main package for the Python Module Distribution Utilities. Normally
4 | used from a setup script as
5 |
6 | from distutils.core import setup
7 |
8 | setup (...)
9 | """
10 |
11 | # Distutils version
12 | #
13 | # Updated automatically by the Python release process.
14 | #
15 | #--start constants--
16 | __version__ = "3.2.5"
17 | #--end constants--
18 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/fixes/fix_basestring.py:
--------------------------------------------------------------------------------
1 | """Fixer for basestring -> str."""
2 | # Author: Christian Heimes
3 |
4 | # Local imports
5 | from .. import fixer_base
6 | from ..fixer_util import Name
7 |
8 | class FixBasestring(fixer_base.BaseFix):
9 | BM_compatible = True
10 |
11 | PATTERN = "'basestring'"
12 |
13 | def transform(self, node, results):
14 | return Name("str", prefix=node.prefix)
15 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/setuptools/py27compat.py:
--------------------------------------------------------------------------------
1 | """
2 | Compatibility Support for Python 2.7 and earlier
3 | """
4 |
5 | import sys
6 |
7 | def get_all_headers(message, key):
8 | """
9 | Given an HTTPMessage, return all headers matching a given key.
10 | """
11 | return message.get_all(key)
12 |
13 | if sys.version_info < (3,):
14 | def get_all_headers(message, key):
15 | return message.getheaders(key)
16 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/distutils/__init__.py:
--------------------------------------------------------------------------------
1 | """distutils
2 |
3 | The main package for the Python Module Distribution Utilities. Normally
4 | used from a setup script as
5 |
6 | from distutils.core import setup
7 |
8 | setup (...)
9 | """
10 |
11 | # Distutils version
12 | #
13 | # Updated automatically by the Python release process.
14 | #
15 | #--start constants--
16 | __version__ = "3.3.5"
17 | #--end constants--
18 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/Lib/lib2to3/fixes/fix_basestring.py:
--------------------------------------------------------------------------------
1 | """Fixer for basestring -> str."""
2 | # Author: Christian Heimes
3 |
4 | # Local imports
5 | from .. import fixer_base
6 | from ..fixer_util import Name
7 |
8 | class FixBasestring(fixer_base.BaseFix):
9 | BM_compatible = True
10 |
11 | PATTERN = "'basestring'"
12 |
13 | def transform(self, node, results):
14 | return Name("str", prefix=node.prefix)
15 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/fixes/fix_basestring.py:
--------------------------------------------------------------------------------
1 | """Fixer for basestring -> str."""
2 | # Author: Christian Heimes
3 |
4 | # Local imports
5 | from .. import fixer_base
6 | from ..fixer_util import Name
7 |
8 | class FixBasestring(fixer_base.BaseFix):
9 | BM_compatible = True
10 |
11 | PATTERN = "'basestring'"
12 |
13 | def transform(self, node, results):
14 | return Name(u"str", prefix=node.prefix)
15 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/include/dtoa.h:
--------------------------------------------------------------------------------
1 | #ifndef PY_NO_SHORT_FLOAT_REPR
2 | #ifdef __cplusplus
3 | extern "C" {
4 | #endif
5 |
6 | PyAPI_FUNC(double) _Py_dg_strtod(const char *str, char **ptr);
7 | PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
8 | int *decpt, int *sign, char **rve);
9 | PyAPI_FUNC(void) _Py_dg_freedtoa(char *s);
10 |
11 |
12 | #ifdef __cplusplus
13 | }
14 | #endif
15 | #endif
16 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/distutils/__init__.py:
--------------------------------------------------------------------------------
1 | """distutils
2 |
3 | The main package for the Python Module Distribution Utilities. Normally
4 | used from a setup script as
5 |
6 | from distutils.core import setup
7 |
8 | setup (...)
9 | """
10 |
11 | # Distutils version
12 | #
13 | # Updated automatically by the Python release process.
14 | #
15 | #--start constants--
16 | __version__ = "3.2.5"
17 | #--end constants--
18 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/fixes/fix_basestring.py:
--------------------------------------------------------------------------------
1 | """Fixer for basestring -> str."""
2 | # Author: Christian Heimes
3 |
4 | # Local imports
5 | from .. import fixer_base
6 | from ..fixer_util import Name
7 |
8 | class FixBasestring(fixer_base.BaseFix):
9 | BM_compatible = True
10 |
11 | PATTERN = "'basestring'"
12 |
13 | def transform(self, node, results):
14 | return Name("str", prefix=node.prefix)
15 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/distutils/__init__.py:
--------------------------------------------------------------------------------
1 | """distutils
2 |
3 | The main package for the Python Module Distribution Utilities. Normally
4 | used from a setup script as
5 |
6 | from distutils.core import setup
7 |
8 | setup (...)
9 | """
10 |
11 | # Distutils version
12 | #
13 | # Updated automatically by the Python release process.
14 | #
15 | #--start constants--
16 | __version__ = "3.3.5"
17 | #--end constants--
18 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/Lib/lib2to3/fixes/fix_basestring.py:
--------------------------------------------------------------------------------
1 | """Fixer for basestring -> str."""
2 | # Author: Christian Heimes
3 |
4 | # Local imports
5 | from .. import fixer_base
6 | from ..fixer_util import Name
7 |
8 | class FixBasestring(fixer_base.BaseFix):
9 | BM_compatible = True
10 |
11 | PATTERN = "'basestring'"
12 |
13 | def transform(self, node, results):
14 | return Name("str", prefix=node.prefix)
15 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/idlelib/idle_test/__init__.py:
--------------------------------------------------------------------------------
1 | from os.path import dirname
2 |
3 | def load_tests(loader, standard_tests, pattern):
4 | this_dir = dirname(__file__)
5 | top_dir = dirname(dirname(this_dir))
6 | package_tests = loader.discover(start_dir=this_dir, pattern='test*.py',
7 | top_level_dir=top_dir)
8 | standard_tests.addTests(package_tests)
9 | return standard_tests
10 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/leakers/test_ctypes.py:
--------------------------------------------------------------------------------
1 |
2 | # Taken from Lib/ctypes/test/test_keeprefs.py, PointerToStructure.test().
3 |
4 | from ctypes import Structure, c_int, POINTER
5 | import gc
6 |
7 | def leak_inner():
8 | class POINT(Structure):
9 | _fields_ = [("x", c_int)]
10 | class RECT(Structure):
11 | _fields_ = [("a", POINTER(POINT))]
12 |
13 | def leak():
14 | leak_inner()
15 | gc.collect()
16 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/idlelib/idle_test/__init__.py:
--------------------------------------------------------------------------------
1 | from os.path import dirname
2 |
3 | def load_tests(loader, standard_tests, pattern):
4 | this_dir = dirname(__file__)
5 | top_dir = dirname(dirname(this_dir))
6 | package_tests = loader.discover(start_dir=this_dir, pattern='test*.py',
7 | top_level_dir=top_dir)
8 | standard_tests.addTests(package_tests)
9 | return standard_tests
10 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/leakers/test_ctypes.py:
--------------------------------------------------------------------------------
1 |
2 | # Taken from Lib/ctypes/test/test_keeprefs.py, PointerToStructure.test().
3 |
4 | from ctypes import Structure, c_int, POINTER
5 | import gc
6 |
7 | def leak_inner():
8 | class POINT(Structure):
9 | _fields_ = [("x", c_int)]
10 | class RECT(Structure):
11 | _fields_ = [("a", POINTER(POINT))]
12 |
13 | def leak():
14 | leak_inner()
15 | gc.collect()
16 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/md5.py:
--------------------------------------------------------------------------------
1 | # $Id$
2 | #
3 | # Copyright (C) 2005 Gregory P. Smith (greg@krypto.org)
4 | # Licensed to PSF under a Contributor Agreement.
5 |
6 | import warnings
7 | warnings.warn("the md5 module is deprecated; use hashlib instead",
8 | DeprecationWarning, 2)
9 |
10 | from hashlib import md5
11 | new = md5
12 |
13 | blocksize = 1 # legacy value (wrong in any useful sense)
14 | digest_size = 16
15 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py33/include/ast.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_AST_H
2 | #define Py_AST_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 | PyAPI_FUNC(int) PyAST_Validate(mod_ty);
8 | PyAPI_FUNC(mod_ty) PyAST_FromNode(
9 | const node *n,
10 | PyCompilerFlags *flags,
11 | const char *filename, /* decoded from the filesystem encoding */
12 | PyArena *arena);
13 |
14 | #ifdef __cplusplus
15 | }
16 | #endif
17 | #endif /* !Py_AST_H */
18 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/md5.py:
--------------------------------------------------------------------------------
1 | # $Id$
2 | #
3 | # Copyright (C) 2005 Gregory P. Smith (greg@krypto.org)
4 | # Licensed to PSF under a Contributor Agreement.
5 |
6 | import warnings
7 | warnings.warn("the md5 module is deprecated; use hashlib instead",
8 | DeprecationWarning, 2)
9 |
10 | from hashlib import md5
11 | new = md5
12 |
13 | blocksize = 1 # legacy value (wrong in any useful sense)
14 | digest_size = 16
15 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py33/include/ast.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_AST_H
2 | #define Py_AST_H
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 | PyAPI_FUNC(int) PyAST_Validate(mod_ty);
8 | PyAPI_FUNC(mod_ty) PyAST_FromNode(
9 | const node *n,
10 | PyCompilerFlags *flags,
11 | const char *filename, /* decoded from the filesystem encoding */
12 | PyArena *arena);
13 |
14 | #ifdef __cplusplus
15 | }
16 | #endif
17 | #endif /* !Py_AST_H */
18 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/idlelib/idle_test/test_pathbrowser.py:
--------------------------------------------------------------------------------
1 | import unittest
2 | import idlelib.PathBrowser as PathBrowser
3 |
4 | class PathBrowserTest(unittest.TestCase):
5 |
6 | def test_DirBrowserTreeItem(self):
7 | # Issue16226 - make sure that getting a sublist works
8 | d = PathBrowser.DirBrowserTreeItem('')
9 | d.GetSubList()
10 |
11 | if __name__ == '__main__':
12 | unittest.main(verbosity=2, exit=False)
13 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/idlelib/idle_test/test_pathbrowser.py:
--------------------------------------------------------------------------------
1 | import unittest
2 | import idlelib.PathBrowser as PathBrowser
3 |
4 | class PathBrowserTest(unittest.TestCase):
5 |
6 | def test_DirBrowserTreeItem(self):
7 | # Issue16226 - make sure that getting a sublist works
8 | d = PathBrowser.DirBrowserTreeItem('')
9 | d.GetSubList()
10 |
11 | if __name__ == '__main__':
12 | unittest.main(verbosity=2, exit=False)
13 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/distutils/__init__.py:
--------------------------------------------------------------------------------
1 | """distutils
2 |
3 | The main package for the Python Module Distribution Utilities. Normally
4 | used from a setup script as
5 |
6 | from distutils.core import setup
7 |
8 | setup (...)
9 | """
10 |
11 | __revision__ = "$Id$"
12 |
13 | # Distutils version
14 | #
15 | # Updated automatically by the Python release process.
16 | #
17 | #--start constants--
18 | __version__ = "2.7.6"
19 | #--end constants--
20 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/include/pygetopt.h:
--------------------------------------------------------------------------------
1 |
2 | #ifndef Py_PYGETOPT_H
3 | #define Py_PYGETOPT_H
4 | #ifdef __cplusplus
5 | extern "C" {
6 | #endif
7 |
8 | PyAPI_DATA(int) _PyOS_opterr;
9 | PyAPI_DATA(int) _PyOS_optind;
10 | PyAPI_DATA(char *) _PyOS_optarg;
11 |
12 | PyAPI_FUNC(void) _PyOS_ResetGetOpt(void);
13 | PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
14 |
15 | #ifdef __cplusplus
16 | }
17 | #endif
18 | #endif /* !Py_PYGETOPT_H */
19 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/distutils/__init__.py:
--------------------------------------------------------------------------------
1 | """distutils
2 |
3 | The main package for the Python Module Distribution Utilities. Normally
4 | used from a setup script as
5 |
6 | from distutils.core import setup
7 |
8 | setup (...)
9 | """
10 |
11 | __revision__ = "$Id$"
12 |
13 | # Distutils version
14 | #
15 | # Updated automatically by the Python release process.
16 | #
17 | #--start constants--
18 | __version__ = "2.7.6"
19 | #--end constants--
20 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/include/pygetopt.h:
--------------------------------------------------------------------------------
1 |
2 | #ifndef Py_PYGETOPT_H
3 | #define Py_PYGETOPT_H
4 | #ifdef __cplusplus
5 | extern "C" {
6 | #endif
7 |
8 | PyAPI_DATA(int) _PyOS_opterr;
9 | PyAPI_DATA(int) _PyOS_optind;
10 | PyAPI_DATA(char *) _PyOS_optarg;
11 |
12 | PyAPI_FUNC(void) _PyOS_ResetGetOpt(void);
13 | PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
14 |
15 | #ifdef __cplusplus
16 | }
17 | #endif
18 | #endif /* !Py_PYGETOPT_H */
19 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/ctypes/macholib/__init__.py:
--------------------------------------------------------------------------------
1 | ######################################################################
2 | # This file should be kept compatible with Python 2.3, see PEP 291. #
3 | ######################################################################
4 | """
5 | Enough Mach-O to make your head spin.
6 |
7 | See the relevant header files in /usr/include/mach-o
8 |
9 | And also Apple's documentation.
10 | """
11 |
12 | __version__ = '1.0'
13 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/sre.py:
--------------------------------------------------------------------------------
1 | """This file is only retained for backwards compatibility.
2 | It will be removed in the future. sre was moved to re in version 2.5.
3 | """
4 |
5 | import warnings
6 | warnings.warn("The sre module is deprecated, please import re.",
7 | DeprecationWarning, 2)
8 |
9 | from re import *
10 | from re import __all__
11 |
12 | # old pickles expect the _compile() reconstructor in this module
13 | from re import _compile
14 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/ctypes/macholib/__init__.py:
--------------------------------------------------------------------------------
1 | ######################################################################
2 | # This file should be kept compatible with Python 2.3, see PEP 291. #
3 | ######################################################################
4 | """
5 | Enough Mach-O to make your head spin.
6 |
7 | See the relevant header files in /usr/include/mach-o
8 |
9 | And also Apple's documentation.
10 | """
11 |
12 | __version__ = '1.0'
13 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/sre.py:
--------------------------------------------------------------------------------
1 | """This file is only retained for backwards compatibility.
2 | It will be removed in the future. sre was moved to re in version 2.5.
3 | """
4 |
5 | import warnings
6 | warnings.warn("The sre module is deprecated, please import re.",
7 | DeprecationWarning, 2)
8 |
9 | from re import *
10 | from re import __all__
11 |
12 | # old pickles expect the _compile() reconstructor in this module
13 | from re import _compile
14 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/lib2to3/tests/data/fixers/myfixes/fix_parrot.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 | from lib2to3.fixer_util import Name
3 |
4 | class FixParrot(BaseFix):
5 | """
6 | Change functions named 'parrot' to 'cheese'.
7 | """
8 |
9 | PATTERN = """funcdef < 'def' name='parrot' any* >"""
10 |
11 | def transform(self, node, results):
12 | name = results["name"]
13 | name.replace(Name("cheese", name.prefix))
14 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/test/crashers/recursive_call.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
3 | # No bug report AFAIK, mail on python-dev on 2006-01-10
4 |
5 | # This is a "won't fix" case. It is known that setting a high enough
6 | # recursion limit crashes by overflowing the stack. Unless this is
7 | # redesigned somehow, it won't go away.
8 |
9 | import sys
10 |
11 | sys.setrecursionlimit(1 << 30)
12 | f = lambda f:f(f)
13 |
14 | if __name__ == '__main__':
15 | f(f)
16 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/lib2to3/tests/data/fixers/myfixes/fix_parrot.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 | from lib2to3.fixer_util import Name
3 |
4 | class FixParrot(BaseFix):
5 | """
6 | Change functions named 'parrot' to 'cheese'.
7 | """
8 |
9 | PATTERN = """funcdef < 'def' name='parrot' any* >"""
10 |
11 | def transform(self, node, results):
12 | name = results["name"]
13 | name.replace(Name("cheese", name.prefix))
14 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/include/dtoa.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_LIMITED_API
2 | #ifndef PY_NO_SHORT_FLOAT_REPR
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 | PyAPI_FUNC(double) _Py_dg_strtod(const char *str, char **ptr);
8 | PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
9 | int *decpt, int *sign, char **rve);
10 | PyAPI_FUNC(void) _Py_dg_freedtoa(char *s);
11 |
12 |
13 | #ifdef __cplusplus
14 | }
15 | #endif
16 | #endif
17 | #endif
18 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/lib2to3/tests/data/fixers/myfixes/fix_parrot.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 | from lib2to3.fixer_util import Name
3 |
4 | class FixParrot(BaseFix):
5 | """
6 | Change functions named 'parrot' to 'cheese'.
7 | """
8 |
9 | PATTERN = """funcdef < 'def' name='parrot' any* >"""
10 |
11 | def transform(self, node, results):
12 | name = results["name"]
13 | name.replace(Name("cheese", name.prefix))
14 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py27/Lib/test/crashers/recursive_call.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
3 | # No bug report AFAIK, mail on python-dev on 2006-01-10
4 |
5 | # This is a "won't fix" case. It is known that setting a high enough
6 | # recursion limit crashes by overflowing the stack. Unless this is
7 | # redesigned somehow, it won't go away.
8 |
9 | import sys
10 |
11 | sys.setrecursionlimit(1 << 30)
12 | f = lambda f:f(f)
13 |
14 | if __name__ == '__main__':
15 | f(f)
16 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/Lib/lib2to3/tests/data/fixers/myfixes/fix_parrot.py:
--------------------------------------------------------------------------------
1 | from lib2to3.fixer_base import BaseFix
2 | from lib2to3.fixer_util import Name
3 |
4 | class FixParrot(BaseFix):
5 | """
6 | Change functions named 'parrot' to 'cheese'.
7 | """
8 |
9 | PATTERN = """funcdef < 'def' name='parrot' any* >"""
10 |
11 | def transform(self, node, results):
12 | name = results["name"]
13 | name.replace(Name("cheese", name.prefix))
14 |
--------------------------------------------------------------------------------
/tests/pythons/win64-py32/include/dtoa.h:
--------------------------------------------------------------------------------
1 | #ifndef Py_LIMITED_API
2 | #ifndef PY_NO_SHORT_FLOAT_REPR
3 | #ifdef __cplusplus
4 | extern "C" {
5 | #endif
6 |
7 | PyAPI_FUNC(double) _Py_dg_strtod(const char *str, char **ptr);
8 | PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
9 | int *decpt, int *sign, char **rve);
10 | PyAPI_FUNC(void) _Py_dg_freedtoa(char *s);
11 |
12 |
13 | #ifdef __cplusplus
14 | }
15 | #endif
16 | #endif
17 | #endif
18 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py27/Lib/site-packages/pip/_vendor/html5lib/filters/sanitizer.py:
--------------------------------------------------------------------------------
1 | from __future__ import absolute_import, division, unicode_literals
2 |
3 | from . import _base
4 | from ..sanitizer import HTMLSanitizerMixin
5 |
6 |
7 | class Filter(_base.Filter, HTMLSanitizerMixin):
8 | def __iter__(self):
9 | for token in _base.Filter.__iter__(self):
10 | token = self.sanitize_token(token)
11 | if token:
12 | yield token
13 |
--------------------------------------------------------------------------------
/tests/pythons/win32-py32/Lib/site-packages/pip/_vendor/html5lib/filters/sanitizer.py:
--------------------------------------------------------------------------------
1 | from __future__ import absolute_import, division, unicode_literals
2 |
3 | from . import _base
4 | from ..sanitizer import HTMLSanitizerMixin
5 |
6 |
7 | class Filter(_base.Filter, HTMLSanitizerMixin):
8 | def __iter__(self):
9 | for token in _base.Filter.__iter__(self):
10 | token = self.sanitize_token(token)
11 | if token:
12 | yield token
13 |
--------------------------------------------------------------------------------