├── .gitignore ├── LICENSE.md ├── Makefile ├── Python27 ├── DLLs │ ├── _bsddb.pyd │ ├── _ctypes.pyd │ ├── _ctypes_test.pyd │ ├── _elementtree.pyd │ ├── _hashlib.pyd │ ├── _msi.pyd │ ├── _multiprocessing.pyd │ ├── _socket.pyd │ ├── _sqlite3.pyd │ ├── _ssl.pyd │ ├── _testcapi.pyd │ ├── _tkinter.pyd │ ├── bz2.pyd │ ├── py.ico │ ├── pyc.ico │ ├── pyexpat.pyd │ ├── select.pyd │ ├── sqlite3.dll │ ├── tcl85.dll │ ├── tclpip85.dll │ ├── tk85.dll │ ├── unicodedata.pyd │ └── winsound.pyd ├── Lib │ ├── BaseHTTPServer.py │ ├── Bastion.py │ ├── CGIHTTPServer.py │ ├── ConfigParser.py │ ├── Cookie.py │ ├── DocXMLRPCServer.py │ ├── HTMLParser.py │ ├── MimeWriter.py │ ├── Queue.py │ ├── SimpleHTTPServer.py │ ├── SimpleXMLRPCServer.py │ ├── SocketServer.py │ ├── StringIO.py │ ├── UserDict.py │ ├── UserList.py │ ├── UserString.py │ ├── _LWPCookieJar.py │ ├── _MozillaCookieJar.py │ ├── __future__.py │ ├── __future__.pyc │ ├── __phello__.foo.py │ ├── _abcoll.py │ ├── _pyio.py │ ├── _strptime.py │ ├── _threading_local.py │ ├── _weakrefset.py │ ├── abc.py │ ├── aifc.py │ ├── antigravity.py │ ├── anydbm.py │ ├── argparse.py │ ├── ast.py │ ├── asynchat.py │ ├── asyncore.py │ ├── atexit.py │ ├── audiodev.py │ ├── base64.py │ ├── bdb.py │ ├── binhex.py │ ├── bisect.py │ ├── bisect.pyc │ ├── bsddb │ │ ├── __init__.py │ │ ├── db.py │ │ ├── dbobj.py │ │ ├── dbrecio.py │ │ ├── dbshelve.py │ │ ├── dbtables.py │ │ ├── dbutils.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_all.py │ │ │ ├── test_associate.py │ │ │ ├── test_basics.py │ │ │ ├── test_compare.py │ │ │ ├── test_compat.py │ │ │ ├── test_cursor_pget_bug.py │ │ │ ├── test_db.py │ │ │ ├── test_dbenv.py │ │ │ ├── test_dbobj.py │ │ │ ├── test_dbshelve.py │ │ │ ├── test_dbtables.py │ │ │ ├── test_distributed_transactions.py │ │ │ ├── test_early_close.py │ │ │ ├── test_fileid.py │ │ │ ├── test_get_none.py │ │ │ ├── test_join.py │ │ │ ├── test_lock.py │ │ │ ├── test_misc.py │ │ │ ├── test_pickle.py │ │ │ ├── test_queue.py │ │ │ ├── test_recno.py │ │ │ ├── test_replication.py │ │ │ ├── test_sequence.py │ │ │ └── test_thread.py │ ├── cProfile.py │ ├── calendar.py │ ├── cgi.py │ ├── cgitb.py │ ├── chunk.py │ ├── cmd.py │ ├── code.py │ ├── codecs.py │ ├── codeop.py │ ├── collections.py │ ├── collections.pyc │ ├── colorsys.py │ ├── commands.py │ ├── compileall.py │ ├── compiler │ │ ├── __init__.py │ │ ├── ast.py │ │ ├── consts.py │ │ ├── future.py │ │ ├── misc.py │ │ ├── pyassem.py │ │ ├── pycodegen.py │ │ ├── symbols.py │ │ ├── syntax.py │ │ ├── transformer.py │ │ └── visitor.py │ ├── contextlib.py │ ├── cookielib.py │ ├── copy.py │ ├── copy.pyc │ ├── copy_reg.py │ ├── csv.py │ ├── ctypes │ │ ├── __init__.py │ │ ├── _endian.py │ │ ├── macholib │ │ │ ├── README.ctypes │ │ │ ├── __init__.py │ │ │ ├── dyld.py │ │ │ ├── dylib.py │ │ │ ├── fetch_macholib │ │ │ ├── fetch_macholib.bat │ │ │ └── framework.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── runtests.py │ │ │ ├── test_anon.py │ │ │ ├── test_array_in_pointer.py │ │ │ ├── test_arrays.py │ │ │ ├── test_as_parameter.py │ │ │ ├── test_bitfields.py │ │ │ ├── test_buffers.py │ │ │ ├── test_byteswap.py │ │ │ ├── test_callbacks.py │ │ │ ├── test_cast.py │ │ │ ├── test_cfuncs.py │ │ │ ├── test_checkretval.py │ │ │ ├── test_delattr.py │ │ │ ├── test_errcheck.py │ │ │ ├── test_errno.py │ │ │ ├── test_find.py │ │ │ ├── test_frombuffer.py │ │ │ ├── test_funcptr.py │ │ │ ├── test_functions.py │ │ │ ├── test_incomplete.py │ │ │ ├── test_init.py │ │ │ ├── test_integers.py │ │ │ ├── test_internals.py │ │ │ ├── test_keeprefs.py │ │ │ ├── test_libc.py │ │ │ ├── test_loading.py │ │ │ ├── test_macholib.py │ │ │ ├── test_memfunctions.py │ │ │ ├── test_numbers.py │ │ │ ├── test_objects.py │ │ │ ├── test_parameters.py │ │ │ ├── test_pep3118.py │ │ │ ├── test_pickling.py │ │ │ ├── test_pointers.py │ │ │ ├── test_prototypes.py │ │ │ ├── test_python_api.py │ │ │ ├── test_random_things.py │ │ │ ├── test_refcounts.py │ │ │ ├── test_repr.py │ │ │ ├── test_returnfuncptrs.py │ │ │ ├── test_simplesubclasses.py │ │ │ ├── test_sizes.py │ │ │ ├── test_slicing.py │ │ │ ├── test_stringptr.py │ │ │ ├── test_strings.py │ │ │ ├── test_struct_fields.py │ │ │ ├── test_structures.py │ │ │ ├── test_unaligned_structures.py │ │ │ ├── test_unicode.py │ │ │ ├── test_values.py │ │ │ ├── test_varsize_struct.py │ │ │ └── test_win32.py │ │ ├── util.py │ │ └── wintypes.py │ ├── curses │ │ ├── __init__.py │ │ ├── ascii.py │ │ ├── has_key.py │ │ ├── panel.py │ │ ├── textpad.py │ │ └── wrapper.py │ ├── dbhash.py │ ├── decimal.py │ ├── difflib.py │ ├── dircache.py │ ├── dis.py │ ├── dis.pyc │ ├── distutils │ │ ├── README │ │ ├── __init__.py │ │ ├── archive_util.py │ │ ├── bcppcompiler.py │ │ ├── ccompiler.py │ │ ├── cmd.py │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── bdist.py │ │ │ ├── bdist_dumb.py │ │ │ ├── bdist_msi.py │ │ │ ├── bdist_rpm.py │ │ │ ├── bdist_wininst.py │ │ │ ├── build.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── build_scripts.py │ │ │ ├── check.py │ │ │ ├── clean.py │ │ │ ├── command_template │ │ │ ├── config.py │ │ │ ├── install.py │ │ │ ├── install_data.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_headers.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── register.py │ │ │ ├── sdist.py │ │ │ ├── upload.py │ │ │ ├── wininst-6.0.exe │ │ │ ├── wininst-7.1.exe │ │ │ ├── wininst-8.0.exe │ │ │ ├── wininst-9.0-amd64.exe │ │ │ └── wininst-9.0.exe │ │ ├── config.py │ │ ├── core.py │ │ ├── cygwinccompiler.py │ │ ├── debug.py │ │ ├── dep_util.py │ │ ├── dir_util.py │ │ ├── dist.py │ │ ├── emxccompiler.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── fancy_getopt.py │ │ ├── file_util.py │ │ ├── filelist.py │ │ ├── log.py │ │ ├── msvc9compiler.py │ │ ├── msvccompiler.py │ │ ├── spawn.py │ │ ├── sysconfig.py │ │ ├── tests │ │ │ ├── Setup.sample │ │ │ ├── __init__.py │ │ │ ├── setuptools_build_ext.py │ │ │ ├── setuptools_extension.py │ │ │ ├── support.py │ │ │ ├── test_archive_util.py │ │ │ ├── test_bdist.py │ │ │ ├── test_bdist_dumb.py │ │ │ ├── test_bdist_msi.py │ │ │ ├── test_bdist_rpm.py │ │ │ ├── test_bdist_wininst.py │ │ │ ├── test_build.py │ │ │ ├── test_build_clib.py │ │ │ ├── test_build_ext.py │ │ │ ├── test_build_py.py │ │ │ ├── test_build_scripts.py │ │ │ ├── test_ccompiler.py │ │ │ ├── test_check.py │ │ │ ├── test_clean.py │ │ │ ├── test_cmd.py │ │ │ ├── test_config.py │ │ │ ├── test_config_cmd.py │ │ │ ├── test_core.py │ │ │ ├── test_dep_util.py │ │ │ ├── test_dir_util.py │ │ │ ├── test_dist.py │ │ │ ├── test_file_util.py │ │ │ ├── test_filelist.py │ │ │ ├── test_install.py │ │ │ ├── test_install_data.py │ │ │ ├── test_install_headers.py │ │ │ ├── test_install_lib.py │ │ │ ├── test_install_scripts.py │ │ │ ├── test_msvc9compiler.py │ │ │ ├── test_register.py │ │ │ ├── test_sdist.py │ │ │ ├── test_spawn.py │ │ │ ├── test_sysconfig.py │ │ │ ├── test_text_file.py │ │ │ ├── test_unixccompiler.py │ │ │ ├── test_upload.py │ │ │ ├── test_util.py │ │ │ ├── test_version.py │ │ │ └── test_versionpredicate.py │ │ ├── text_file.py │ │ ├── unixccompiler.py │ │ ├── util.py │ │ ├── version.py │ │ └── versionpredicate.py │ ├── doctest.py │ ├── dumbdbm.py │ ├── dummy_thread.py │ ├── dummy_threading.py │ ├── email │ │ ├── __init__.py │ │ ├── _parseaddr.py │ │ ├── base64mime.py │ │ ├── charset.py │ │ ├── encoders.py │ │ ├── errors.py │ │ ├── feedparser.py │ │ ├── generator.py │ │ ├── header.py │ │ ├── iterators.py │ │ ├── message.py │ │ ├── mime │ │ │ ├── __init__.py │ │ │ ├── application.py │ │ │ ├── audio.py │ │ │ ├── base.py │ │ │ ├── image.py │ │ │ ├── message.py │ │ │ ├── multipart.py │ │ │ ├── nonmultipart.py │ │ │ └── text.py │ │ ├── parser.py │ │ ├── quoprimime.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── PyBanner048.gif │ │ │ │ ├── audiotest.au │ │ │ │ ├── msg_01.txt │ │ │ │ ├── msg_02.txt │ │ │ │ ├── msg_03.txt │ │ │ │ ├── msg_04.txt │ │ │ │ ├── msg_05.txt │ │ │ │ ├── msg_06.txt │ │ │ │ ├── msg_07.txt │ │ │ │ ├── msg_08.txt │ │ │ │ ├── msg_09.txt │ │ │ │ ├── msg_10.txt │ │ │ │ ├── msg_11.txt │ │ │ │ ├── msg_12.txt │ │ │ │ ├── msg_12a.txt │ │ │ │ ├── msg_13.txt │ │ │ │ ├── msg_14.txt │ │ │ │ ├── msg_15.txt │ │ │ │ ├── msg_16.txt │ │ │ │ ├── msg_17.txt │ │ │ │ ├── msg_18.txt │ │ │ │ ├── msg_19.txt │ │ │ │ ├── msg_20.txt │ │ │ │ ├── msg_21.txt │ │ │ │ ├── msg_22.txt │ │ │ │ ├── msg_23.txt │ │ │ │ ├── msg_24.txt │ │ │ │ ├── msg_25.txt │ │ │ │ ├── msg_26.txt │ │ │ │ ├── msg_27.txt │ │ │ │ ├── msg_28.txt │ │ │ │ ├── msg_29.txt │ │ │ │ ├── msg_30.txt │ │ │ │ ├── msg_31.txt │ │ │ │ ├── msg_32.txt │ │ │ │ ├── msg_33.txt │ │ │ │ ├── msg_34.txt │ │ │ │ ├── msg_35.txt │ │ │ │ ├── msg_36.txt │ │ │ │ ├── msg_37.txt │ │ │ │ ├── msg_38.txt │ │ │ │ ├── msg_39.txt │ │ │ │ ├── msg_40.txt │ │ │ │ ├── msg_41.txt │ │ │ │ ├── msg_42.txt │ │ │ │ ├── msg_43.txt │ │ │ │ ├── msg_44.txt │ │ │ │ ├── msg_45.txt │ │ │ │ └── msg_46.txt │ │ │ ├── test_email.py │ │ │ ├── test_email_codecs.py │ │ │ ├── test_email_codecs_renamed.py │ │ │ ├── test_email_renamed.py │ │ │ └── test_email_torture.py │ │ └── utils.py │ ├── encodings │ │ ├── __init__.py │ │ ├── aliases.py │ │ ├── ascii.py │ │ ├── base64_codec.py │ │ ├── big5.py │ │ ├── big5hkscs.py │ │ ├── bz2_codec.py │ │ ├── charmap.py │ │ ├── cp037.py │ │ ├── cp1006.py │ │ ├── cp1026.py │ │ ├── cp1140.py │ │ ├── cp1250.py │ │ ├── cp1251.py │ │ ├── cp1252.py │ │ ├── cp1253.py │ │ ├── cp1254.py │ │ ├── cp1255.py │ │ ├── cp1256.py │ │ ├── cp1257.py │ │ ├── cp1258.py │ │ ├── cp424.py │ │ ├── cp437.py │ │ ├── cp500.py │ │ ├── cp720.py │ │ ├── cp737.py │ │ ├── cp775.py │ │ ├── cp850.py │ │ ├── cp852.py │ │ ├── cp855.py │ │ ├── cp856.py │ │ ├── cp857.py │ │ ├── cp858.py │ │ ├── cp860.py │ │ ├── cp861.py │ │ ├── cp862.py │ │ ├── cp863.py │ │ ├── cp864.py │ │ ├── cp865.py │ │ ├── cp866.py │ │ ├── cp869.py │ │ ├── cp874.py │ │ ├── cp875.py │ │ ├── cp932.py │ │ ├── cp949.py │ │ ├── cp950.py │ │ ├── euc_jis_2004.py │ │ ├── euc_jisx0213.py │ │ ├── euc_jp.py │ │ ├── euc_kr.py │ │ ├── gb18030.py │ │ ├── gb2312.py │ │ ├── gbk.py │ │ ├── hex_codec.py │ │ ├── hp_roman8.py │ │ ├── hz.py │ │ ├── idna.py │ │ ├── iso2022_jp.py │ │ ├── iso2022_jp_1.py │ │ ├── iso2022_jp_2.py │ │ ├── iso2022_jp_2004.py │ │ ├── iso2022_jp_3.py │ │ ├── iso2022_jp_ext.py │ │ ├── iso2022_kr.py │ │ ├── iso8859_1.py │ │ ├── iso8859_10.py │ │ ├── iso8859_11.py │ │ ├── iso8859_13.py │ │ ├── iso8859_14.py │ │ ├── iso8859_15.py │ │ ├── iso8859_16.py │ │ ├── iso8859_2.py │ │ ├── iso8859_3.py │ │ ├── iso8859_4.py │ │ ├── iso8859_5.py │ │ ├── iso8859_6.py │ │ ├── iso8859_7.py │ │ ├── iso8859_8.py │ │ ├── iso8859_9.py │ │ ├── johab.py │ │ ├── koi8_r.py │ │ ├── koi8_u.py │ │ ├── latin_1.py │ │ ├── mac_arabic.py │ │ ├── mac_centeuro.py │ │ ├── mac_croatian.py │ │ ├── mac_cyrillic.py │ │ ├── mac_farsi.py │ │ ├── mac_greek.py │ │ ├── mac_iceland.py │ │ ├── mac_latin2.py │ │ ├── mac_roman.py │ │ ├── mac_romanian.py │ │ ├── mac_turkish.py │ │ ├── mbcs.py │ │ ├── palmos.py │ │ ├── ptcp154.py │ │ ├── punycode.py │ │ ├── quopri_codec.py │ │ ├── raw_unicode_escape.py │ │ ├── rot_13.py │ │ ├── shift_jis.py │ │ ├── shift_jis_2004.py │ │ ├── shift_jisx0213.py │ │ ├── string_escape.py │ │ ├── tis_620.py │ │ ├── undefined.py │ │ ├── unicode_escape.py │ │ ├── unicode_internal.py │ │ ├── utf_16.py │ │ ├── utf_16_be.py │ │ ├── utf_16_le.py │ │ ├── utf_32.py │ │ ├── utf_32_be.py │ │ ├── utf_32_le.py │ │ ├── utf_7.py │ │ ├── utf_8.py │ │ ├── utf_8_sig.py │ │ ├── uu_codec.py │ │ └── zlib_codec.py │ ├── filecmp.py │ ├── fileinput.py │ ├── fnmatch.py │ ├── formatter.py │ ├── fpformat.py │ ├── fractions.py │ ├── ftplib.py │ ├── functools.py │ ├── genericpath.py │ ├── getopt.py │ ├── getpass.py │ ├── gettext.py │ ├── glob.py │ ├── gzip.py │ ├── hashlib.py │ ├── hashlib.pyc │ ├── heapq.py │ ├── heapq.pyc │ ├── hmac.py │ ├── hotshot │ │ ├── __init__.py │ │ ├── log.py │ │ ├── stats.py │ │ └── stones.py │ ├── htmlentitydefs.py │ ├── htmllib.py │ ├── httplib.py │ ├── idlelib │ │ ├── AutoComplete.py │ │ ├── AutoCompleteWindow.py │ │ ├── AutoExpand.py │ │ ├── Bindings.py │ │ ├── CREDITS.txt │ │ ├── CallTipWindow.py │ │ ├── CallTips.py │ │ ├── ChangeLog │ │ ├── ClassBrowser.py │ │ ├── CodeContext.py │ │ ├── ColorDelegator.py │ │ ├── Debugger.py │ │ ├── Delegator.py │ │ ├── EditorWindow.py │ │ ├── FileList.py │ │ ├── FormatParagraph.py │ │ ├── GrepDialog.py │ │ ├── HISTORY.txt │ │ ├── HyperParser.py │ │ ├── IOBinding.py │ │ ├── Icons │ │ │ ├── folder.gif │ │ │ ├── idle.icns │ │ │ ├── minusnode.gif │ │ │ ├── openfolder.gif │ │ │ ├── plusnode.gif │ │ │ ├── python.gif │ │ │ └── tk.gif │ │ ├── IdleHistory.py │ │ ├── MultiCall.py │ │ ├── MultiStatusBar.py │ │ ├── NEWS.txt │ │ ├── ObjectBrowser.py │ │ ├── OutputWindow.py │ │ ├── ParenMatch.py │ │ ├── PathBrowser.py │ │ ├── Percolator.py │ │ ├── PyParse.py │ │ ├── PyShell.py │ │ ├── README.txt │ │ ├── RemoteDebugger.py │ │ ├── RemoteObjectBrowser.py │ │ ├── ReplaceDialog.py │ │ ├── RstripExtension.py │ │ ├── ScriptBinding.py │ │ ├── ScrolledList.py │ │ ├── SearchDialog.py │ │ ├── SearchDialogBase.py │ │ ├── SearchEngine.py │ │ ├── StackViewer.py │ │ ├── TODO.txt │ │ ├── ToolTip.py │ │ ├── TreeWidget.py │ │ ├── UndoDelegator.py │ │ ├── WidgetRedirector.py │ │ ├── WindowList.py │ │ ├── ZoomHeight.py │ │ ├── __init__.py │ │ ├── aboutDialog.py │ │ ├── config-extensions.def │ │ ├── config-highlight.def │ │ ├── config-keys.def │ │ ├── config-main.def │ │ ├── configDialog.py │ │ ├── configHandler.py │ │ ├── configHelpSourceEdit.py │ │ ├── configSectionNameDialog.py │ │ ├── dynOptionMenuWidget.py │ │ ├── extend.txt │ │ ├── help.txt │ │ ├── idle.bat │ │ ├── idle.py │ │ ├── idle.pyw │ │ ├── idlever.py │ │ ├── keybindingDialog.py │ │ ├── macosxSupport.py │ │ ├── rpc.py │ │ ├── run.py │ │ ├── tabbedpages.py │ │ ├── testcode.py │ │ └── textView.py │ ├── ihooks.py │ ├── imaplib.py │ ├── imghdr.py │ ├── importlib │ │ └── __init__.py │ ├── imputil.py │ ├── inspect.py │ ├── inspect.pyc │ ├── io.py │ ├── json │ │ ├── __init__.py │ │ ├── decoder.py │ │ ├── encoder.py │ │ ├── scanner.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_check_circular.py │ │ │ ├── test_decode.py │ │ │ ├── test_default.py │ │ │ ├── test_dump.py │ │ │ ├── test_encode_basestring_ascii.py │ │ │ ├── test_fail.py │ │ │ ├── test_float.py │ │ │ ├── test_indent.py │ │ │ ├── test_pass1.py │ │ │ ├── test_pass2.py │ │ │ ├── test_pass3.py │ │ │ ├── test_recursion.py │ │ │ ├── test_scanstring.py │ │ │ ├── test_separators.py │ │ │ ├── test_speedups.py │ │ │ └── test_unicode.py │ │ └── tool.py │ ├── keyword.py │ ├── keyword.pyc │ ├── lib-tk │ │ ├── Canvas.py │ │ ├── Dialog.py │ │ ├── FileDialog.py │ │ ├── FixTk.py │ │ ├── ScrolledText.py │ │ ├── SimpleDialog.py │ │ ├── Tix.py │ │ ├── Tkconstants.py │ │ ├── Tkdnd.py │ │ ├── Tkinter.py │ │ ├── test │ │ │ ├── README │ │ │ ├── runtktests.py │ │ │ ├── test_tkinter │ │ │ │ ├── __init__.py │ │ │ │ ├── test_loadtk.py │ │ │ │ └── test_text.py │ │ │ └── test_ttk │ │ │ │ ├── __init__.py │ │ │ │ ├── support.py │ │ │ │ ├── test_extensions.py │ │ │ │ ├── test_functions.py │ │ │ │ ├── test_style.py │ │ │ │ └── test_widgets.py │ │ ├── tkColorChooser.py │ │ ├── tkCommonDialog.py │ │ ├── tkFileDialog.py │ │ ├── tkFont.py │ │ ├── tkMessageBox.py │ │ ├── tkSimpleDialog.py │ │ ├── ttk.py │ │ └── turtle.py │ ├── lib2to3 │ │ ├── Grammar.txt │ │ ├── PatternGrammar.txt │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── btm_matcher.py │ │ ├── btm_utils.py │ │ ├── fixer_base.py │ │ ├── fixer_util.py │ │ ├── fixes │ │ │ ├── __init__.py │ │ │ ├── fix_apply.py │ │ │ ├── fix_basestring.py │ │ │ ├── fix_buffer.py │ │ │ ├── fix_callable.py │ │ │ ├── fix_dict.py │ │ │ ├── fix_except.py │ │ │ ├── fix_exec.py │ │ │ ├── fix_execfile.py │ │ │ ├── fix_exitfunc.py │ │ │ ├── fix_filter.py │ │ │ ├── fix_funcattrs.py │ │ │ ├── fix_future.py │ │ │ ├── fix_getcwdu.py │ │ │ ├── fix_has_key.py │ │ │ ├── fix_idioms.py │ │ │ ├── fix_import.py │ │ │ ├── fix_imports.py │ │ │ ├── fix_imports2.py │ │ │ ├── fix_input.py │ │ │ ├── fix_intern.py │ │ │ ├── fix_isinstance.py │ │ │ ├── fix_itertools.py │ │ │ ├── fix_itertools_imports.py │ │ │ ├── fix_long.py │ │ │ ├── fix_map.py │ │ │ ├── fix_metaclass.py │ │ │ ├── fix_methodattrs.py │ │ │ ├── fix_ne.py │ │ │ ├── fix_next.py │ │ │ ├── fix_nonzero.py │ │ │ ├── fix_numliterals.py │ │ │ ├── fix_operator.py │ │ │ ├── fix_paren.py │ │ │ ├── fix_print.py │ │ │ ├── fix_raise.py │ │ │ ├── fix_raw_input.py │ │ │ ├── fix_reduce.py │ │ │ ├── fix_renames.py │ │ │ ├── fix_repr.py │ │ │ ├── fix_set_literal.py │ │ │ ├── fix_standarderror.py │ │ │ ├── fix_sys_exc.py │ │ │ ├── fix_throw.py │ │ │ ├── fix_tuple_params.py │ │ │ ├── fix_types.py │ │ │ ├── fix_unicode.py │ │ │ ├── fix_urllib.py │ │ │ ├── fix_ws_comma.py │ │ │ ├── fix_xrange.py │ │ │ ├── fix_xreadlines.py │ │ │ └── fix_zip.py │ │ ├── main.py │ │ ├── patcomp.py │ │ ├── pgen2 │ │ │ ├── __init__.py │ │ │ ├── conv.py │ │ │ ├── driver.py │ │ │ ├── grammar.py │ │ │ ├── literals.py │ │ │ ├── parse.py │ │ │ ├── pgen.py │ │ │ ├── token.py │ │ │ └── tokenize.py │ │ ├── pygram.py │ │ ├── pytree.py │ │ ├── refactor.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ ├── README │ │ │ ├── bom.py │ │ │ ├── crlf.py │ │ │ ├── different_encoding.py │ │ │ ├── fixers │ │ │ │ ├── bad_order.py │ │ │ │ ├── myfixes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fix_explicit.py │ │ │ │ │ ├── fix_first.py │ │ │ │ │ ├── fix_last.py │ │ │ │ │ ├── fix_parrot.py │ │ │ │ │ └── fix_preorder.py │ │ │ │ ├── no_fixer_cls.py │ │ │ │ └── parrot_example.py │ │ │ ├── infinite_recursion.py │ │ │ ├── py2_test_grammar.py │ │ │ └── py3_test_grammar.py │ │ │ ├── pytree_idempotency.py │ │ │ ├── support.py │ │ │ ├── test_all_fixers.py │ │ │ ├── test_fixers.py │ │ │ ├── test_main.py │ │ │ ├── test_parser.py │ │ │ ├── test_pytree.py │ │ │ ├── test_refactor.py │ │ │ └── test_util.py │ ├── linecache.py │ ├── locale.py │ ├── logging │ │ ├── __init__.py │ │ ├── config.py │ │ └── handlers.py │ ├── macpath.py │ ├── macurl2path.py │ ├── mailbox.py │ ├── mailcap.py │ ├── markupbase.py │ ├── md5.py │ ├── mhlib.py │ ├── mimetools.py │ ├── mimetypes.py │ ├── mimify.py │ ├── modulefinder.py │ ├── msilib │ │ ├── __init__.py │ │ ├── schema.py │ │ ├── sequence.py │ │ └── text.py │ ├── multifile.py │ ├── multiprocessing │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── dummy │ │ │ ├── __init__.py │ │ │ └── connection.py │ │ ├── forking.py │ │ ├── heap.py │ │ ├── managers.py │ │ ├── pool.py │ │ ├── process.py │ │ ├── queues.py │ │ ├── reduction.py │ │ ├── sharedctypes.py │ │ ├── synchronize.py │ │ └── util.py │ ├── mutex.py │ ├── netrc.py │ ├── new.py │ ├── nntplib.py │ ├── ntpath.py │ ├── nturl2path.py │ ├── numbers.py │ ├── opcode.py │ ├── opcode.pyc │ ├── optparse.py │ ├── os.py │ ├── os2emxpath.py │ ├── pdb.doc │ ├── pdb.py │ ├── pickle.py │ ├── pickletools.py │ ├── pipes.py │ ├── pkgutil.py │ ├── pkgutil.pyc │ ├── plat-aix3 │ │ ├── IN.py │ │ └── regen │ ├── plat-aix4 │ │ ├── IN.py │ │ └── regen │ ├── plat-atheos │ │ ├── IN.py │ │ ├── TYPES.py │ │ └── regen │ ├── plat-beos5 │ │ ├── IN.py │ │ └── regen │ ├── plat-darwin │ │ ├── IN.py │ │ └── regen │ ├── plat-freebsd4 │ │ ├── IN.py │ │ └── regen │ ├── plat-freebsd5 │ │ ├── IN.py │ │ └── regen │ ├── plat-freebsd6 │ │ ├── IN.py │ │ └── regen │ ├── plat-freebsd7 │ │ ├── IN.py │ │ └── regen │ ├── plat-freebsd8 │ │ ├── IN.py │ │ └── regen │ ├── plat-generic │ │ └── regen │ ├── plat-irix5 │ │ ├── AL.py │ │ ├── CD.py │ │ ├── CL.py │ │ ├── CL_old.py │ │ ├── DEVICE.py │ │ ├── ERRNO.py │ │ ├── FILE.py │ │ ├── FL.py │ │ ├── GET.py │ │ ├── GL.py │ │ ├── GLWS.py │ │ ├── IN.py │ │ ├── IOCTL.py │ │ ├── SV.py │ │ ├── WAIT.py │ │ ├── cddb.py │ │ ├── cdplayer.py │ │ ├── flp.doc │ │ ├── flp.py │ │ ├── jpeg.py │ │ ├── panel.py │ │ ├── panelparser.py │ │ ├── readcd.doc │ │ ├── readcd.py │ │ ├── regen │ │ └── torgb.py │ ├── plat-irix6 │ │ ├── AL.py │ │ ├── CD.py │ │ ├── CL.py │ │ ├── DEVICE.py │ │ ├── ERRNO.py │ │ ├── FILE.py │ │ ├── FL.py │ │ ├── GET.py │ │ ├── GL.py │ │ ├── GLWS.py │ │ ├── IN.py │ │ ├── IOCTL.py │ │ ├── SV.py │ │ ├── WAIT.py │ │ ├── cddb.py │ │ ├── cdplayer.py │ │ ├── flp.doc │ │ ├── flp.py │ │ ├── jpeg.py │ │ ├── panel.py │ │ ├── panelparser.py │ │ ├── readcd.doc │ │ ├── readcd.py │ │ ├── regen │ │ └── torgb.py │ ├── plat-linux2 │ │ ├── CDROM.py │ │ ├── DLFCN.py │ │ ├── IN.py │ │ ├── TYPES.py │ │ └── regen │ ├── plat-mac │ │ ├── Audio_mac.py │ │ ├── Carbon │ │ │ ├── AE.py │ │ │ ├── AH.py │ │ │ ├── Alias.py │ │ │ ├── Aliases.py │ │ │ ├── App.py │ │ │ ├── Appearance.py │ │ │ ├── AppleEvents.py │ │ │ ├── AppleHelp.py │ │ │ ├── CF.py │ │ │ ├── CG.py │ │ │ ├── CarbonEvents.py │ │ │ ├── CarbonEvt.py │ │ │ ├── Cm.py │ │ │ ├── Components.py │ │ │ ├── ControlAccessor.py │ │ │ ├── Controls.py │ │ │ ├── CoreFoundation.py │ │ │ ├── CoreGraphics.py │ │ │ ├── Ctl.py │ │ │ ├── Dialogs.py │ │ │ ├── Dlg.py │ │ │ ├── Drag.py │ │ │ ├── Dragconst.py │ │ │ ├── Events.py │ │ │ ├── Evt.py │ │ │ ├── File.py │ │ │ ├── Files.py │ │ │ ├── Fm.py │ │ │ ├── Folder.py │ │ │ ├── Folders.py │ │ │ ├── Fonts.py │ │ │ ├── Help.py │ │ │ ├── IBCarbon.py │ │ │ ├── IBCarbonRuntime.py │ │ │ ├── Icn.py │ │ │ ├── Icons.py │ │ │ ├── Launch.py │ │ │ ├── LaunchServices.py │ │ │ ├── List.py │ │ │ ├── Lists.py │ │ │ ├── MacHelp.py │ │ │ ├── MacTextEditor.py │ │ │ ├── MediaDescr.py │ │ │ ├── Menu.py │ │ │ ├── Menus.py │ │ │ ├── Mlte.py │ │ │ ├── OSA.py │ │ │ ├── OSAconst.py │ │ │ ├── QDOffscreen.py │ │ │ ├── Qd.py │ │ │ ├── Qdoffs.py │ │ │ ├── Qt.py │ │ │ ├── QuickDraw.py │ │ │ ├── QuickTime.py │ │ │ ├── Res.py │ │ │ ├── Resources.py │ │ │ ├── Scrap.py │ │ │ ├── Snd.py │ │ │ ├── Sndihooks.py │ │ │ ├── Sound.py │ │ │ ├── TE.py │ │ │ ├── TextEdit.py │ │ │ ├── Win.py │ │ │ ├── Windows.py │ │ │ └── __init__.py │ │ ├── EasyDialogs.py │ │ ├── FrameWork.py │ │ ├── MiniAEFrame.py │ │ ├── PixMapWrapper.py │ │ ├── aepack.py │ │ ├── aetools.py │ │ ├── aetypes.py │ │ ├── applesingle.py │ │ ├── appletrawmain.py │ │ ├── appletrunner.py │ │ ├── argvemulator.py │ │ ├── bgenlocations.py │ │ ├── buildtools.py │ │ ├── bundlebuilder.py │ │ ├── cfmfile.py │ │ ├── dialogs.rsrc │ │ ├── errors.rsrc │ │ ├── findertools.py │ │ ├── gensuitemodule.py │ │ ├── ic.py │ │ ├── icopen.py │ │ ├── lib-scriptpackages │ │ │ ├── CodeWarrior │ │ │ │ ├── CodeWarrior_suite.py │ │ │ │ ├── Metrowerks_Shell_Suite.py │ │ │ │ ├── Required.py │ │ │ │ ├── Standard_Suite.py │ │ │ │ └── __init__.py │ │ │ ├── Explorer │ │ │ │ ├── Microsoft_Internet_Explorer.py │ │ │ │ ├── Netscape_Suite.py │ │ │ │ ├── Required_Suite.py │ │ │ │ ├── Standard_Suite.py │ │ │ │ ├── URL_Suite.py │ │ │ │ ├── Web_Browser_Suite.py │ │ │ │ └── __init__.py │ │ │ ├── Finder │ │ │ │ ├── Containers_and_folders.py │ │ │ │ ├── Enumerations.py │ │ │ │ ├── Files.py │ │ │ │ ├── Finder_Basics.py │ │ │ │ ├── Finder_items.py │ │ │ │ ├── Legacy_suite.py │ │ │ │ ├── Standard_Suite.py │ │ │ │ ├── Type_Definitions.py │ │ │ │ ├── Window_classes.py │ │ │ │ └── __init__.py │ │ │ ├── Netscape │ │ │ │ ├── Mozilla_suite.py │ │ │ │ ├── PowerPlant.py │ │ │ │ ├── Required_suite.py │ │ │ │ ├── Standard_Suite.py │ │ │ │ ├── Standard_URL_suite.py │ │ │ │ ├── Text.py │ │ │ │ ├── WorldWideWeb_suite.py │ │ │ │ └── __init__.py │ │ │ ├── StdSuites │ │ │ │ ├── AppleScript_Suite.py │ │ │ │ ├── Macintosh_Connectivity_Clas.py │ │ │ │ ├── QuickDraw_Graphics_Suite.py │ │ │ │ ├── QuickDraw_Graphics_Suppleme.py │ │ │ │ ├── Required_Suite.py │ │ │ │ ├── Standard_Suite.py │ │ │ │ ├── Table_Suite.py │ │ │ │ ├── Text_Suite.py │ │ │ │ ├── Type_Names_Suite.py │ │ │ │ └── __init__.py │ │ │ ├── SystemEvents │ │ │ │ ├── Disk_Folder_File_Suite.py │ │ │ │ ├── Folder_Actions_Suite.py │ │ │ │ ├── Hidden_Suite.py │ │ │ │ ├── Login_Items_Suite.py │ │ │ │ ├── Power_Suite.py │ │ │ │ ├── Processes_Suite.py │ │ │ │ ├── Standard_Suite.py │ │ │ │ ├── System_Events_Suite.py │ │ │ │ ├── Text_Suite.py │ │ │ │ └── __init__.py │ │ │ ├── Terminal │ │ │ │ ├── Standard_Suite.py │ │ │ │ ├── Terminal_Suite.py │ │ │ │ ├── Text_Suite.py │ │ │ │ └── __init__.py │ │ │ └── _builtinSuites │ │ │ │ ├── __init__.py │ │ │ │ └── builtin_Suite.py │ │ ├── macerrors.py │ │ ├── macostools.py │ │ ├── macresource.py │ │ ├── pimp.py │ │ ├── terminalcommand.py │ │ └── videoreader.py │ ├── plat-netbsd1 │ │ ├── IN.py │ │ └── regen │ ├── plat-next3 │ │ └── regen │ ├── plat-os2emx │ │ ├── IN.py │ │ ├── SOCKET.py │ │ ├── _emx_link.py │ │ ├── grp.py │ │ ├── pwd.py │ │ └── regen │ ├── plat-riscos │ │ ├── riscosenviron.py │ │ ├── riscospath.py │ │ └── rourl2path.py │ ├── plat-sunos5 │ │ ├── CDIO.py │ │ ├── DLFCN.py │ │ ├── IN.py │ │ ├── STROPTS.py │ │ ├── SUNAUDIODEV.py │ │ ├── TYPES.py │ │ └── regen │ ├── plat-unixware7 │ │ ├── IN.py │ │ ├── STROPTS.py │ │ └── regen │ ├── platform.py │ ├── plistlib.py │ ├── popen2.py │ ├── poplib.py │ ├── posixfile.py │ ├── posixpath.py │ ├── pprint.py │ ├── profile.py │ ├── pstats.py │ ├── pty.py │ ├── py_compile.py │ ├── pyclbr.py │ ├── pydoc.py │ ├── pydoc.pyc │ ├── pydoc_data │ │ ├── __init__.py │ │ └── topics.py │ ├── quopri.py │ ├── random.py │ ├── random.pyc │ ├── re.py │ ├── repr.py │ ├── repr.pyc │ ├── rexec.py │ ├── rfc822.py │ ├── rlcompleter.py │ ├── robotparser.py │ ├── runpy.py │ ├── sched.py │ ├── sets.py │ ├── sgmllib.py │ ├── sha.py │ ├── shelve.py │ ├── shlex.py │ ├── shutil.py │ ├── site-packages │ │ └── README │ ├── site.py │ ├── smtpd.py │ ├── smtplib.py │ ├── sndhdr.py │ ├── socket.py │ ├── sqlite3 │ │ ├── __init__.py │ │ ├── dbapi2.py │ │ ├── dump.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── dbapi.py │ │ │ ├── dump.py │ │ │ ├── factory.py │ │ │ ├── hooks.py │ │ │ ├── py25tests.py │ │ │ ├── regression.py │ │ │ ├── transactions.py │ │ │ ├── types.py │ │ │ └── userfunctions.py │ ├── sre.py │ ├── sre_compile.py │ ├── sre_constants.py │ ├── sre_parse.py │ ├── ssl.py │ ├── stat.py │ ├── statvfs.py │ ├── string.py │ ├── string.pyc │ ├── stringold.py │ ├── stringprep.py │ ├── struct.py │ ├── subprocess.py │ ├── sunau.py │ ├── sunaudio.py │ ├── symbol.py │ ├── symtable.py │ ├── sysconfig.py │ ├── tabnanny.py │ ├── tarfile.py │ ├── telnetlib.py │ ├── tempfile.py │ ├── test │ │ ├── 185test.db │ │ ├── Sine-1000Hz-300ms.aif │ │ ├── __init__.py │ │ ├── audiotest.au │ │ ├── autotest.py │ │ ├── bad_coding.py │ │ ├── bad_coding2.py │ │ ├── badcert.pem │ │ ├── badkey.pem │ │ ├── badsyntax_future3.py │ │ ├── badsyntax_future4.py │ │ ├── badsyntax_future5.py │ │ ├── badsyntax_future6.py │ │ ├── badsyntax_future7.py │ │ ├── badsyntax_future8.py │ │ ├── badsyntax_future9.py │ │ ├── badsyntax_nocaret.py │ │ ├── buffer_tests.py │ │ ├── cfgparser.1 │ │ ├── check_soundcard.vbs │ │ ├── cjkencodings │ │ │ ├── big5-utf8.txt │ │ │ ├── big5.txt │ │ │ ├── big5hkscs-utf8.txt │ │ │ ├── big5hkscs.txt │ │ │ ├── cp949-utf8.txt │ │ │ ├── cp949.txt │ │ │ ├── euc_jisx0213-utf8.txt │ │ │ ├── euc_jisx0213.txt │ │ │ ├── euc_jp-utf8.txt │ │ │ ├── euc_jp.txt │ │ │ ├── euc_kr-utf8.txt │ │ │ ├── euc_kr.txt │ │ │ ├── gb18030-utf8.txt │ │ │ ├── gb18030.txt │ │ │ ├── gb2312-utf8.txt │ │ │ ├── gb2312.txt │ │ │ ├── gbk-utf8.txt │ │ │ ├── gbk.txt │ │ │ ├── hz-utf8.txt │ │ │ ├── hz.txt │ │ │ ├── johab-utf8.txt │ │ │ ├── johab.txt │ │ │ ├── shift_jis-utf8.txt │ │ │ ├── shift_jis.txt │ │ │ ├── shift_jisx0213-utf8.txt │ │ │ └── shift_jisx0213.txt │ │ ├── cmath_testcases.txt │ │ ├── crashers │ │ │ ├── README │ │ │ ├── bogus_code_obj.py │ │ │ ├── borrowed_ref_1.py │ │ │ ├── borrowed_ref_2.py │ │ │ ├── compiler_recursion.py │ │ │ ├── gc_has_finalizer.py │ │ │ ├── gc_inspection.py │ │ │ ├── infinite_loop_re.py │ │ │ ├── loosing_mro_ref.py │ │ │ ├── mutation_inside_cyclegc.py │ │ │ ├── nasty_eq_vs_dict.py │ │ │ ├── recursion_limit_too_high.py │ │ │ └── recursive_call.py │ │ ├── curses_tests.py │ │ ├── data │ │ │ └── README │ │ ├── decimaltestdata │ │ │ ├── abs.decTest │ │ │ ├── add.decTest │ │ │ ├── and.decTest │ │ │ ├── base.decTest │ │ │ ├── clamp.decTest │ │ │ ├── class.decTest │ │ │ ├── compare.decTest │ │ │ ├── comparetotal.decTest │ │ │ ├── comparetotmag.decTest │ │ │ ├── copy.decTest │ │ │ ├── copyabs.decTest │ │ │ ├── copynegate.decTest │ │ │ ├── copysign.decTest │ │ │ ├── ddAbs.decTest │ │ │ ├── ddAdd.decTest │ │ │ ├── ddAnd.decTest │ │ │ ├── ddBase.decTest │ │ │ ├── ddCanonical.decTest │ │ │ ├── ddClass.decTest │ │ │ ├── ddCompare.decTest │ │ │ ├── ddCompareSig.decTest │ │ │ ├── ddCompareTotal.decTest │ │ │ ├── ddCompareTotalMag.decTest │ │ │ ├── ddCopy.decTest │ │ │ ├── ddCopyAbs.decTest │ │ │ ├── ddCopyNegate.decTest │ │ │ ├── ddCopySign.decTest │ │ │ ├── ddDivide.decTest │ │ │ ├── ddDivideInt.decTest │ │ │ ├── ddEncode.decTest │ │ │ ├── ddFMA.decTest │ │ │ ├── ddInvert.decTest │ │ │ ├── ddLogB.decTest │ │ │ ├── ddMax.decTest │ │ │ ├── ddMaxMag.decTest │ │ │ ├── ddMin.decTest │ │ │ ├── ddMinMag.decTest │ │ │ ├── ddMinus.decTest │ │ │ ├── ddMultiply.decTest │ │ │ ├── ddNextMinus.decTest │ │ │ ├── ddNextPlus.decTest │ │ │ ├── ddNextToward.decTest │ │ │ ├── ddOr.decTest │ │ │ ├── ddPlus.decTest │ │ │ ├── ddQuantize.decTest │ │ │ ├── ddReduce.decTest │ │ │ ├── ddRemainder.decTest │ │ │ ├── ddRemainderNear.decTest │ │ │ ├── ddRotate.decTest │ │ │ ├── ddSameQuantum.decTest │ │ │ ├── ddScaleB.decTest │ │ │ ├── ddShift.decTest │ │ │ ├── ddSubtract.decTest │ │ │ ├── ddToIntegral.decTest │ │ │ ├── ddXor.decTest │ │ │ ├── decDouble.decTest │ │ │ ├── decQuad.decTest │ │ │ ├── decSingle.decTest │ │ │ ├── divide.decTest │ │ │ ├── divideint.decTest │ │ │ ├── dqAbs.decTest │ │ │ ├── dqAdd.decTest │ │ │ ├── dqAnd.decTest │ │ │ ├── dqBase.decTest │ │ │ ├── dqCanonical.decTest │ │ │ ├── dqClass.decTest │ │ │ ├── dqCompare.decTest │ │ │ ├── dqCompareSig.decTest │ │ │ ├── dqCompareTotal.decTest │ │ │ ├── dqCompareTotalMag.decTest │ │ │ ├── dqCopy.decTest │ │ │ ├── dqCopyAbs.decTest │ │ │ ├── dqCopyNegate.decTest │ │ │ ├── dqCopySign.decTest │ │ │ ├── dqDivide.decTest │ │ │ ├── dqDivideInt.decTest │ │ │ ├── dqEncode.decTest │ │ │ ├── dqFMA.decTest │ │ │ ├── dqInvert.decTest │ │ │ ├── dqLogB.decTest │ │ │ ├── dqMax.decTest │ │ │ ├── dqMaxMag.decTest │ │ │ ├── dqMin.decTest │ │ │ ├── dqMinMag.decTest │ │ │ ├── dqMinus.decTest │ │ │ ├── dqMultiply.decTest │ │ │ ├── dqNextMinus.decTest │ │ │ ├── dqNextPlus.decTest │ │ │ ├── dqNextToward.decTest │ │ │ ├── dqOr.decTest │ │ │ ├── dqPlus.decTest │ │ │ ├── dqQuantize.decTest │ │ │ ├── dqReduce.decTest │ │ │ ├── dqRemainder.decTest │ │ │ ├── dqRemainderNear.decTest │ │ │ ├── dqRotate.decTest │ │ │ ├── dqSameQuantum.decTest │ │ │ ├── dqScaleB.decTest │ │ │ ├── dqShift.decTest │ │ │ ├── dqSubtract.decTest │ │ │ ├── dqToIntegral.decTest │ │ │ ├── dqXor.decTest │ │ │ ├── dsBase.decTest │ │ │ ├── dsEncode.decTest │ │ │ ├── exp.decTest │ │ │ ├── extra.decTest │ │ │ ├── fma.decTest │ │ │ ├── inexact.decTest │ │ │ ├── invert.decTest │ │ │ ├── ln.decTest │ │ │ ├── log10.decTest │ │ │ ├── logb.decTest │ │ │ ├── max.decTest │ │ │ ├── maxmag.decTest │ │ │ ├── min.decTest │ │ │ ├── minmag.decTest │ │ │ ├── minus.decTest │ │ │ ├── multiply.decTest │ │ │ ├── nextminus.decTest │ │ │ ├── nextplus.decTest │ │ │ ├── nexttoward.decTest │ │ │ ├── or.decTest │ │ │ ├── plus.decTest │ │ │ ├── power.decTest │ │ │ ├── powersqrt.decTest │ │ │ ├── quantize.decTest │ │ │ ├── randomBound32.decTest │ │ │ ├── randoms.decTest │ │ │ ├── reduce.decTest │ │ │ ├── remainder.decTest │ │ │ ├── remainderNear.decTest │ │ │ ├── rescale.decTest │ │ │ ├── rotate.decTest │ │ │ ├── rounding.decTest │ │ │ ├── samequantum.decTest │ │ │ ├── scaleb.decTest │ │ │ ├── shift.decTest │ │ │ ├── squareroot.decTest │ │ │ ├── subtract.decTest │ │ │ ├── testall.decTest │ │ │ ├── tointegral.decTest │ │ │ ├── tointegralx.decTest │ │ │ └── xor.decTest │ │ ├── doctest_aliases.py │ │ ├── double_const.py │ │ ├── empty.vbs │ │ ├── exception_hierarchy.txt │ │ ├── floating_points.txt │ │ ├── fork_wait.py │ │ ├── formatfloat_testcases.txt │ │ ├── gdb_sample.py │ │ ├── greyrgb.uue │ │ ├── https_svn_python_org_root.pem │ │ ├── ieee754.txt │ │ ├── infinite_reload.py │ │ ├── inspect_fodder.py │ │ ├── inspect_fodder2.py │ │ ├── keycert.pem │ │ ├── leakers │ │ │ ├── README.txt │ │ │ ├── __init__.py │ │ │ ├── test_ctypes.py │ │ │ ├── test_dictself.py │ │ │ ├── test_gestalt.py │ │ │ └── test_selftype.py │ │ ├── list_tests.py │ │ ├── lock_tests.py │ │ ├── mapping_tests.py │ │ ├── math_testcases.txt │ │ ├── nullcert.pem │ │ ├── outstanding_bugs.py │ │ ├── pickletester.py │ │ ├── profilee.py │ │ ├── pyclbr_input.py │ │ ├── pydoc_mod.py │ │ ├── pydocfodder.py │ │ ├── pystone.py │ │ ├── randv2_32.pck │ │ ├── randv2_64.pck │ │ ├── randv3.pck │ │ ├── re_tests.py │ │ ├── regex_tests.py │ │ ├── regrtest.py │ │ ├── relimport.py │ │ ├── reperf.py │ │ ├── sample_doctest.py │ │ ├── script_helper.py │ │ ├── seq_tests.py │ │ ├── sgml_input.html │ │ ├── sha256.pem │ │ ├── sortperf.py │ │ ├── ssl_cert.pem │ │ ├── ssl_key.pem │ │ ├── string_tests.py │ │ ├── subprocessdata │ │ │ └── sigchild_ignore.py │ │ ├── svn_python_org_https_cert.pem │ │ ├── test_MimeWriter.py │ │ ├── test_SimpleHTTPServer.py │ │ ├── test_StringIO.py │ │ ├── test___all__.py │ │ ├── test___future__.py │ │ ├── test__locale.py │ │ ├── test_abc.py │ │ ├── test_abstract_numbers.py │ │ ├── test_aepack.py │ │ ├── test_aifc.py │ │ ├── test_al.py │ │ ├── test_anydbm.py │ │ ├── test_applesingle.py │ │ ├── test_argparse.py │ │ ├── test_array.py │ │ ├── test_ascii_formatd.py │ │ ├── test_ast.py │ │ ├── test_asynchat.py │ │ ├── test_asyncore.py │ │ ├── test_atexit.py │ │ ├── test_audioop.py │ │ ├── test_augassign.py │ │ ├── test_base64.py │ │ ├── test_bastion.py │ │ ├── test_bigaddrspace.py │ │ ├── test_bigmem.py │ │ ├── test_binascii.py │ │ ├── test_binhex.py │ │ ├── test_binop.py │ │ ├── test_bisect.py │ │ ├── test_bool.py │ │ ├── test_bsddb.py │ │ ├── test_bsddb185.py │ │ ├── test_bsddb3.py │ │ ├── test_buffer.py │ │ ├── test_bufio.py │ │ ├── test_builtin.py │ │ ├── test_bytes.py │ │ ├── test_bz2.py │ │ ├── test_calendar.py │ │ ├── test_call.py │ │ ├── test_capi.py │ │ ├── test_cd.py │ │ ├── test_cfgparser.py │ │ ├── test_cgi.py │ │ ├── test_charmapcodec.py │ │ ├── test_cl.py │ │ ├── test_class.py │ │ ├── test_cmath.py │ │ ├── test_cmd.py │ │ ├── test_cmd_line.py │ │ ├── test_cmd_line_script.py │ │ ├── test_code.py │ │ ├── test_codeccallbacks.py │ │ ├── test_codecencodings_cn.py │ │ ├── test_codecencodings_hk.py │ │ ├── test_codecencodings_jp.py │ │ ├── test_codecencodings_kr.py │ │ ├── test_codecencodings_tw.py │ │ ├── test_codecmaps_cn.py │ │ ├── test_codecmaps_hk.py │ │ ├── test_codecmaps_jp.py │ │ ├── test_codecmaps_kr.py │ │ ├── test_codecmaps_tw.py │ │ ├── test_codecs.py │ │ ├── test_codeop.py │ │ ├── test_coding.py │ │ ├── test_coercion.py │ │ ├── test_collections.py │ │ ├── test_colorsys.py │ │ ├── test_commands.py │ │ ├── test_compare.py │ │ ├── test_compile.py │ │ ├── test_compileall.py │ │ ├── test_compiler.py │ │ ├── test_complex.py │ │ ├── test_complex_args.py │ │ ├── test_contains.py │ │ ├── test_contextlib.py │ │ ├── test_cookie.py │ │ ├── test_cookielib.py │ │ ├── test_copy.py │ │ ├── test_copy_reg.py │ │ ├── test_cpickle.py │ │ ├── test_cprofile.py │ │ ├── test_crypt.py │ │ ├── test_csv.py │ │ ├── test_ctypes.py │ │ ├── test_curses.py │ │ ├── test_datetime.py │ │ ├── test_dbm.py │ │ ├── test_decimal.py │ │ ├── test_decorators.py │ │ ├── test_defaultdict.py │ │ ├── test_deque.py │ │ ├── test_descr.py │ │ ├── test_descrtut.py │ │ ├── test_dict.py │ │ ├── test_dictcomps.py │ │ ├── test_dictviews.py │ │ ├── test_difflib.py │ │ ├── test_difflib_expect.html │ │ ├── test_dircache.py │ │ ├── test_dis.py │ │ ├── test_distutils.py │ │ ├── test_dl.py │ │ ├── test_doctest.py │ │ ├── test_doctest.txt │ │ ├── test_doctest2.py │ │ ├── test_doctest2.txt │ │ ├── test_doctest3.txt │ │ ├── test_doctest4.txt │ │ ├── test_docxmlrpc.py │ │ ├── test_dumbdbm.py │ │ ├── test_dummy_thread.py │ │ ├── test_dummy_threading.py │ │ ├── test_email.py │ │ ├── test_email_codecs.py │ │ ├── test_email_renamed.py │ │ ├── test_enumerate.py │ │ ├── test_eof.py │ │ ├── test_epoll.py │ │ ├── test_errno.py │ │ ├── test_exception_variations.py │ │ ├── test_exceptions.py │ │ ├── test_extcall.py │ │ ├── test_fcntl.py │ │ ├── test_file.py │ │ ├── test_file2k.py │ │ ├── test_filecmp.py │ │ ├── test_fileinput.py │ │ ├── test_fileio.py │ │ ├── test_float.py │ │ ├── test_fnmatch.py │ │ ├── test_fork1.py │ │ ├── test_format.py │ │ ├── test_fpformat.py │ │ ├── test_fractions.py │ │ ├── test_frozen.py │ │ ├── test_ftplib.py │ │ ├── test_funcattrs.py │ │ ├── test_functools.py │ │ ├── test_future.py │ │ ├── test_future1.py │ │ ├── test_future2.py │ │ ├── test_future3.py │ │ ├── test_future4.py │ │ ├── test_future5.py │ │ ├── test_future_builtins.py │ │ ├── test_gc.py │ │ ├── test_gdb.py │ │ ├── test_gdbm.py │ │ ├── test_generators.py │ │ ├── test_genericpath.py │ │ ├── test_genexps.py │ │ ├── test_getargs.py │ │ ├── test_getargs2.py │ │ ├── test_getopt.py │ │ ├── test_gettext.py │ │ ├── test_gl.py │ │ ├── test_glob.py │ │ ├── test_global.py │ │ ├── test_grammar.py │ │ ├── test_grp.py │ │ ├── test_gzip.py │ │ ├── test_hash.py │ │ ├── test_hashlib.py │ │ ├── test_heapq.py │ │ ├── test_hmac.py │ │ ├── test_hotshot.py │ │ ├── test_htmllib.py │ │ ├── test_htmlparser.py │ │ ├── test_httplib.py │ │ ├── test_httpservers.py │ │ ├── test_imageop.py │ │ ├── test_imaplib.py │ │ ├── test_imgfile.py │ │ ├── test_imp.py │ │ ├── test_import.py │ │ ├── test_importhooks.py │ │ ├── test_importlib.py │ │ ├── test_index.py │ │ ├── test_inspect.py │ │ ├── test_int.py │ │ ├── test_int_literal.py │ │ ├── test_io.py │ │ ├── test_ioctl.py │ │ ├── test_isinstance.py │ │ ├── test_iter.py │ │ ├── test_iterlen.py │ │ ├── test_itertools.py │ │ ├── test_json.py │ │ ├── test_kqueue.py │ │ ├── test_largefile.py │ │ ├── test_lib2to3.py │ │ ├── test_linecache.py │ │ ├── test_linuxaudiodev.py │ │ ├── test_list.py │ │ ├── test_locale.py │ │ ├── test_logging.py │ │ ├── test_long.py │ │ ├── test_long_future.py │ │ ├── test_longexp.py │ │ ├── test_macos.py │ │ ├── test_macostools.py │ │ ├── test_macpath.py │ │ ├── test_mailbox.py │ │ ├── test_marshal.py │ │ ├── test_math.py │ │ ├── test_md5.py │ │ ├── test_memoryio.py │ │ ├── test_memoryview.py │ │ ├── test_mhlib.py │ │ ├── test_mimetools.py │ │ ├── test_mimetypes.py │ │ ├── test_minidom.py │ │ ├── test_mmap.py │ │ ├── test_module.py │ │ ├── test_modulefinder.py │ │ ├── test_msilib.py │ │ ├── test_multibytecodec.py │ │ ├── test_multibytecodec_support.py │ │ ├── test_multifile.py │ │ ├── test_multiprocessing.py │ │ ├── test_mutants.py │ │ ├── test_mutex.py │ │ ├── test_netrc.py │ │ ├── test_new.py │ │ ├── test_nis.py │ │ ├── test_normalization.py │ │ ├── test_ntpath.py │ │ ├── test_old_mailbox.py │ │ ├── test_opcodes.py │ │ ├── test_openpty.py │ │ ├── test_operator.py │ │ ├── test_optparse.py │ │ ├── test_os.py │ │ ├── test_ossaudiodev.py │ │ ├── test_parser.py │ │ ├── test_pdb.py │ │ ├── test_peepholer.py │ │ ├── test_pep247.py │ │ ├── test_pep263.py │ │ ├── test_pep277.py │ │ ├── test_pep292.py │ │ ├── test_pep352.py │ │ ├── test_pickle.py │ │ ├── test_pickletools.py │ │ ├── test_pipes.py │ │ ├── test_pkg.py │ │ ├── test_pkgimport.py │ │ ├── test_pkgutil.py │ │ ├── test_platform.py │ │ ├── test_plistlib.py │ │ ├── test_poll.py │ │ ├── test_popen.py │ │ ├── test_popen2.py │ │ ├── test_poplib.py │ │ ├── test_posix.py │ │ ├── test_posixpath.py │ │ ├── test_pow.py │ │ ├── test_pprint.py │ │ ├── test_print.py │ │ ├── test_profile.py │ │ ├── test_property.py │ │ ├── test_pstats.py │ │ ├── test_pty.py │ │ ├── test_pwd.py │ │ ├── test_py3kwarn.py │ │ ├── test_pyclbr.py │ │ ├── test_pydoc.py │ │ ├── test_pyexpat.py │ │ ├── test_queue.py │ │ ├── test_quopri.py │ │ ├── test_random.py │ │ ├── test_re.py │ │ ├── test_readline.py │ │ ├── test_repr.py │ │ ├── test_resource.py │ │ ├── test_rfc822.py │ │ ├── test_richcmp.py │ │ ├── test_rlcompleter.py │ │ ├── test_robotparser.py │ │ ├── test_runpy.py │ │ ├── test_sax.py │ │ ├── test_scope.py │ │ ├── test_scriptpackages.py │ │ ├── test_select.py │ │ ├── test_set.py │ │ ├── test_setcomps.py │ │ ├── test_sets.py │ │ ├── test_sgmllib.py │ │ ├── test_sha.py │ │ ├── test_shelve.py │ │ ├── test_shlex.py │ │ ├── test_shutil.py │ │ ├── test_signal.py │ │ ├── test_site.py │ │ ├── test_slice.py │ │ ├── test_smtplib.py │ │ ├── test_smtpnet.py │ │ ├── test_socket.py │ │ ├── test_socketserver.py │ │ ├── test_softspace.py │ │ ├── test_sort.py │ │ ├── test_sqlite.py │ │ ├── test_ssl.py │ │ ├── test_startfile.py │ │ ├── test_str.py │ │ ├── test_strftime.py │ │ ├── test_string.py │ │ ├── test_stringprep.py │ │ ├── test_strop.py │ │ ├── test_strptime.py │ │ ├── test_strtod.py │ │ ├── test_struct.py │ │ ├── test_structmembers.py │ │ ├── test_structseq.py │ │ ├── test_subprocess.py │ │ ├── test_sunaudiodev.py │ │ ├── test_sundry.py │ │ ├── test_support.py │ │ ├── test_symtable.py │ │ ├── test_syntax.py │ │ ├── test_sys.py │ │ ├── test_sys_setprofile.py │ │ ├── test_sys_settrace.py │ │ ├── test_sysconfig.py │ │ ├── test_tarfile.py │ │ ├── test_tcl.py │ │ ├── test_telnetlib.py │ │ ├── test_tempfile.py │ │ ├── test_textwrap.py │ │ ├── test_thread.py │ │ ├── test_threaded_import.py │ │ ├── test_threadedtempfile.py │ │ ├── test_threading.py │ │ ├── test_threading_local.py │ │ ├── test_threadsignals.py │ │ ├── test_time.py │ │ ├── test_timeout.py │ │ ├── test_tk.py │ │ ├── test_tokenize.py │ │ ├── test_trace.py │ │ ├── test_traceback.py │ │ ├── test_transformer.py │ │ ├── test_ttk_guionly.py │ │ ├── test_ttk_textonly.py │ │ ├── test_tuple.py │ │ ├── test_typechecks.py │ │ ├── test_types.py │ │ ├── test_ucn.py │ │ ├── test_unary.py │ │ ├── test_undocumented_details.py │ │ ├── test_unicode.py │ │ ├── test_unicode_file.py │ │ ├── test_unicodedata.py │ │ ├── test_unittest.py │ │ ├── test_univnewlines.py │ │ ├── test_univnewlines2k.py │ │ ├── test_unpack.py │ │ ├── test_urllib.py │ │ ├── test_urllib2.py │ │ ├── test_urllib2_localnet.py │ │ ├── test_urllib2net.py │ │ ├── test_urllibnet.py │ │ ├── test_urlparse.py │ │ ├── test_userdict.py │ │ ├── test_userlist.py │ │ ├── test_userstring.py │ │ ├── test_uu.py │ │ ├── test_uuid.py │ │ ├── test_wait3.py │ │ ├── test_wait4.py │ │ ├── test_warnings.py │ │ ├── test_wave.py │ │ ├── test_weakref.py │ │ ├── test_weakset.py │ │ ├── test_whichdb.py │ │ ├── test_winreg.py │ │ ├── test_winsound.py │ │ ├── test_with.py │ │ ├── test_wsgiref.py │ │ ├── test_xdrlib.py │ │ ├── test_xml_etree.py │ │ ├── test_xml_etree_c.py │ │ ├── test_xmllib.py │ │ ├── test_xmlrpc.py │ │ ├── test_xpickle.py │ │ ├── test_xrange.py │ │ ├── test_zipfile.py │ │ ├── test_zipfile64.py │ │ ├── test_zipimport.py │ │ ├── test_zipimport_support.py │ │ ├── test_zlib.py │ │ ├── testall.py │ │ ├── testcodec.py │ │ ├── testimg.uue │ │ ├── testimgr.uue │ │ ├── testrgb.uue │ │ ├── testtar.tar │ │ ├── tf_inherit_check.py │ │ ├── threaded_import_hangers.py │ │ ├── time_hashlib.py │ │ ├── tokenize_tests.txt │ │ ├── tracedmodules │ │ │ ├── __init__.py │ │ │ └── testmod.py │ │ ├── warning_tests.py │ │ ├── win_console_handler.py │ │ ├── wrongcert.pem │ │ ├── xmltestdata │ │ │ ├── simple-ns.xml │ │ │ ├── simple.xml │ │ │ ├── test.xml │ │ │ └── test.xml.out │ │ ├── xmltests.py │ │ └── zipdir.zip │ ├── textwrap.py │ ├── this.py │ ├── threading.py │ ├── timeit.py │ ├── toaiff.py │ ├── token.py │ ├── token.pyc │ ├── tokenize.py │ ├── tokenize.pyc │ ├── trace.py │ ├── traceback.py │ ├── tty.py │ ├── types.py │ ├── unittest │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── case.py │ │ ├── loader.py │ │ ├── main.py │ │ ├── result.py │ │ ├── runner.py │ │ ├── signals.py │ │ ├── suite.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── dummy.py │ │ │ ├── support.py │ │ │ ├── test_assertions.py │ │ │ ├── test_break.py │ │ │ ├── test_case.py │ │ │ ├── test_discovery.py │ │ │ ├── test_functiontestcase.py │ │ │ ├── test_loader.py │ │ │ ├── test_program.py │ │ │ ├── test_result.py │ │ │ ├── test_runner.py │ │ │ ├── test_setups.py │ │ │ ├── test_skipping.py │ │ │ └── test_suite.py │ │ └── util.py │ ├── urllib.py │ ├── urllib2.py │ ├── urlparse.py │ ├── user.py │ ├── uu.py │ ├── uuid.py │ ├── warnings.py │ ├── wave.py │ ├── weakref.py │ ├── weakref.pyc │ ├── webbrowser.py │ ├── whichdb.py │ ├── wsgiref.egg-info │ ├── wsgiref │ │ ├── __init__.py │ │ ├── handlers.py │ │ ├── headers.py │ │ ├── simple_server.py │ │ ├── util.py │ │ └── validate.py │ ├── xdrlib.py │ ├── xml │ │ ├── __init__.py │ │ ├── dom │ │ │ ├── NodeFilter.py │ │ │ ├── __init__.py │ │ │ ├── domreg.py │ │ │ ├── expatbuilder.py │ │ │ ├── minicompat.py │ │ │ ├── minidom.py │ │ │ ├── pulldom.py │ │ │ └── xmlbuilder.py │ │ ├── etree │ │ │ ├── ElementInclude.py │ │ │ ├── ElementPath.py │ │ │ ├── ElementTree.py │ │ │ ├── __init__.py │ │ │ └── cElementTree.py │ │ ├── parsers │ │ │ ├── __init__.py │ │ │ └── expat.py │ │ └── sax │ │ │ ├── __init__.py │ │ │ ├── _exceptions.py │ │ │ ├── expatreader.py │ │ │ ├── handler.py │ │ │ ├── saxutils.py │ │ │ └── xmlreader.py │ ├── xmllib.py │ ├── xmlrpclib.py │ └── zipfile.py ├── include │ ├── Python-ast.h │ ├── Python.h │ ├── abstract.h │ ├── asdl.h │ ├── ast.h │ ├── bitset.h │ ├── boolobject.h │ ├── bufferobject.h │ ├── bytearrayobject.h │ ├── bytes_methods.h │ ├── bytesobject.h │ ├── cStringIO.h │ ├── cellobject.h │ ├── ceval.h │ ├── classobject.h │ ├── cobject.h │ ├── code.h │ ├── codecs.h │ ├── compile.h │ ├── complexobject.h │ ├── datetime.h │ ├── descrobject.h │ ├── dictobject.h │ ├── dtoa.h │ ├── enumobject.h │ ├── errcode.h │ ├── eval.h │ ├── fileobject.h │ ├── floatobject.h │ ├── frameobject.h │ ├── funcobject.h │ ├── genobject.h │ ├── graminit.h │ ├── grammar.h │ ├── import.h │ ├── intobject.h │ ├── intrcheck.h │ ├── iterobject.h │ ├── listobject.h │ ├── longintrepr.h │ ├── longobject.h │ ├── marshal.h │ ├── memoryobject.h │ ├── metagrammar.h │ ├── methodobject.h │ ├── modsupport.h │ ├── moduleobject.h │ ├── node.h │ ├── object.h │ ├── objimpl.h │ ├── opcode.h │ ├── osdefs.h │ ├── parsetok.h │ ├── patchlevel.h │ ├── pgen.h │ ├── pgenheaders.h │ ├── py_curses.h │ ├── pyarena.h │ ├── pycapsule.h │ ├── pyconfig.h │ ├── pyctype.h │ ├── pydebug.h │ ├── pyerrors.h │ ├── pyexpat.h │ ├── pyfpe.h │ ├── pygetopt.h │ ├── pymacconfig.h │ ├── pymactoolbox.h │ ├── pymath.h │ ├── pymem.h │ ├── pyport.h │ ├── pystate.h │ ├── pystrcmp.h │ ├── pystrtod.h │ ├── pythonrun.h │ ├── pythread.h │ ├── rangeobject.h │ ├── setobject.h │ ├── sliceobject.h │ ├── stringobject.h │ ├── structmember.h │ ├── structseq.h │ ├── symtable.h │ ├── sysmodule.h │ ├── timefuncs.h │ ├── token.h │ ├── traceback.h │ ├── tupleobject.h │ ├── ucnhash.h │ ├── unicodeobject.h │ ├── warnings.h │ └── weakrefobject.h └── libs │ ├── _bsddb.lib │ ├── _ctypes.lib │ ├── _ctypes_test.lib │ ├── _elementtree.lib │ ├── _hashlib.lib │ ├── _msi.lib │ ├── _multiprocessing.lib │ ├── _socket.lib │ ├── _sqlite3.lib │ ├── _ssl.lib │ ├── _testcapi.lib │ ├── _tkinter.lib │ ├── bz2.lib │ ├── libpython27.a │ ├── pyexpat.lib │ ├── python27.lib │ ├── select.lib │ ├── unicodedata.lib │ └── winsound.lib ├── README.md ├── autogen.py ├── bin ├── libpyautoc.a ├── pyautoc.dll └── pyautoc.lib ├── demos ├── demo_convert.c ├── demo_embed.c ├── demo_func.c ├── demo_mod.c ├── demo_struct.c └── setup.py ├── include ├── PyAutoC.h └── PyAutoFunctionMacros.h └── src ├── PyAutoC.c ├── PyAutoConvert.c ├── PyAutoFunction.c ├── PyAutoHashtable.c ├── PyAutoStruct.c └── PyAutoType.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Makefile -------------------------------------------------------------------------------- /Python27/DLLs/_bsddb.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/_bsddb.pyd -------------------------------------------------------------------------------- /Python27/DLLs/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/_ctypes.pyd -------------------------------------------------------------------------------- /Python27/DLLs/_ctypes_test.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/_ctypes_test.pyd -------------------------------------------------------------------------------- /Python27/DLLs/_elementtree.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/_elementtree.pyd -------------------------------------------------------------------------------- /Python27/DLLs/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/_hashlib.pyd -------------------------------------------------------------------------------- /Python27/DLLs/_msi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/_msi.pyd -------------------------------------------------------------------------------- /Python27/DLLs/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/_socket.pyd -------------------------------------------------------------------------------- /Python27/DLLs/_sqlite3.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/_sqlite3.pyd -------------------------------------------------------------------------------- /Python27/DLLs/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/_ssl.pyd -------------------------------------------------------------------------------- /Python27/DLLs/_testcapi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/_testcapi.pyd -------------------------------------------------------------------------------- /Python27/DLLs/_tkinter.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/_tkinter.pyd -------------------------------------------------------------------------------- /Python27/DLLs/bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/bz2.pyd -------------------------------------------------------------------------------- /Python27/DLLs/py.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/py.ico -------------------------------------------------------------------------------- /Python27/DLLs/pyc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/pyc.ico -------------------------------------------------------------------------------- /Python27/DLLs/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/pyexpat.pyd -------------------------------------------------------------------------------- /Python27/DLLs/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/select.pyd -------------------------------------------------------------------------------- /Python27/DLLs/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/sqlite3.dll -------------------------------------------------------------------------------- /Python27/DLLs/tcl85.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/tcl85.dll -------------------------------------------------------------------------------- /Python27/DLLs/tclpip85.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/tclpip85.dll -------------------------------------------------------------------------------- /Python27/DLLs/tk85.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/tk85.dll -------------------------------------------------------------------------------- /Python27/DLLs/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/unicodedata.pyd -------------------------------------------------------------------------------- /Python27/DLLs/winsound.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/DLLs/winsound.pyd -------------------------------------------------------------------------------- /Python27/Lib/BaseHTTPServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/BaseHTTPServer.py -------------------------------------------------------------------------------- /Python27/Lib/Bastion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/Bastion.py -------------------------------------------------------------------------------- /Python27/Lib/CGIHTTPServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/CGIHTTPServer.py -------------------------------------------------------------------------------- /Python27/Lib/ConfigParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/ConfigParser.py -------------------------------------------------------------------------------- /Python27/Lib/Cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/Cookie.py -------------------------------------------------------------------------------- /Python27/Lib/DocXMLRPCServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/DocXMLRPCServer.py -------------------------------------------------------------------------------- /Python27/Lib/HTMLParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/HTMLParser.py -------------------------------------------------------------------------------- /Python27/Lib/MimeWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/MimeWriter.py -------------------------------------------------------------------------------- /Python27/Lib/Queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/Queue.py -------------------------------------------------------------------------------- /Python27/Lib/SimpleHTTPServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/SimpleHTTPServer.py -------------------------------------------------------------------------------- /Python27/Lib/SocketServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/SocketServer.py -------------------------------------------------------------------------------- /Python27/Lib/StringIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/StringIO.py -------------------------------------------------------------------------------- /Python27/Lib/UserDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/UserDict.py -------------------------------------------------------------------------------- /Python27/Lib/UserList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/UserList.py -------------------------------------------------------------------------------- /Python27/Lib/UserString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/UserString.py -------------------------------------------------------------------------------- /Python27/Lib/_LWPCookieJar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/_LWPCookieJar.py -------------------------------------------------------------------------------- /Python27/Lib/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/__future__.py -------------------------------------------------------------------------------- /Python27/Lib/__future__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/__future__.pyc -------------------------------------------------------------------------------- /Python27/Lib/__phello__.foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/__phello__.foo.py -------------------------------------------------------------------------------- /Python27/Lib/_abcoll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/_abcoll.py -------------------------------------------------------------------------------- /Python27/Lib/_pyio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/_pyio.py -------------------------------------------------------------------------------- /Python27/Lib/_strptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/_strptime.py -------------------------------------------------------------------------------- /Python27/Lib/_threading_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/_threading_local.py -------------------------------------------------------------------------------- /Python27/Lib/_weakrefset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/_weakrefset.py -------------------------------------------------------------------------------- /Python27/Lib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/abc.py -------------------------------------------------------------------------------- /Python27/Lib/aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/aifc.py -------------------------------------------------------------------------------- /Python27/Lib/antigravity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/antigravity.py -------------------------------------------------------------------------------- /Python27/Lib/anydbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/anydbm.py -------------------------------------------------------------------------------- /Python27/Lib/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/argparse.py -------------------------------------------------------------------------------- /Python27/Lib/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/ast.py -------------------------------------------------------------------------------- /Python27/Lib/asynchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/asynchat.py -------------------------------------------------------------------------------- /Python27/Lib/asyncore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/asyncore.py -------------------------------------------------------------------------------- /Python27/Lib/atexit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/atexit.py -------------------------------------------------------------------------------- /Python27/Lib/audiodev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/audiodev.py -------------------------------------------------------------------------------- /Python27/Lib/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/base64.py -------------------------------------------------------------------------------- /Python27/Lib/bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/bdb.py -------------------------------------------------------------------------------- /Python27/Lib/binhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/binhex.py -------------------------------------------------------------------------------- /Python27/Lib/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/bisect.py -------------------------------------------------------------------------------- /Python27/Lib/bisect.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/bisect.pyc -------------------------------------------------------------------------------- /Python27/Lib/bsddb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/bsddb/__init__.py -------------------------------------------------------------------------------- /Python27/Lib/bsddb/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/bsddb/db.py -------------------------------------------------------------------------------- /Python27/Lib/bsddb/dbobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/bsddb/dbobj.py -------------------------------------------------------------------------------- /Python27/Lib/bsddb/dbrecio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/bsddb/dbrecio.py -------------------------------------------------------------------------------- /Python27/Lib/bsddb/dbshelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/bsddb/dbshelve.py -------------------------------------------------------------------------------- /Python27/Lib/bsddb/dbtables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/bsddb/dbtables.py -------------------------------------------------------------------------------- /Python27/Lib/bsddb/dbutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/bsddb/dbutils.py -------------------------------------------------------------------------------- /Python27/Lib/bsddb/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python27/Lib/cProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/cProfile.py -------------------------------------------------------------------------------- /Python27/Lib/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/calendar.py -------------------------------------------------------------------------------- /Python27/Lib/cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/cgi.py -------------------------------------------------------------------------------- /Python27/Lib/cgitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/cgitb.py -------------------------------------------------------------------------------- /Python27/Lib/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/chunk.py -------------------------------------------------------------------------------- /Python27/Lib/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/cmd.py -------------------------------------------------------------------------------- /Python27/Lib/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/code.py -------------------------------------------------------------------------------- /Python27/Lib/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/codecs.py -------------------------------------------------------------------------------- /Python27/Lib/codeop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/codeop.py -------------------------------------------------------------------------------- /Python27/Lib/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/collections.py -------------------------------------------------------------------------------- /Python27/Lib/collections.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/collections.pyc -------------------------------------------------------------------------------- /Python27/Lib/colorsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/colorsys.py -------------------------------------------------------------------------------- /Python27/Lib/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/commands.py -------------------------------------------------------------------------------- /Python27/Lib/compileall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/compileall.py -------------------------------------------------------------------------------- /Python27/Lib/compiler/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/compiler/ast.py -------------------------------------------------------------------------------- /Python27/Lib/compiler/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/compiler/consts.py -------------------------------------------------------------------------------- /Python27/Lib/compiler/future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/compiler/future.py -------------------------------------------------------------------------------- /Python27/Lib/compiler/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/compiler/misc.py -------------------------------------------------------------------------------- /Python27/Lib/compiler/pyassem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/compiler/pyassem.py -------------------------------------------------------------------------------- /Python27/Lib/compiler/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/compiler/symbols.py -------------------------------------------------------------------------------- /Python27/Lib/compiler/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/compiler/syntax.py -------------------------------------------------------------------------------- /Python27/Lib/compiler/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/compiler/visitor.py -------------------------------------------------------------------------------- /Python27/Lib/contextlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/contextlib.py -------------------------------------------------------------------------------- /Python27/Lib/cookielib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/cookielib.py -------------------------------------------------------------------------------- /Python27/Lib/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/copy.py -------------------------------------------------------------------------------- /Python27/Lib/copy.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/copy.pyc -------------------------------------------------------------------------------- /Python27/Lib/copy_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/copy_reg.py -------------------------------------------------------------------------------- /Python27/Lib/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/csv.py -------------------------------------------------------------------------------- /Python27/Lib/ctypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/ctypes/__init__.py -------------------------------------------------------------------------------- /Python27/Lib/ctypes/_endian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/ctypes/_endian.py -------------------------------------------------------------------------------- /Python27/Lib/ctypes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/ctypes/util.py -------------------------------------------------------------------------------- /Python27/Lib/ctypes/wintypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/ctypes/wintypes.py -------------------------------------------------------------------------------- /Python27/Lib/curses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/curses/__init__.py -------------------------------------------------------------------------------- /Python27/Lib/curses/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/curses/ascii.py -------------------------------------------------------------------------------- /Python27/Lib/curses/has_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/curses/has_key.py -------------------------------------------------------------------------------- /Python27/Lib/curses/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/curses/panel.py -------------------------------------------------------------------------------- /Python27/Lib/curses/textpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/curses/textpad.py -------------------------------------------------------------------------------- /Python27/Lib/curses/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/curses/wrapper.py -------------------------------------------------------------------------------- /Python27/Lib/dbhash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/dbhash.py -------------------------------------------------------------------------------- /Python27/Lib/decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/decimal.py -------------------------------------------------------------------------------- /Python27/Lib/difflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/difflib.py -------------------------------------------------------------------------------- /Python27/Lib/dircache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/dircache.py -------------------------------------------------------------------------------- /Python27/Lib/dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/dis.py -------------------------------------------------------------------------------- /Python27/Lib/dis.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/dis.pyc -------------------------------------------------------------------------------- /Python27/Lib/distutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/distutils/README -------------------------------------------------------------------------------- /Python27/Lib/distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/distutils/cmd.py -------------------------------------------------------------------------------- /Python27/Lib/distutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/distutils/config.py -------------------------------------------------------------------------------- /Python27/Lib/distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/distutils/core.py -------------------------------------------------------------------------------- /Python27/Lib/distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/distutils/debug.py -------------------------------------------------------------------------------- /Python27/Lib/distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/distutils/dist.py -------------------------------------------------------------------------------- /Python27/Lib/distutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/distutils/errors.py -------------------------------------------------------------------------------- /Python27/Lib/distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/distutils/log.py -------------------------------------------------------------------------------- /Python27/Lib/distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/distutils/spawn.py -------------------------------------------------------------------------------- /Python27/Lib/distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/distutils/util.py -------------------------------------------------------------------------------- /Python27/Lib/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/doctest.py -------------------------------------------------------------------------------- /Python27/Lib/dumbdbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/dumbdbm.py -------------------------------------------------------------------------------- /Python27/Lib/dummy_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/dummy_thread.py -------------------------------------------------------------------------------- /Python27/Lib/dummy_threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/dummy_threading.py -------------------------------------------------------------------------------- /Python27/Lib/email/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/__init__.py -------------------------------------------------------------------------------- /Python27/Lib/email/_parseaddr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/_parseaddr.py -------------------------------------------------------------------------------- /Python27/Lib/email/base64mime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/base64mime.py -------------------------------------------------------------------------------- /Python27/Lib/email/charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/charset.py -------------------------------------------------------------------------------- /Python27/Lib/email/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/encoders.py -------------------------------------------------------------------------------- /Python27/Lib/email/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/errors.py -------------------------------------------------------------------------------- /Python27/Lib/email/feedparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/feedparser.py -------------------------------------------------------------------------------- /Python27/Lib/email/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/generator.py -------------------------------------------------------------------------------- /Python27/Lib/email/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/header.py -------------------------------------------------------------------------------- /Python27/Lib/email/iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/iterators.py -------------------------------------------------------------------------------- /Python27/Lib/email/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/message.py -------------------------------------------------------------------------------- /Python27/Lib/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python27/Lib/email/mime/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/mime/audio.py -------------------------------------------------------------------------------- /Python27/Lib/email/mime/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/mime/base.py -------------------------------------------------------------------------------- /Python27/Lib/email/mime/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/mime/image.py -------------------------------------------------------------------------------- /Python27/Lib/email/mime/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/mime/text.py -------------------------------------------------------------------------------- /Python27/Lib/email/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/parser.py -------------------------------------------------------------------------------- /Python27/Lib/email/quoprimime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/quoprimime.py -------------------------------------------------------------------------------- /Python27/Lib/email/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python27/Lib/email/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/email/utils.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/ascii.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/big5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/big5.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp037.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp1006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp1006.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp1026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp1026.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp1140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp1140.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp1250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp1250.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp1251.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp1251.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp1252.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp1252.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp1253.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp1253.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp1254.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp1254.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp1255.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp1255.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp1256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp1256.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp1257.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp1257.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp1258.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp1258.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp424.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp424.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp437.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp500.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp720.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp720.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp737.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp737.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp775.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp775.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp850.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp850.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp852.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp852.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp855.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp855.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp856.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp856.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp857.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp857.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp858.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp858.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp860.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp860.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp861.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp861.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp862.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp862.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp863.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp863.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp864.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp864.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp865.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp865.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp866.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp866.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp869.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp869.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp874.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp874.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp875.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp875.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp932.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp932.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp949.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp949.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/cp950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/cp950.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/euc_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/euc_jp.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/euc_kr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/euc_kr.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/gb2312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/gb2312.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/gbk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/gbk.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/hz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/hz.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/idna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/idna.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/johab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/johab.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/koi8_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/koi8_r.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/koi8_u.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/koi8_u.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/mbcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/mbcs.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/palmos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/palmos.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/rot_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/rot_13.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/utf_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/utf_16.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/utf_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/utf_32.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/utf_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/utf_7.py -------------------------------------------------------------------------------- /Python27/Lib/encodings/utf_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/encodings/utf_8.py -------------------------------------------------------------------------------- /Python27/Lib/filecmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/filecmp.py -------------------------------------------------------------------------------- /Python27/Lib/fileinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/fileinput.py -------------------------------------------------------------------------------- /Python27/Lib/fnmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/fnmatch.py -------------------------------------------------------------------------------- /Python27/Lib/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/formatter.py -------------------------------------------------------------------------------- /Python27/Lib/fpformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/fpformat.py -------------------------------------------------------------------------------- /Python27/Lib/fractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/fractions.py -------------------------------------------------------------------------------- /Python27/Lib/ftplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/ftplib.py -------------------------------------------------------------------------------- /Python27/Lib/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/functools.py -------------------------------------------------------------------------------- /Python27/Lib/genericpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/genericpath.py -------------------------------------------------------------------------------- /Python27/Lib/getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/getopt.py -------------------------------------------------------------------------------- /Python27/Lib/getpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/getpass.py -------------------------------------------------------------------------------- /Python27/Lib/gettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/gettext.py -------------------------------------------------------------------------------- /Python27/Lib/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/glob.py -------------------------------------------------------------------------------- /Python27/Lib/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/gzip.py -------------------------------------------------------------------------------- /Python27/Lib/hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/hashlib.py -------------------------------------------------------------------------------- /Python27/Lib/hashlib.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/hashlib.pyc -------------------------------------------------------------------------------- /Python27/Lib/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/heapq.py -------------------------------------------------------------------------------- /Python27/Lib/heapq.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/heapq.pyc -------------------------------------------------------------------------------- /Python27/Lib/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/hmac.py -------------------------------------------------------------------------------- /Python27/Lib/hotshot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/hotshot/__init__.py -------------------------------------------------------------------------------- /Python27/Lib/hotshot/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/hotshot/log.py -------------------------------------------------------------------------------- /Python27/Lib/hotshot/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/hotshot/stats.py -------------------------------------------------------------------------------- /Python27/Lib/hotshot/stones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/hotshot/stones.py -------------------------------------------------------------------------------- /Python27/Lib/htmlentitydefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/htmlentitydefs.py -------------------------------------------------------------------------------- /Python27/Lib/htmllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/htmllib.py -------------------------------------------------------------------------------- /Python27/Lib/httplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/httplib.py -------------------------------------------------------------------------------- /Python27/Lib/idlelib/Bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/Bindings.py -------------------------------------------------------------------------------- /Python27/Lib/idlelib/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/CREDITS.txt -------------------------------------------------------------------------------- /Python27/Lib/idlelib/CallTips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/CallTips.py -------------------------------------------------------------------------------- /Python27/Lib/idlelib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/ChangeLog -------------------------------------------------------------------------------- /Python27/Lib/idlelib/Debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/Debugger.py -------------------------------------------------------------------------------- /Python27/Lib/idlelib/FileList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/FileList.py -------------------------------------------------------------------------------- /Python27/Lib/idlelib/HISTORY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/HISTORY.txt -------------------------------------------------------------------------------- /Python27/Lib/idlelib/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/NEWS.txt -------------------------------------------------------------------------------- /Python27/Lib/idlelib/PyParse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/PyParse.py -------------------------------------------------------------------------------- /Python27/Lib/idlelib/PyShell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/PyShell.py -------------------------------------------------------------------------------- /Python27/Lib/idlelib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/README.txt -------------------------------------------------------------------------------- /Python27/Lib/idlelib/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/TODO.txt -------------------------------------------------------------------------------- /Python27/Lib/idlelib/ToolTip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/ToolTip.py -------------------------------------------------------------------------------- /Python27/Lib/idlelib/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this a package. 2 | -------------------------------------------------------------------------------- /Python27/Lib/idlelib/extend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/extend.txt -------------------------------------------------------------------------------- /Python27/Lib/idlelib/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/help.txt -------------------------------------------------------------------------------- /Python27/Lib/idlelib/idle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/idle.bat -------------------------------------------------------------------------------- /Python27/Lib/idlelib/idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/idle.py -------------------------------------------------------------------------------- /Python27/Lib/idlelib/idle.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/idle.pyw -------------------------------------------------------------------------------- /Python27/Lib/idlelib/idlever.py: -------------------------------------------------------------------------------- 1 | IDLE_VERSION = "2.7.2" 2 | -------------------------------------------------------------------------------- /Python27/Lib/idlelib/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/rpc.py -------------------------------------------------------------------------------- /Python27/Lib/idlelib/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/run.py -------------------------------------------------------------------------------- /Python27/Lib/idlelib/testcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/testcode.py -------------------------------------------------------------------------------- /Python27/Lib/idlelib/textView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/idlelib/textView.py -------------------------------------------------------------------------------- /Python27/Lib/ihooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/ihooks.py -------------------------------------------------------------------------------- /Python27/Lib/imaplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/imaplib.py -------------------------------------------------------------------------------- /Python27/Lib/imghdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/imghdr.py -------------------------------------------------------------------------------- /Python27/Lib/imputil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/imputil.py -------------------------------------------------------------------------------- /Python27/Lib/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/inspect.py -------------------------------------------------------------------------------- /Python27/Lib/inspect.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/inspect.pyc -------------------------------------------------------------------------------- /Python27/Lib/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/io.py -------------------------------------------------------------------------------- /Python27/Lib/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/json/__init__.py -------------------------------------------------------------------------------- /Python27/Lib/json/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/json/decoder.py -------------------------------------------------------------------------------- /Python27/Lib/json/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/json/encoder.py -------------------------------------------------------------------------------- /Python27/Lib/json/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/json/scanner.py -------------------------------------------------------------------------------- /Python27/Lib/json/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/json/tool.py -------------------------------------------------------------------------------- /Python27/Lib/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/keyword.py -------------------------------------------------------------------------------- /Python27/Lib/keyword.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/keyword.pyc -------------------------------------------------------------------------------- /Python27/Lib/lib-tk/Canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib-tk/Canvas.py -------------------------------------------------------------------------------- /Python27/Lib/lib-tk/Dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib-tk/Dialog.py -------------------------------------------------------------------------------- /Python27/Lib/lib-tk/FixTk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib-tk/FixTk.py -------------------------------------------------------------------------------- /Python27/Lib/lib-tk/Tix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib-tk/Tix.py -------------------------------------------------------------------------------- /Python27/Lib/lib-tk/Tkdnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib-tk/Tkdnd.py -------------------------------------------------------------------------------- /Python27/Lib/lib-tk/Tkinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib-tk/Tkinter.py -------------------------------------------------------------------------------- /Python27/Lib/lib-tk/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib-tk/test/README -------------------------------------------------------------------------------- /Python27/Lib/lib-tk/test/test_tkinter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python27/Lib/lib-tk/test/test_ttk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python27/Lib/lib-tk/tkFont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib-tk/tkFont.py -------------------------------------------------------------------------------- /Python27/Lib/lib-tk/ttk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib-tk/ttk.py -------------------------------------------------------------------------------- /Python27/Lib/lib-tk/turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib-tk/turtle.py -------------------------------------------------------------------------------- /Python27/Lib/lib2to3/Grammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib2to3/Grammar.txt -------------------------------------------------------------------------------- /Python27/Lib/lib2to3/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /Python27/Lib/lib2to3/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib2to3/__main__.py -------------------------------------------------------------------------------- /Python27/Lib/lib2to3/fixes/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /Python27/Lib/lib2to3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib2to3/main.py -------------------------------------------------------------------------------- /Python27/Lib/lib2to3/patcomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib2to3/patcomp.py -------------------------------------------------------------------------------- /Python27/Lib/lib2to3/pygram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib2to3/pygram.py -------------------------------------------------------------------------------- /Python27/Lib/lib2to3/pytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib2to3/pytree.py -------------------------------------------------------------------------------- /Python27/Lib/lib2to3/refactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/lib2to3/refactor.py -------------------------------------------------------------------------------- /Python27/Lib/lib2to3/tests/data/bom.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | print "BOM BOOM!" 3 | -------------------------------------------------------------------------------- /Python27/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python27/Lib/lib2to3/tests/data/fixers/parrot_example.py: -------------------------------------------------------------------------------- 1 | def parrot(): 2 | pass 3 | -------------------------------------------------------------------------------- /Python27/Lib/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/linecache.py -------------------------------------------------------------------------------- /Python27/Lib/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/locale.py -------------------------------------------------------------------------------- /Python27/Lib/logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/logging/__init__.py -------------------------------------------------------------------------------- /Python27/Lib/logging/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/logging/config.py -------------------------------------------------------------------------------- /Python27/Lib/logging/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/logging/handlers.py -------------------------------------------------------------------------------- /Python27/Lib/macpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/macpath.py -------------------------------------------------------------------------------- /Python27/Lib/macurl2path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/macurl2path.py -------------------------------------------------------------------------------- /Python27/Lib/mailbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/mailbox.py -------------------------------------------------------------------------------- /Python27/Lib/mailcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/mailcap.py -------------------------------------------------------------------------------- /Python27/Lib/markupbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/markupbase.py -------------------------------------------------------------------------------- /Python27/Lib/md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/md5.py -------------------------------------------------------------------------------- /Python27/Lib/mhlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/mhlib.py -------------------------------------------------------------------------------- /Python27/Lib/mimetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/mimetools.py -------------------------------------------------------------------------------- /Python27/Lib/mimetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/mimetypes.py -------------------------------------------------------------------------------- /Python27/Lib/mimify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/mimify.py -------------------------------------------------------------------------------- /Python27/Lib/modulefinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/modulefinder.py -------------------------------------------------------------------------------- /Python27/Lib/msilib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/msilib/__init__.py -------------------------------------------------------------------------------- /Python27/Lib/msilib/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/msilib/schema.py -------------------------------------------------------------------------------- /Python27/Lib/msilib/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/msilib/sequence.py -------------------------------------------------------------------------------- /Python27/Lib/msilib/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/msilib/text.py -------------------------------------------------------------------------------- /Python27/Lib/multifile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/multifile.py -------------------------------------------------------------------------------- /Python27/Lib/mutex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/mutex.py -------------------------------------------------------------------------------- /Python27/Lib/netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/netrc.py -------------------------------------------------------------------------------- /Python27/Lib/new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/new.py -------------------------------------------------------------------------------- /Python27/Lib/nntplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/nntplib.py -------------------------------------------------------------------------------- /Python27/Lib/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/ntpath.py -------------------------------------------------------------------------------- /Python27/Lib/nturl2path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/nturl2path.py -------------------------------------------------------------------------------- /Python27/Lib/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/numbers.py -------------------------------------------------------------------------------- /Python27/Lib/opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/opcode.py -------------------------------------------------------------------------------- /Python27/Lib/opcode.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/opcode.pyc -------------------------------------------------------------------------------- /Python27/Lib/optparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/optparse.py -------------------------------------------------------------------------------- /Python27/Lib/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/os.py -------------------------------------------------------------------------------- /Python27/Lib/os2emxpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/os2emxpath.py -------------------------------------------------------------------------------- /Python27/Lib/pdb.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/pdb.doc -------------------------------------------------------------------------------- /Python27/Lib/pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/pdb.py -------------------------------------------------------------------------------- /Python27/Lib/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/pickle.py -------------------------------------------------------------------------------- /Python27/Lib/pickletools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/pickletools.py -------------------------------------------------------------------------------- /Python27/Lib/pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/pipes.py -------------------------------------------------------------------------------- /Python27/Lib/pkgutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/pkgutil.py -------------------------------------------------------------------------------- /Python27/Lib/pkgutil.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/pkgutil.pyc -------------------------------------------------------------------------------- /Python27/Lib/plat-aix3/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-aix3/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-aix3/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-aix3/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-aix4/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-aix4/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-aix4/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-aix4/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-atheos/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-atheos/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-atheos/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-atheos/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-beos5/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-beos5/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-beos5/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-beos5/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-darwin/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-darwin/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-darwin/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-darwin/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-freebsd4/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-freebsd4/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-freebsd4/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-freebsd4/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-freebsd5/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-freebsd5/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-freebsd5/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-freebsd5/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-freebsd6/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-freebsd6/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-freebsd6/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-freebsd6/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-freebsd7/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-freebsd7/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-freebsd7/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-freebsd7/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-freebsd8/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-freebsd8/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-freebsd8/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-freebsd8/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-generic/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-generic/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/AL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/AL.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/CD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/CD.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/CL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/CL.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/ERRNO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/ERRNO.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/FILE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/FILE.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/FL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/FL.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/GET.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/GET.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/GL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/GL.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/GLWS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/GLWS.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/IOCTL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/IOCTL.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/SV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/SV.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/WAIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/WAIT.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/cddb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/cddb.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/flp.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/flp.doc -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/flp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/flp.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/jpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/jpeg.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/panel.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-irix5/torgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix5/torgb.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/AL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/AL.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/CD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/CD.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/CL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/CL.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/ERRNO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/ERRNO.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/FILE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/FILE.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/FL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/FL.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/GET.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/GET.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/GL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/GL.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/GLWS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/GLWS.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/IOCTL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/IOCTL.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/SV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/SV.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/WAIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/WAIT.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/cddb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/cddb.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/flp.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/flp.doc -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/flp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/flp.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/jpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/jpeg.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/panel.py -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-irix6/torgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-irix6/torgb.py -------------------------------------------------------------------------------- /Python27/Lib/plat-linux2/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-linux2/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-linux2/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-linux2/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/AE.py: -------------------------------------------------------------------------------- 1 | from _AE import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/AH.py: -------------------------------------------------------------------------------- 1 | from _AH import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Alias.py: -------------------------------------------------------------------------------- 1 | from _Alias import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/App.py: -------------------------------------------------------------------------------- 1 | from _App import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/CF.py: -------------------------------------------------------------------------------- 1 | from _CF import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/CG.py: -------------------------------------------------------------------------------- 1 | from _CG import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/CarbonEvt.py: -------------------------------------------------------------------------------- 1 | from _CarbonEvt import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Cm.py: -------------------------------------------------------------------------------- 1 | from _Cm import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Ctl.py: -------------------------------------------------------------------------------- 1 | from _Ctl import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Dlg.py: -------------------------------------------------------------------------------- 1 | from _Dlg import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Drag.py: -------------------------------------------------------------------------------- 1 | from _Drag import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Evt.py: -------------------------------------------------------------------------------- 1 | from _Evt import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/File.py: -------------------------------------------------------------------------------- 1 | from _File import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Fm.py: -------------------------------------------------------------------------------- 1 | from _Fm import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Folder.py: -------------------------------------------------------------------------------- 1 | from _Folder import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Help.py: -------------------------------------------------------------------------------- 1 | from _Help import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/IBCarbon.py: -------------------------------------------------------------------------------- 1 | from _IBCarbon import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Icn.py: -------------------------------------------------------------------------------- 1 | from _Icn import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Launch.py: -------------------------------------------------------------------------------- 1 | from _Launch import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/List.py: -------------------------------------------------------------------------------- 1 | from _List import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Menu.py: -------------------------------------------------------------------------------- 1 | from _Menu import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Mlte.py: -------------------------------------------------------------------------------- 1 | from _Mlte import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/OSA.py: -------------------------------------------------------------------------------- 1 | from _OSA import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Qd.py: -------------------------------------------------------------------------------- 1 | from _Qd import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Qdoffs.py: -------------------------------------------------------------------------------- 1 | from _Qdoffs import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Scrap.py: -------------------------------------------------------------------------------- 1 | from _Scrap import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Snd.py: -------------------------------------------------------------------------------- 1 | from _Snd import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Sndihooks.py: -------------------------------------------------------------------------------- 1 | from _Sndihooks import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/TE.py: -------------------------------------------------------------------------------- 1 | from _TE import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/Carbon/Win.py: -------------------------------------------------------------------------------- 1 | from _Win import * 2 | -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/aepack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-mac/aepack.py -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/aetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-mac/aetools.py -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/aetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-mac/aetypes.py -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/cfmfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-mac/cfmfile.py -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/ic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-mac/ic.py -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/icopen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-mac/icopen.py -------------------------------------------------------------------------------- /Python27/Lib/plat-mac/pimp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-mac/pimp.py -------------------------------------------------------------------------------- /Python27/Lib/plat-netbsd1/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-netbsd1/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-netbsd1/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-netbsd1/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-next3/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-next3/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-os2emx/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-os2emx/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-os2emx/grp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-os2emx/grp.py -------------------------------------------------------------------------------- /Python27/Lib/plat-os2emx/pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-os2emx/pwd.py -------------------------------------------------------------------------------- /Python27/Lib/plat-os2emx/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-os2emx/regen -------------------------------------------------------------------------------- /Python27/Lib/plat-sunos5/CDIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-sunos5/CDIO.py -------------------------------------------------------------------------------- /Python27/Lib/plat-sunos5/IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-sunos5/IN.py -------------------------------------------------------------------------------- /Python27/Lib/plat-sunos5/regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plat-sunos5/regen -------------------------------------------------------------------------------- /Python27/Lib/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/platform.py -------------------------------------------------------------------------------- /Python27/Lib/plistlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/plistlib.py -------------------------------------------------------------------------------- /Python27/Lib/popen2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/popen2.py -------------------------------------------------------------------------------- /Python27/Lib/poplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/poplib.py -------------------------------------------------------------------------------- /Python27/Lib/posixfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/posixfile.py -------------------------------------------------------------------------------- /Python27/Lib/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/posixpath.py -------------------------------------------------------------------------------- /Python27/Lib/pprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/pprint.py -------------------------------------------------------------------------------- /Python27/Lib/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/profile.py -------------------------------------------------------------------------------- /Python27/Lib/pstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/pstats.py -------------------------------------------------------------------------------- /Python27/Lib/pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/pty.py -------------------------------------------------------------------------------- /Python27/Lib/py_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/py_compile.py -------------------------------------------------------------------------------- /Python27/Lib/pyclbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/pyclbr.py -------------------------------------------------------------------------------- /Python27/Lib/pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/pydoc.py -------------------------------------------------------------------------------- /Python27/Lib/pydoc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/pydoc.pyc -------------------------------------------------------------------------------- /Python27/Lib/pydoc_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python27/Lib/quopri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/quopri.py -------------------------------------------------------------------------------- /Python27/Lib/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/random.py -------------------------------------------------------------------------------- /Python27/Lib/random.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/random.pyc -------------------------------------------------------------------------------- /Python27/Lib/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/re.py -------------------------------------------------------------------------------- /Python27/Lib/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/repr.py -------------------------------------------------------------------------------- /Python27/Lib/repr.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/repr.pyc -------------------------------------------------------------------------------- /Python27/Lib/rexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/rexec.py -------------------------------------------------------------------------------- /Python27/Lib/rfc822.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/rfc822.py -------------------------------------------------------------------------------- /Python27/Lib/rlcompleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/rlcompleter.py -------------------------------------------------------------------------------- /Python27/Lib/robotparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/robotparser.py -------------------------------------------------------------------------------- /Python27/Lib/runpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/runpy.py -------------------------------------------------------------------------------- /Python27/Lib/sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sched.py -------------------------------------------------------------------------------- /Python27/Lib/sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sets.py -------------------------------------------------------------------------------- /Python27/Lib/sgmllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sgmllib.py -------------------------------------------------------------------------------- /Python27/Lib/sha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sha.py -------------------------------------------------------------------------------- /Python27/Lib/shelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/shelve.py -------------------------------------------------------------------------------- /Python27/Lib/shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/shlex.py -------------------------------------------------------------------------------- /Python27/Lib/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/shutil.py -------------------------------------------------------------------------------- /Python27/Lib/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/site.py -------------------------------------------------------------------------------- /Python27/Lib/smtpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/smtpd.py -------------------------------------------------------------------------------- /Python27/Lib/smtplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/smtplib.py -------------------------------------------------------------------------------- /Python27/Lib/sndhdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sndhdr.py -------------------------------------------------------------------------------- /Python27/Lib/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/socket.py -------------------------------------------------------------------------------- /Python27/Lib/sqlite3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sqlite3/__init__.py -------------------------------------------------------------------------------- /Python27/Lib/sqlite3/dbapi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sqlite3/dbapi2.py -------------------------------------------------------------------------------- /Python27/Lib/sqlite3/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sqlite3/dump.py -------------------------------------------------------------------------------- /Python27/Lib/sqlite3/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python27/Lib/sre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sre.py -------------------------------------------------------------------------------- /Python27/Lib/sre_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sre_compile.py -------------------------------------------------------------------------------- /Python27/Lib/sre_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sre_constants.py -------------------------------------------------------------------------------- /Python27/Lib/sre_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sre_parse.py -------------------------------------------------------------------------------- /Python27/Lib/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/ssl.py -------------------------------------------------------------------------------- /Python27/Lib/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/stat.py -------------------------------------------------------------------------------- /Python27/Lib/statvfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/statvfs.py -------------------------------------------------------------------------------- /Python27/Lib/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/string.py -------------------------------------------------------------------------------- /Python27/Lib/string.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/string.pyc -------------------------------------------------------------------------------- /Python27/Lib/stringold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/stringold.py -------------------------------------------------------------------------------- /Python27/Lib/stringprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/stringprep.py -------------------------------------------------------------------------------- /Python27/Lib/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/struct.py -------------------------------------------------------------------------------- /Python27/Lib/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/subprocess.py -------------------------------------------------------------------------------- /Python27/Lib/sunau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sunau.py -------------------------------------------------------------------------------- /Python27/Lib/sunaudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sunaudio.py -------------------------------------------------------------------------------- /Python27/Lib/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/symbol.py -------------------------------------------------------------------------------- /Python27/Lib/symtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/symtable.py -------------------------------------------------------------------------------- /Python27/Lib/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/sysconfig.py -------------------------------------------------------------------------------- /Python27/Lib/tabnanny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/tabnanny.py -------------------------------------------------------------------------------- /Python27/Lib/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/tarfile.py -------------------------------------------------------------------------------- /Python27/Lib/telnetlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/telnetlib.py -------------------------------------------------------------------------------- /Python27/Lib/tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/tempfile.py -------------------------------------------------------------------------------- /Python27/Lib/test/185test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/185test.db -------------------------------------------------------------------------------- /Python27/Lib/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /Python27/Lib/test/audiotest.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/audiotest.au -------------------------------------------------------------------------------- /Python27/Lib/test/autotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/autotest.py -------------------------------------------------------------------------------- /Python27/Lib/test/bad_coding.py: -------------------------------------------------------------------------------- 1 | # -*- coding: uft-8 -*- 2 | -------------------------------------------------------------------------------- /Python27/Lib/test/bad_coding2.py: -------------------------------------------------------------------------------- 1 | #coding: utf8 2 | print '我' 3 | -------------------------------------------------------------------------------- /Python27/Lib/test/badcert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/badcert.pem -------------------------------------------------------------------------------- /Python27/Lib/test/badkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/badkey.pem -------------------------------------------------------------------------------- /Python27/Lib/test/badsyntax_nocaret.py: -------------------------------------------------------------------------------- 1 | def f(x): 2 | [x for x in x] = x 3 | -------------------------------------------------------------------------------- /Python27/Lib/test/cfgparser.1: -------------------------------------------------------------------------------- 1 | [Foo Bar] 2 | foo=newbar 3 | -------------------------------------------------------------------------------- /Python27/Lib/test/cjkencodings/big5hkscs-utf8.txt: -------------------------------------------------------------------------------- 1 | 𠄌Ě鵮罓洆 2 | ÊÊ̄ê êê̄ 3 | -------------------------------------------------------------------------------- /Python27/Lib/test/data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/data/README -------------------------------------------------------------------------------- /Python27/Lib/test/empty.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/empty.vbs -------------------------------------------------------------------------------- /Python27/Lib/test/fork_wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/fork_wait.py -------------------------------------------------------------------------------- /Python27/Lib/test/gdb_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/gdb_sample.py -------------------------------------------------------------------------------- /Python27/Lib/test/greyrgb.uue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/greyrgb.uue -------------------------------------------------------------------------------- /Python27/Lib/test/ieee754.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/ieee754.txt -------------------------------------------------------------------------------- /Python27/Lib/test/keycert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/keycert.pem -------------------------------------------------------------------------------- /Python27/Lib/test/leakers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python27/Lib/test/list_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/list_tests.py -------------------------------------------------------------------------------- /Python27/Lib/test/lock_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/lock_tests.py -------------------------------------------------------------------------------- /Python27/Lib/test/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python27/Lib/test/profilee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/profilee.py -------------------------------------------------------------------------------- /Python27/Lib/test/pydoc_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/pydoc_mod.py -------------------------------------------------------------------------------- /Python27/Lib/test/pydocfodder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/pydocfodder.py -------------------------------------------------------------------------------- /Python27/Lib/test/pystone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/pystone.py -------------------------------------------------------------------------------- /Python27/Lib/test/randv2_32.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/randv2_32.pck -------------------------------------------------------------------------------- /Python27/Lib/test/randv2_64.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/randv2_64.pck -------------------------------------------------------------------------------- /Python27/Lib/test/randv3.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/randv3.pck -------------------------------------------------------------------------------- /Python27/Lib/test/re_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/re_tests.py -------------------------------------------------------------------------------- /Python27/Lib/test/regex_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/regex_tests.py -------------------------------------------------------------------------------- /Python27/Lib/test/regrtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/regrtest.py -------------------------------------------------------------------------------- /Python27/Lib/test/relimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/relimport.py -------------------------------------------------------------------------------- /Python27/Lib/test/reperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/reperf.py -------------------------------------------------------------------------------- /Python27/Lib/test/seq_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/seq_tests.py -------------------------------------------------------------------------------- /Python27/Lib/test/sha256.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/sha256.pem -------------------------------------------------------------------------------- /Python27/Lib/test/sortperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/sortperf.py -------------------------------------------------------------------------------- /Python27/Lib/test/ssl_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/ssl_cert.pem -------------------------------------------------------------------------------- /Python27/Lib/test/ssl_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/ssl_key.pem -------------------------------------------------------------------------------- /Python27/Lib/test/test_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_abc.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_aepack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_aepack.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_aifc.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_al.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_al.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_anydbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_anydbm.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_array.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_ast.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_atexit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_atexit.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_base64.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_bigmem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_bigmem.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_binhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_binhex.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_binop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_binop.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_bisect.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_bool.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_bsddb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_bsddb.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_bsddb3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_bsddb3.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_buffer.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_bufio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_bufio.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_bytes.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_bz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_bz2.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_call.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_capi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_capi.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_cd.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_cgi.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_cl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_cl.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_class.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_cmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_cmath.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_cmd.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_code.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_codecs.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_codeop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_codeop.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_coding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_coding.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_cookie.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_copy.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_crypt.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_csv.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_ctypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_ctypes.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_curses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_curses.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_dbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_dbm.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_deque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_deque.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_descr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_descr.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_dict.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_dis.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_dl.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_email.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_eof.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_epoll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_epoll.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_errno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_errno.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_fcntl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_fcntl.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_file.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_file2k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_file2k.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_fileio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_fileio.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_float.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_fork1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_fork1.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_format.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_frozen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_frozen.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_ftplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_ftplib.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_future.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_gc.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_gdb.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_gdbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_gdbm.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_getopt.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_gl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_gl.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_glob.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_global.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_grp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_grp.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_gzip.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_hash.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_heapq.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_hmac.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_imp.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_import.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_index.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_int.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_io.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_ioctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_ioctl.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_iter.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_json.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_kqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_kqueue.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_list.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_locale.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_long.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_macos.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_math.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_md5.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_mhlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_mhlib.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_mmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_mmap.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_module.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_msilib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_msilib.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_mutex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_mutex.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_netrc.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_new.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_nis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_nis.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_ntpath.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_os.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_parser.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pdb.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pep247.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pep247.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pep263.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pep263.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pep277.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pep277.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pep292.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pep292.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pep352.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pep352.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pickle.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pipes.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pkg.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_poll.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_popen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_popen.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_popen2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_popen2.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_poplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_poplib.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_posix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_posix.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pow.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pprint.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_print.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pstats.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pty.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pwd.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pyclbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pyclbr.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_pydoc.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_queue.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_quopri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_quopri.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_random.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_re.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_repr.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_rfc822.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_rfc822.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_runpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_runpy.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_sax.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_scope.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_select.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_set.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_sets.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_sha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_sha.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_shelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_shelve.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_shlex.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_shutil.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_signal.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_site.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_slice.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_socket.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_sort.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_sqlite.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_ssl.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_str.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_string.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_strop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_strop.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_strtod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_strtod.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_struct.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_sundry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_sundry.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_syntax.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_sys.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_tcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_tcl.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_thread.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_time.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_tk.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_trace.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_tuple.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_types.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_ucn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_ucn.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_unary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_unary.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_unpack.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_urllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_urllib.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_uu.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_uuid.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_wait3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_wait3.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_wait4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_wait4.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_wave.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_winreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_winreg.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_with.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_xdrlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_xdrlib.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_xmllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_xmllib.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_xmlrpc.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_xrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_xrange.py -------------------------------------------------------------------------------- /Python27/Lib/test/test_zlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/test_zlib.py -------------------------------------------------------------------------------- /Python27/Lib/test/testall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/testall.py -------------------------------------------------------------------------------- /Python27/Lib/test/testcodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/testcodec.py -------------------------------------------------------------------------------- /Python27/Lib/test/testimg.uue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/testimg.uue -------------------------------------------------------------------------------- /Python27/Lib/test/testimgr.uue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/testimgr.uue -------------------------------------------------------------------------------- /Python27/Lib/test/testrgb.uue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/testrgb.uue -------------------------------------------------------------------------------- /Python27/Lib/test/testtar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/testtar.tar -------------------------------------------------------------------------------- /Python27/Lib/test/wrongcert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/wrongcert.pem -------------------------------------------------------------------------------- /Python27/Lib/test/xmltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/xmltests.py -------------------------------------------------------------------------------- /Python27/Lib/test/zipdir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/test/zipdir.zip -------------------------------------------------------------------------------- /Python27/Lib/textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/textwrap.py -------------------------------------------------------------------------------- /Python27/Lib/this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/this.py -------------------------------------------------------------------------------- /Python27/Lib/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/threading.py -------------------------------------------------------------------------------- /Python27/Lib/timeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/timeit.py -------------------------------------------------------------------------------- /Python27/Lib/toaiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/toaiff.py -------------------------------------------------------------------------------- /Python27/Lib/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/token.py -------------------------------------------------------------------------------- /Python27/Lib/token.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/token.pyc -------------------------------------------------------------------------------- /Python27/Lib/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/tokenize.py -------------------------------------------------------------------------------- /Python27/Lib/tokenize.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/tokenize.pyc -------------------------------------------------------------------------------- /Python27/Lib/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/trace.py -------------------------------------------------------------------------------- /Python27/Lib/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/traceback.py -------------------------------------------------------------------------------- /Python27/Lib/tty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/tty.py -------------------------------------------------------------------------------- /Python27/Lib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/types.py -------------------------------------------------------------------------------- /Python27/Lib/unittest/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/unittest/case.py -------------------------------------------------------------------------------- /Python27/Lib/unittest/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/unittest/loader.py -------------------------------------------------------------------------------- /Python27/Lib/unittest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/unittest/main.py -------------------------------------------------------------------------------- /Python27/Lib/unittest/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/unittest/result.py -------------------------------------------------------------------------------- /Python27/Lib/unittest/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/unittest/runner.py -------------------------------------------------------------------------------- /Python27/Lib/unittest/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/unittest/signals.py -------------------------------------------------------------------------------- /Python27/Lib/unittest/suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/unittest/suite.py -------------------------------------------------------------------------------- /Python27/Lib/unittest/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/unittest/util.py -------------------------------------------------------------------------------- /Python27/Lib/urllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/urllib.py -------------------------------------------------------------------------------- /Python27/Lib/urllib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/urllib2.py -------------------------------------------------------------------------------- /Python27/Lib/urlparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/urlparse.py -------------------------------------------------------------------------------- /Python27/Lib/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/user.py -------------------------------------------------------------------------------- /Python27/Lib/uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/uu.py -------------------------------------------------------------------------------- /Python27/Lib/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/uuid.py -------------------------------------------------------------------------------- /Python27/Lib/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/warnings.py -------------------------------------------------------------------------------- /Python27/Lib/wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/wave.py -------------------------------------------------------------------------------- /Python27/Lib/weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/weakref.py -------------------------------------------------------------------------------- /Python27/Lib/weakref.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/weakref.pyc -------------------------------------------------------------------------------- /Python27/Lib/webbrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/webbrowser.py -------------------------------------------------------------------------------- /Python27/Lib/whichdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/whichdb.py -------------------------------------------------------------------------------- /Python27/Lib/wsgiref.egg-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/wsgiref.egg-info -------------------------------------------------------------------------------- /Python27/Lib/wsgiref/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/wsgiref/__init__.py -------------------------------------------------------------------------------- /Python27/Lib/wsgiref/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/wsgiref/handlers.py -------------------------------------------------------------------------------- /Python27/Lib/wsgiref/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/wsgiref/headers.py -------------------------------------------------------------------------------- /Python27/Lib/wsgiref/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/wsgiref/util.py -------------------------------------------------------------------------------- /Python27/Lib/wsgiref/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/wsgiref/validate.py -------------------------------------------------------------------------------- /Python27/Lib/xdrlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/xdrlib.py -------------------------------------------------------------------------------- /Python27/Lib/xml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/xml/__init__.py -------------------------------------------------------------------------------- /Python27/Lib/xml/dom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/xml/dom/__init__.py -------------------------------------------------------------------------------- /Python27/Lib/xml/dom/domreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/xml/dom/domreg.py -------------------------------------------------------------------------------- /Python27/Lib/xml/dom/minidom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/xml/dom/minidom.py -------------------------------------------------------------------------------- /Python27/Lib/xml/dom/pulldom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/xml/dom/pulldom.py -------------------------------------------------------------------------------- /Python27/Lib/xml/sax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/xml/sax/__init__.py -------------------------------------------------------------------------------- /Python27/Lib/xml/sax/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/xml/sax/handler.py -------------------------------------------------------------------------------- /Python27/Lib/xml/sax/saxutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/xml/sax/saxutils.py -------------------------------------------------------------------------------- /Python27/Lib/xmllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/xmllib.py -------------------------------------------------------------------------------- /Python27/Lib/xmlrpclib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/xmlrpclib.py -------------------------------------------------------------------------------- /Python27/Lib/zipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/Lib/zipfile.py -------------------------------------------------------------------------------- /Python27/include/Python-ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/Python-ast.h -------------------------------------------------------------------------------- /Python27/include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/Python.h -------------------------------------------------------------------------------- /Python27/include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/abstract.h -------------------------------------------------------------------------------- /Python27/include/asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/asdl.h -------------------------------------------------------------------------------- /Python27/include/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/ast.h -------------------------------------------------------------------------------- /Python27/include/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/bitset.h -------------------------------------------------------------------------------- /Python27/include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/boolobject.h -------------------------------------------------------------------------------- /Python27/include/bufferobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/bufferobject.h -------------------------------------------------------------------------------- /Python27/include/bytes_methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/bytes_methods.h -------------------------------------------------------------------------------- /Python27/include/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/bytesobject.h -------------------------------------------------------------------------------- /Python27/include/cStringIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/cStringIO.h -------------------------------------------------------------------------------- /Python27/include/cellobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/cellobject.h -------------------------------------------------------------------------------- /Python27/include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/ceval.h -------------------------------------------------------------------------------- /Python27/include/classobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/classobject.h -------------------------------------------------------------------------------- /Python27/include/cobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/cobject.h -------------------------------------------------------------------------------- /Python27/include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/code.h -------------------------------------------------------------------------------- /Python27/include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/codecs.h -------------------------------------------------------------------------------- /Python27/include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/compile.h -------------------------------------------------------------------------------- /Python27/include/complexobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/complexobject.h -------------------------------------------------------------------------------- /Python27/include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/datetime.h -------------------------------------------------------------------------------- /Python27/include/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/descrobject.h -------------------------------------------------------------------------------- /Python27/include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/dictobject.h -------------------------------------------------------------------------------- /Python27/include/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/dtoa.h -------------------------------------------------------------------------------- /Python27/include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/enumobject.h -------------------------------------------------------------------------------- /Python27/include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/errcode.h -------------------------------------------------------------------------------- /Python27/include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/eval.h -------------------------------------------------------------------------------- /Python27/include/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/fileobject.h -------------------------------------------------------------------------------- /Python27/include/floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/floatobject.h -------------------------------------------------------------------------------- /Python27/include/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/frameobject.h -------------------------------------------------------------------------------- /Python27/include/funcobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/funcobject.h -------------------------------------------------------------------------------- /Python27/include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/genobject.h -------------------------------------------------------------------------------- /Python27/include/graminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/graminit.h -------------------------------------------------------------------------------- /Python27/include/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/grammar.h -------------------------------------------------------------------------------- /Python27/include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/import.h -------------------------------------------------------------------------------- /Python27/include/intobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/intobject.h -------------------------------------------------------------------------------- /Python27/include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/intrcheck.h -------------------------------------------------------------------------------- /Python27/include/iterobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/iterobject.h -------------------------------------------------------------------------------- /Python27/include/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/listobject.h -------------------------------------------------------------------------------- /Python27/include/longintrepr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/longintrepr.h -------------------------------------------------------------------------------- /Python27/include/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/longobject.h -------------------------------------------------------------------------------- /Python27/include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/marshal.h -------------------------------------------------------------------------------- /Python27/include/memoryobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/memoryobject.h -------------------------------------------------------------------------------- /Python27/include/metagrammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/metagrammar.h -------------------------------------------------------------------------------- /Python27/include/methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/methodobject.h -------------------------------------------------------------------------------- /Python27/include/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/modsupport.h -------------------------------------------------------------------------------- /Python27/include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/node.h -------------------------------------------------------------------------------- /Python27/include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/object.h -------------------------------------------------------------------------------- /Python27/include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/objimpl.h -------------------------------------------------------------------------------- /Python27/include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/opcode.h -------------------------------------------------------------------------------- /Python27/include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/osdefs.h -------------------------------------------------------------------------------- /Python27/include/parsetok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/parsetok.h -------------------------------------------------------------------------------- /Python27/include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/patchlevel.h -------------------------------------------------------------------------------- /Python27/include/pgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pgen.h -------------------------------------------------------------------------------- /Python27/include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/py_curses.h -------------------------------------------------------------------------------- /Python27/include/pyarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pyarena.h -------------------------------------------------------------------------------- /Python27/include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pycapsule.h -------------------------------------------------------------------------------- /Python27/include/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pyconfig.h -------------------------------------------------------------------------------- /Python27/include/pyctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pyctype.h -------------------------------------------------------------------------------- /Python27/include/pydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pydebug.h -------------------------------------------------------------------------------- /Python27/include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pyerrors.h -------------------------------------------------------------------------------- /Python27/include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pyexpat.h -------------------------------------------------------------------------------- /Python27/include/pyfpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pyfpe.h -------------------------------------------------------------------------------- /Python27/include/pygetopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pygetopt.h -------------------------------------------------------------------------------- /Python27/include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pymath.h -------------------------------------------------------------------------------- /Python27/include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pymem.h -------------------------------------------------------------------------------- /Python27/include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pyport.h -------------------------------------------------------------------------------- /Python27/include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pystate.h -------------------------------------------------------------------------------- /Python27/include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pystrcmp.h -------------------------------------------------------------------------------- /Python27/include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pystrtod.h -------------------------------------------------------------------------------- /Python27/include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pythonrun.h -------------------------------------------------------------------------------- /Python27/include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/pythread.h -------------------------------------------------------------------------------- /Python27/include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/setobject.h -------------------------------------------------------------------------------- /Python27/include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/structseq.h -------------------------------------------------------------------------------- /Python27/include/symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/symtable.h -------------------------------------------------------------------------------- /Python27/include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/sysmodule.h -------------------------------------------------------------------------------- /Python27/include/timefuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/timefuncs.h -------------------------------------------------------------------------------- /Python27/include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/token.h -------------------------------------------------------------------------------- /Python27/include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/traceback.h -------------------------------------------------------------------------------- /Python27/include/ucnhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/ucnhash.h -------------------------------------------------------------------------------- /Python27/include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/include/warnings.h -------------------------------------------------------------------------------- /Python27/libs/_bsddb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/_bsddb.lib -------------------------------------------------------------------------------- /Python27/libs/_ctypes.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/_ctypes.lib -------------------------------------------------------------------------------- /Python27/libs/_hashlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/_hashlib.lib -------------------------------------------------------------------------------- /Python27/libs/_msi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/_msi.lib -------------------------------------------------------------------------------- /Python27/libs/_socket.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/_socket.lib -------------------------------------------------------------------------------- /Python27/libs/_sqlite3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/_sqlite3.lib -------------------------------------------------------------------------------- /Python27/libs/_ssl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/_ssl.lib -------------------------------------------------------------------------------- /Python27/libs/_testcapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/_testcapi.lib -------------------------------------------------------------------------------- /Python27/libs/_tkinter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/_tkinter.lib -------------------------------------------------------------------------------- /Python27/libs/bz2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/bz2.lib -------------------------------------------------------------------------------- /Python27/libs/libpython27.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/libpython27.a -------------------------------------------------------------------------------- /Python27/libs/pyexpat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/pyexpat.lib -------------------------------------------------------------------------------- /Python27/libs/python27.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/python27.lib -------------------------------------------------------------------------------- /Python27/libs/select.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/select.lib -------------------------------------------------------------------------------- /Python27/libs/unicodedata.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/unicodedata.lib -------------------------------------------------------------------------------- /Python27/libs/winsound.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/Python27/libs/winsound.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/README.md -------------------------------------------------------------------------------- /autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/autogen.py -------------------------------------------------------------------------------- /bin/libpyautoc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/bin/libpyautoc.a -------------------------------------------------------------------------------- /bin/pyautoc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/bin/pyautoc.dll -------------------------------------------------------------------------------- /bin/pyautoc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/bin/pyautoc.lib -------------------------------------------------------------------------------- /demos/demo_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/demos/demo_convert.c -------------------------------------------------------------------------------- /demos/demo_embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/demos/demo_embed.c -------------------------------------------------------------------------------- /demos/demo_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/demos/demo_func.c -------------------------------------------------------------------------------- /demos/demo_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/demos/demo_mod.c -------------------------------------------------------------------------------- /demos/demo_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/demos/demo_struct.c -------------------------------------------------------------------------------- /demos/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/demos/setup.py -------------------------------------------------------------------------------- /include/PyAutoC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/include/PyAutoC.h -------------------------------------------------------------------------------- /src/PyAutoC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/src/PyAutoC.c -------------------------------------------------------------------------------- /src/PyAutoConvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/src/PyAutoConvert.c -------------------------------------------------------------------------------- /src/PyAutoFunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/src/PyAutoFunction.c -------------------------------------------------------------------------------- /src/PyAutoHashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/src/PyAutoHashtable.c -------------------------------------------------------------------------------- /src/PyAutoStruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/src/PyAutoStruct.c -------------------------------------------------------------------------------- /src/PyAutoType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/PyAutoC/HEAD/src/PyAutoType.c --------------------------------------------------------------------------------