├── .gitignore ├── .hgignore ├── .hgsubstate ├── .hgtags ├── LICENSE ├── Makefile ├── README.rst ├── _pytest ├── README-BEFORE-UPDATING ├── __init__.py ├── _argcomplete.py ├── assertion │ ├── __init__.py │ ├── newinterpret.py │ ├── oldinterpret.py │ ├── reinterpret.py │ ├── rewrite.py │ └── util.py ├── capture.py ├── config.py ├── core.py ├── doctest.py ├── genscript.py ├── helpconfig.py ├── hookspec.py ├── impl ├── junitxml.py ├── main.py ├── mark.py ├── monkeypatch.py ├── nose.py ├── pastebin.py ├── pdb.py ├── pytester.py ├── python.py ├── recwarn.py ├── resultlog.py ├── runner.py ├── skipping.py ├── standalonetemplate.py ├── terminal.py ├── tmpdir.py └── unittest.py ├── ctypes_configure ├── __init__.py ├── cbuild.py ├── configure.py ├── doc │ ├── configure.html │ ├── configure.txt │ └── sample.py ├── dumpcache.py ├── stdoutcapture.py └── test │ ├── __init__.py │ ├── test_configure.py │ └── test_dumpcache.py ├── dotviewer ├── __init__.py ├── conftest.py ├── dotviewer.py ├── drawgraph.py ├── font │ ├── DroidSans-Bold.ttf │ ├── DroidSans.ttf │ ├── DroidSansMono.ttf │ ├── NOTICE │ └── README.txt ├── graphclient.py ├── graphdisplay.py ├── graphpage.py ├── graphparse.py ├── graphserver.py ├── msgstruct.py ├── sshgraphserver.py ├── strunicode.py └── test │ ├── __init__.py │ ├── test_interactive.py │ ├── test_interactive_unicode.py │ ├── test_msgstruct.py │ ├── test_translator.py │ └── test_unicode_util.py ├── include ├── PyPy.h └── README ├── lib-python ├── 3 │ ├── _osx_support.py │ ├── test │ │ ├── crashers │ │ │ └── trace_at_recursion_limit.py │ │ ├── json_tests │ │ │ └── test_tool.py │ │ ├── mp_fork_bomb.py │ │ ├── sample_doctest_no_docstrings.py │ │ ├── sample_doctest_no_doctests.py │ │ ├── test__osx_support.py │ │ ├── test_file_eintr.py │ │ └── test_tools.py │ └── tkinter │ │ └── test │ │ └── test_tkinter │ │ └── test_misc.py ├── 2.7 │ ├── 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 │ ├── __phello__.foo.py │ ├── _abcoll.py │ ├── _osx_support.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 │ ├── 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 │ ├── 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_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_errno.py │ │ │ ├── test_find.py │ │ │ ├── test_frombuffer.py │ │ │ ├── test_funcptr.py │ │ │ ├── test_functions.py │ │ │ ├── test_incomplete.py │ │ │ ├── test_init.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 │ │ │ └── test_wintypes.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 │ ├── 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 │ │ ├── sysconfig_cpython.py │ │ ├── sysconfig_pypy.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 │ ├── ensurepip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _bundled │ │ │ ├── pip-1.5.6-py2.py3-none-any.whl │ │ │ └── setuptools-7.0-py2.py3-none-any.whl │ │ └── _uninstall.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 │ ├── heapq.py │ ├── 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 │ │ │ ├── idle.ico │ │ │ ├── idle_16.gif │ │ │ ├── idle_16.png │ │ │ ├── idle_32.gif │ │ │ ├── idle_32.png │ │ │ ├── idle_48.gif │ │ │ ├── idle_48.png │ │ │ ├── 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 │ │ ├── idle_test │ │ │ ├── README.txt │ │ │ ├── __init__.py │ │ │ ├── htest.py │ │ │ ├── mock_idle.py │ │ │ ├── mock_tk.py │ │ │ ├── test_autocomplete.py │ │ │ ├── test_autoexpand.py │ │ │ ├── test_calltips.py │ │ │ ├── test_config_name.py │ │ │ ├── test_configdialog.py │ │ │ ├── test_delegator.py │ │ │ ├── test_formatparagraph.py │ │ │ ├── test_grep.py │ │ │ ├── test_hyperparser.py │ │ │ ├── test_idlehistory.py │ │ │ ├── test_parenmatch.py │ │ │ ├── test_pathbrowser.py │ │ │ ├── test_rstrip.py │ │ │ ├── test_searchdialogbase.py │ │ │ ├── test_searchengine.py │ │ │ ├── test_text.py │ │ │ ├── test_textview.py │ │ │ ├── test_warning.py │ │ │ └── test_widgetredir.py │ │ ├── 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 │ ├── 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_tool.py │ │ │ └── test_unicode.py │ │ └── tool.py │ ├── keyword.py │ ├── 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_font.py │ │ │ │ ├── test_geometry_managers.py │ │ │ │ ├── test_images.py │ │ │ │ ├── test_loadtk.py │ │ │ │ ├── test_text.py │ │ │ │ ├── test_variables.py │ │ │ │ └── test_widgets.py │ │ │ ├── test_ttk │ │ │ │ ├── __init__.py │ │ │ │ ├── support.py │ │ │ │ ├── test_extensions.py │ │ │ │ ├── test_functions.py │ │ │ │ ├── test_style.py │ │ │ │ └── test_widgets.py │ │ │ └── widget_tests.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_asserts.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 │ │ │ ├── false_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 │ ├── optparse.py │ ├── os.py │ ├── os2emxpath.py │ ├── pdb.doc │ ├── pdb.py │ ├── pickle.py │ ├── pickletools.py │ ├── pipes.py │ ├── pkgutil.py │ ├── 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_data │ │ ├── __init__.py │ │ └── topics.py │ ├── quopri.py │ ├── random.py │ ├── re.py │ ├── repr.py │ ├── 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 │ ├── 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 │ │ ├── _mock_backport.py │ │ ├── audiodata │ │ │ ├── pluck-pcm16.aiff │ │ │ ├── pluck-pcm16.au │ │ │ ├── pluck-pcm16.wav │ │ │ ├── pluck-pcm24.aiff │ │ │ ├── pluck-pcm24.wav │ │ │ ├── pluck-pcm32.aiff │ │ │ ├── pluck-pcm32.au │ │ │ ├── pluck-pcm32.wav │ │ │ ├── pluck-pcm8.aiff │ │ │ ├── pluck-pcm8.au │ │ │ ├── pluck-pcm8.wav │ │ │ ├── pluck-ulaw.aifc │ │ │ └── pluck-ulaw.au │ │ ├── audiotest.au │ │ ├── audiotests.py │ │ ├── autotest.py │ │ ├── bad_coding.py │ │ ├── bad_coding2.py │ │ ├── bad_coding3.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 │ │ ├── capath │ │ │ ├── 4e1295a3.0 │ │ │ ├── 5ed36f99.0 │ │ │ ├── 6e88d7b8.0 │ │ │ └── 99d0fa06.0 │ │ ├── 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 │ │ │ ├── iso2022_jp-utf8.txt │ │ │ ├── iso2022_jp.txt │ │ │ ├── iso2022_kr-utf8.txt │ │ │ ├── iso2022_kr.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 │ │ │ ├── buffer_mutate.py │ │ │ ├── compiler_recursion.py │ │ │ ├── decref_before_assignment.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 │ │ ├── dh512.pem │ │ ├── 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 │ │ ├── imghdrdata │ │ │ ├── python.bmp │ │ │ ├── python.gif │ │ │ ├── python.jpg │ │ │ ├── python.pbm │ │ │ ├── python.pgm │ │ │ ├── python.png │ │ │ ├── python.ppm │ │ │ ├── python.ras │ │ │ ├── python.sgi │ │ │ ├── python.tiff │ │ │ └── python.xbm │ │ ├── infinite_reload.py │ │ ├── inspect_fodder.py │ │ ├── inspect_fodder2.py │ │ ├── keycert.passwd.pem │ │ ├── keycert.pem │ │ ├── keycert2.pem │ │ ├── keycert3.pem │ │ ├── keycert4.pem │ │ ├── leakers │ │ │ ├── README.txt │ │ │ ├── __init__.py │ │ │ ├── test_ctypes.py │ │ │ ├── test_dictself.py │ │ │ ├── test_gestalt.py │ │ │ └── test_selftype.py │ │ ├── list_tests.py │ │ ├── lock_tests.py │ │ ├── make_ssl_certs.py │ │ ├── mapping_tests.py │ │ ├── math_testcases.txt │ │ ├── mp_fork_bomb.py │ │ ├── nokia.pem │ │ ├── nullbytecert.pem │ │ ├── nullcert.pem │ │ ├── outstanding_bugs.py │ │ ├── pickletester.py │ │ ├── profilee.py │ │ ├── pycacert.pem │ │ ├── pyclbr_input.py │ │ ├── pydoc_mod.py │ │ ├── pydocfodder.py │ │ ├── pystone.py │ │ ├── randv2_32.pck │ │ ├── randv2_64.pck │ │ ├── randv3.pck │ │ ├── re_tests.py │ │ ├── regrtest.py │ │ ├── relimport.py │ │ ├── reperf.py │ │ ├── revocation.crl │ │ ├── sample_doctest.py │ │ ├── sample_doctest_no_docstrings.py │ │ ├── sample_doctest_no_doctests.py │ │ ├── script_helper.py │ │ ├── selfsigned_pythontestdotnet.pem │ │ ├── seq_tests.py │ │ ├── sgml_input.html │ │ ├── sha256.pem │ │ ├── sortperf.py │ │ ├── ssl_cert.pem │ │ ├── ssl_key.passwd.pem │ │ ├── ssl_key.pem │ │ ├── ssl_servers.py │ │ ├── string_tests.py │ │ ├── subprocessdata │ │ │ └── sigchild_ignore.py │ │ ├── symlink_support.py │ │ ├── test_MimeWriter.py │ │ ├── test_SimpleHTTPServer.py │ │ ├── test_StringIO.py │ │ ├── test___all__.py │ │ ├── test___future__.py │ │ ├── test__locale.py │ │ ├── test__osx_support.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_iso2022.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_ensurepip.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_file_eintr.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_idle.py │ │ ├── test_imageop.py │ │ ├── test_imaplib.py │ │ ├── test_imgfile.py │ │ ├── test_imghdr.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_macurl2path.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_nntplib.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_py_compile.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_spwd.py │ │ ├── test_sqlite.py │ │ ├── test_ssl.py │ │ ├── test_startfile.py │ │ ├── test_stat.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_sunau.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_tools.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 │ ├── tokenize.py │ ├── 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 │ ├── 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 ├── conftest.py ├── stdlib-upgrade.txt ├── stdlib-version.txt └── win32-failures.txt ├── lib_pypy ├── __init__.py ├── _audioop_build.py ├── _codecs_cn.py ├── _codecs_hk.py ├── _codecs_iso2022.py ├── _codecs_jp.py ├── _codecs_kr.py ├── _codecs_tw.py ├── _collections.py ├── _csv.py ├── _ctypes │ ├── __init__.py │ ├── array.py │ ├── basics.py │ ├── builtin.py │ ├── dll.py │ ├── dummy.py │ ├── function.py │ ├── keepalive.txt │ ├── pointer.py │ ├── primitive.py │ ├── structure.py │ └── union.py ├── _ctypes_test.c ├── _ctypes_test.py ├── _curses.py ├── _curses_build.py ├── _curses_panel.py ├── _elementtree.py ├── _ffi.py ├── _functools.py ├── _gdbm_build.py ├── _marshal.py ├── _md5.py ├── _pwdgrp_build.py ├── _pypy_interact.py ├── _pypy_irc_topic.py ├── _pypy_testcapi.py ├── _pypy_wait.py ├── _scproxy.py ├── _sha.py ├── _sha256.py ├── _sha512.py ├── _sqlite3.py ├── _sqlite3_build.py ├── _structseq.py ├── _subprocess.py ├── _syslog_build.py ├── _testcapi.py ├── _testcapimodule.c ├── _tkinter │ ├── __init__.py │ ├── app.py │ ├── license.terms │ ├── tclobj.py │ └── tklib_build.py ├── audioop.py ├── cPickle.py ├── cStringIO.py ├── cffi.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt ├── cffi │ ├── __init__.py │ ├── _cffi_include.h │ ├── _pycparser │ │ ├── README │ │ ├── __init__.py │ │ ├── _ast_gen.py │ │ ├── _build_tables.py │ │ ├── _c_ast.cfg │ │ ├── ast_transforms.py │ │ ├── c_ast.py │ │ ├── c_generator.py │ │ ├── c_lexer.py │ │ ├── c_parser.py │ │ ├── lextab.py │ │ ├── ply │ │ │ ├── __init__.py │ │ │ ├── cpp.py │ │ │ ├── ctokens.py │ │ │ ├── lex.py │ │ │ └── yacc.py │ │ ├── plyparser.py │ │ └── yacctab.py │ ├── api.py │ ├── backend_ctypes.py │ ├── cffi_opcode.py │ ├── commontypes.py │ ├── cparser.py │ ├── ffiplatform.py │ ├── gc_weakref.py │ ├── lock.py │ ├── model.py │ ├── parse_c_type.h │ ├── recompiler.py │ ├── setuptools_ext.py │ ├── testing │ │ ├── __init__.py │ │ └── udir.py │ ├── vengine_cpy.py │ ├── vengine_gen.py │ └── verifier.py ├── ctypes_config_cache │ ├── __init__.py │ ├── dumpcache.py │ ├── locale.ctc.py │ ├── rebuild.py │ └── resource.ctc.py ├── ctypes_support.py ├── datetime.py ├── dbm.py ├── future_builtins.py ├── gdbm.py ├── greenlet.egg-info ├── greenlet.py ├── grp.py ├── identity_dict.py ├── marshal.py ├── msvcrt.py ├── pwd.py ├── pyrepl │ ├── __init__.py │ ├── cmdrepl.py │ ├── commands.py │ ├── completer.py │ ├── completing_reader.py │ ├── console.py │ ├── copy_code.py │ ├── curses.py │ ├── fancy_termios.py │ ├── historical_reader.py │ ├── input.py │ ├── keymap.py │ ├── keymaps.py │ ├── module_lister.py │ ├── pygame_console.py │ ├── pygame_keymap.py │ ├── python_reader.py │ ├── reader.py │ ├── readline.py │ ├── simple_interact.py │ ├── unicodedata_.py │ ├── unix_console.py │ └── unix_eventqueue.py ├── readline.egg-info ├── readline.py ├── resource.py ├── stackless.py ├── syslog.py ├── testcapi_long.h └── tputil.py ├── py ├── README-BEFORE-UPDATING ├── __init__.py ├── __metainfo.py ├── _apipkg.py ├── _builtin.py ├── _code │ ├── __init__.py │ ├── _assertionnew.py │ ├── _assertionold.py │ ├── _py2traceback.py │ ├── assertion.py │ ├── code.py │ └── source.py ├── _error.py ├── _iniconfig.py ├── _io │ ├── __init__.py │ ├── capture.py │ ├── saferepr.py │ └── terminalwriter.py ├── _log │ ├── __init__.py │ ├── log.py │ └── warning.py ├── _path │ ├── __init__.py │ ├── cacheutil.py │ ├── common.py │ ├── local.py │ ├── svnurl.py │ └── svnwc.py ├── _process │ ├── __init__.py │ ├── cmdexec.py │ ├── forkedfunc.py │ └── killproc.py ├── _std.py ├── _xmlgen.py └── test.py ├── pypy ├── __init__.py ├── bin │ ├── checkmodule.py │ ├── dotviewer.py │ ├── pyinteractive.py │ ├── pypy_interact │ └── reportstaticdata.py ├── config │ ├── __init__.py │ ├── makerestdoc.py │ ├── pypyoption.py │ └── test │ │ ├── __init__.py │ │ ├── test_makerestdoc.py │ │ └── test_pypyoption.py ├── conftest.py ├── doc │ ├── Makefile │ ├── TODO │ ├── __init__.py │ ├── __pypy__-module.rst │ ├── architecture.rst │ ├── build.rst │ ├── coding-guide.rst │ ├── commandline_ref.rst │ ├── conf.py │ ├── config │ │ ├── __init__.py │ │ ├── commandline.txt │ │ ├── generate.py │ │ ├── index.rst │ │ ├── makemodules.py │ │ ├── mergedblocks.png │ │ ├── objspace.allworkingmodules.txt │ │ ├── objspace.disable_call_speedhacks.txt │ │ ├── objspace.extmodules.txt │ │ ├── objspace.geninterp.txt │ │ ├── objspace.honor__builtins__.txt │ │ ├── objspace.lonepycfiles.txt │ │ ├── objspace.nofaking.txt │ │ ├── objspace.soabi.txt │ │ ├── objspace.std.getattributeshortcut.txt │ │ ├── objspace.std.intshortcut.txt │ │ ├── objspace.std.methodcachesizeexp.txt │ │ ├── objspace.std.newshortcut.txt │ │ ├── objspace.std.optimized_comparison_op.txt │ │ ├── objspace.std.optimized_list_getitem.txt │ │ ├── objspace.std.prebuiltintfrom.txt │ │ ├── objspace.std.prebuiltintto.txt │ │ ├── objspace.std.sharesmallstr.txt │ │ ├── objspace.std.txt │ │ ├── objspace.std.withcelldict.txt │ │ ├── objspace.std.withidentitydict.txt │ │ ├── objspace.std.withliststrategies.txt │ │ ├── objspace.std.withmapdict.txt │ │ ├── objspace.std.withmethodcache.txt │ │ ├── objspace.std.withmethodcachecounter.txt │ │ ├── objspace.std.withprebuiltchar.txt │ │ ├── objspace.std.withprebuiltint.txt │ │ ├── objspace.std.withrangelist.txt │ │ ├── objspace.std.withsmalllong.txt │ │ ├── objspace.std.withsmalltuple.txt │ │ ├── objspace.std.withspecialisedtuple.txt │ │ ├── objspace.std.withstrbuf.txt │ │ ├── objspace.std.withtproxy.txt │ │ ├── objspace.std.withtypeversion.txt │ │ ├── objspace.translationmodules.txt │ │ ├── objspace.txt │ │ ├── objspace.usemodules.__builtin__.txt │ │ ├── objspace.usemodules.__pypy__.txt │ │ ├── objspace.usemodules._ast.txt │ │ ├── objspace.usemodules._cffi_backend.txt │ │ ├── objspace.usemodules._codecs.txt │ │ ├── objspace.usemodules._collections.txt │ │ ├── objspace.usemodules._continuation.txt │ │ ├── objspace.usemodules._csv.txt │ │ ├── objspace.usemodules._demo.txt │ │ ├── objspace.usemodules._ffi.txt │ │ ├── objspace.usemodules._file.txt │ │ ├── objspace.usemodules._hashlib.txt │ │ ├── objspace.usemodules._io.txt │ │ ├── objspace.usemodules._locale.txt │ │ ├── objspace.usemodules._lsprof.txt │ │ ├── objspace.usemodules._md5.txt │ │ ├── objspace.usemodules._minimal_curses.txt │ │ ├── objspace.usemodules._multibytecodec.txt │ │ ├── objspace.usemodules._multiprocessing.txt │ │ ├── objspace.usemodules._pickle_support.txt │ │ ├── objspace.usemodules._pypyjson.txt │ │ ├── objspace.usemodules._random.txt │ │ ├── objspace.usemodules._rawffi.txt │ │ ├── objspace.usemodules._sha.txt │ │ ├── objspace.usemodules._socket.txt │ │ ├── objspace.usemodules._sre.txt │ │ ├── objspace.usemodules._ssl.txt │ │ ├── objspace.usemodules._testing.txt │ │ ├── objspace.usemodules._vmprof.txt │ │ ├── objspace.usemodules._warnings.txt │ │ ├── objspace.usemodules._weakref.txt │ │ ├── objspace.usemodules._winreg.txt │ │ ├── objspace.usemodules.array.txt │ │ ├── objspace.usemodules.binascii.txt │ │ ├── objspace.usemodules.bz2.txt │ │ ├── objspace.usemodules.cStringIO.txt │ │ ├── objspace.usemodules.cmath.txt │ │ ├── objspace.usemodules.cppyy.txt │ │ ├── objspace.usemodules.cpyext.txt │ │ ├── objspace.usemodules.crypt.txt │ │ ├── objspace.usemodules.errno.txt │ │ ├── objspace.usemodules.exceptions.txt │ │ ├── objspace.usemodules.fcntl.txt │ │ ├── objspace.usemodules.gc.txt │ │ ├── objspace.usemodules.imp.txt │ │ ├── objspace.usemodules.itertools.txt │ │ ├── objspace.usemodules.marshal.txt │ │ ├── objspace.usemodules.math.txt │ │ ├── objspace.usemodules.micronumpy.txt │ │ ├── objspace.usemodules.mmap.txt │ │ ├── objspace.usemodules.operator.txt │ │ ├── objspace.usemodules.parser.txt │ │ ├── objspace.usemodules.posix.txt │ │ ├── objspace.usemodules.pwd.txt │ │ ├── objspace.usemodules.pyexpat.txt │ │ ├── objspace.usemodules.pypyjit.txt │ │ ├── objspace.usemodules.rbench.txt │ │ ├── objspace.usemodules.select.txt │ │ ├── objspace.usemodules.signal.txt │ │ ├── objspace.usemodules.struct.txt │ │ ├── objspace.usemodules.symbol.txt │ │ ├── objspace.usemodules.sys.txt │ │ ├── objspace.usemodules.termios.txt │ │ ├── objspace.usemodules.thread.txt │ │ ├── objspace.usemodules.time.txt │ │ ├── objspace.usemodules.token.txt │ │ ├── objspace.usemodules.txt │ │ ├── objspace.usemodules.unicodedata.txt │ │ ├── objspace.usemodules.zipimport.txt │ │ ├── objspace.usemodules.zlib.txt │ │ ├── objspace.usepycfiles.txt │ │ ├── opt.rst │ │ ├── translation.backend.txt │ │ ├── translation.backendopt.clever_malloc_removal.txt │ │ ├── translation.backendopt.clever_malloc_removal_heuristic.txt │ │ ├── translation.backendopt.clever_malloc_removal_threshold.txt │ │ ├── translation.backendopt.constfold.txt │ │ ├── translation.backendopt.inline.txt │ │ ├── translation.backendopt.inline_heuristic.txt │ │ ├── translation.backendopt.inline_threshold.txt │ │ ├── translation.backendopt.mallocs.txt │ │ ├── translation.backendopt.merge_if_blocks.txt │ │ ├── translation.backendopt.none.txt │ │ ├── translation.backendopt.print_statistics.txt │ │ ├── translation.backendopt.profile_based_inline.txt │ │ ├── translation.backendopt.profile_based_inline_heuristic.txt │ │ ├── translation.backendopt.profile_based_inline_threshold.txt │ │ ├── translation.backendopt.raisingop2direct_call.txt │ │ ├── translation.backendopt.really_remove_asserts.txt │ │ ├── translation.backendopt.remove_asserts.txt │ │ ├── translation.backendopt.stack_optimization.txt │ │ ├── translation.backendopt.storesink.txt │ │ ├── translation.backendopt.txt │ │ ├── translation.builtins_can_raise_exceptions.txt │ │ ├── translation.cc.txt │ │ ├── translation.check_str_without_nul.txt │ │ ├── translation.cli.exception_transformer.txt │ │ ├── translation.cli.txt │ │ ├── translation.compilerflags.txt │ │ ├── translation.continuation.txt │ │ ├── translation.countmallocs.txt │ │ ├── translation.debug.txt │ │ ├── translation.dont_write_c_files.txt │ │ ├── translation.dump_static_data_info.txt │ │ ├── translation.fork_before.txt │ │ ├── translation.gc.txt │ │ ├── translation.gcremovetypeptr.txt │ │ ├── translation.gcrootfinder.txt │ │ ├── translation.gctransformer.txt │ │ ├── translation.icon.txt │ │ ├── translation.instrument.txt │ │ ├── translation.instrumentctl.txt │ │ ├── translation.jit.txt │ │ ├── translation.jit_backend.txt │ │ ├── translation.jit_ffi.txt │ │ ├── translation.jit_profiler.txt │ │ ├── translation.linkerflags.txt │ │ ├── translation.list_comprehension_operations.txt │ │ ├── translation.lldebug.txt │ │ ├── translation.lldebug0.txt │ │ ├── translation.log.txt │ │ ├── translation.make_jobs.txt │ │ ├── translation.no__thread.txt │ │ ├── translation.noprofopt.txt │ │ ├── translation.output.txt │ │ ├── translation.platform.txt │ │ ├── translation.profopt.txt │ │ ├── translation.rweakref.txt │ │ ├── translation.sandbox.txt │ │ ├── translation.secondaryentrypoints.txt │ │ ├── translation.shared.txt │ │ ├── translation.simplifying.txt │ │ ├── translation.taggedpointers.txt │ │ ├── translation.thread.txt │ │ ├── translation.txt │ │ ├── translation.type_system.txt │ │ ├── translation.vanilla.txt │ │ ├── translation.verbose.txt │ │ ├── translation.withsmallfuncsets.txt │ │ └── unmergedblocks.png │ ├── configuration.rst │ ├── contributor.rst │ ├── cppyy.rst │ ├── cppyy_backend.rst │ ├── cppyy_example.rst │ ├── cpython_differences.rst │ ├── dev_method.rst │ ├── dir-reference.rst │ ├── discussion │ │ ├── ctypes-implementation.rst │ │ ├── finalizer-order.rst │ │ ├── howtoimplementpickling.rst │ │ ├── improve-rpython.rst │ │ └── jit-profiler.rst │ ├── discussions.rst │ ├── embedding.rst │ ├── eventhistory.rst │ ├── extending.rst │ ├── extradoc.rst │ ├── faq.rst │ ├── gc_info.rst │ ├── getting-started-dev.rst │ ├── glossary.rst │ ├── how-to-contribute.rst │ ├── how-to-release.rst │ ├── image │ │ ├── JIT.dot │ │ ├── arch-impllevels.graffle │ │ ├── arch-impllevels.pdf │ │ ├── arch-jit-gen.graffle │ │ ├── arch-jit-gen.pdf │ │ ├── arch-pypy-basic.graffle │ │ ├── arch-pypy-basic.pdf │ │ ├── arch-translation.graffle │ │ ├── arch-translation.pdf │ │ ├── bpnn_callgraph.png │ │ ├── bpnn_update_detail.png │ │ ├── compat-matrix.png │ │ ├── compat-matrix.sxc │ │ ├── jitdata-interpreter.dot │ │ ├── jitviewer.png │ │ ├── lattice1.dot │ │ ├── lattice2.dot │ │ ├── lattice3.dot │ │ ├── merge-split.dot │ │ ├── stackless.dot │ │ └── stackless_informal.dot │ ├── index-of-release-notes.rst │ ├── index-of-whatsnew.rst │ ├── index-report.rst │ ├── index.rst │ ├── install.rst │ ├── interpreter-optimizations.rst │ ├── interpreter.rst │ ├── introduction.rst │ ├── jit-hooks.rst │ ├── make.bat │ ├── man │ │ └── pypy.1.rst │ ├── objspace-proxies.rst │ ├── objspace.rst │ ├── parse_logs.py │ ├── parser.rst │ ├── project-documentation.rst │ ├── project-ideas.rst │ ├── pypyconfig.py │ ├── release-0.6.rst │ ├── release-0.7.0.rst │ ├── release-0.8.0.rst │ ├── release-0.9.0.rst │ ├── release-0.99.0.rst │ ├── release-1.0.0.rst │ ├── release-1.1.0.rst │ ├── release-1.2.0.rst │ ├── release-1.3.0.rst │ ├── release-1.4.0.rst │ ├── release-1.4.0beta.rst │ ├── release-1.4.1.rst │ ├── release-1.5.0.rst │ ├── release-1.6.0.rst │ ├── release-1.7.0.rst │ ├── release-1.8.0.rst │ ├── release-1.9.0.rst │ ├── release-2.0.0-beta1.rst │ ├── release-2.0.0-beta2.rst │ ├── release-2.0.0.rst │ ├── release-2.0.1.rst │ ├── release-2.0.2.rst │ ├── release-2.1.0-beta1.rst │ ├── release-2.1.0-beta2.rst │ ├── release-2.1.0.rst │ ├── release-2.2.0.rst │ ├── release-2.2.1.rst │ ├── release-2.3.0.rst │ ├── release-2.3.1.rst │ ├── release-2.4.0.rst │ ├── release-2.5.0.rst │ ├── release-2.5.1.rst │ ├── release-2.6.0.rst │ ├── release-pypy3-2.1.0-beta1.rst │ ├── release-pypy3-2.3.1.rst │ ├── release-pypy3-2.4.0.rst │ ├── sandbox.rst │ ├── sprint-reports.rst │ ├── stackless.rst │ ├── stm.rst │ ├── test │ │ └── test_whatsnew.py │ ├── tool │ │ ├── __init__.py │ │ ├── makecontributor.py │ │ └── mydot.py │ ├── video-index.rst │ ├── whatsnew-1.9.rst │ ├── whatsnew-2.0.0-beta1.rst │ ├── whatsnew-2.0.rst │ ├── whatsnew-2.1.rst │ ├── whatsnew-2.2.rst │ ├── whatsnew-2.3.0.rst │ ├── whatsnew-2.3.1.rst │ ├── whatsnew-2.4.0.rst │ ├── whatsnew-2.5.0.rst │ ├── whatsnew-2.5.1.rst │ ├── whatsnew-2.6.0.rst │ ├── whatsnew-head.rst │ ├── whatsnew-pypy3-2.3.1.rst │ ├── whatsnew-pypy3-2.4.0.rst │ ├── windows.rst │ └── you-want-to-help.rst ├── goal │ ├── __init__.py │ ├── getnightly.py │ ├── pypy.ico │ └── targetpypystandalone.py ├── interpreter │ ├── __init__.py │ ├── app_main.py │ ├── argument.py │ ├── astcompiler │ │ ├── __init__.py │ │ ├── assemble.py │ │ ├── ast.py │ │ ├── astbuilder.py │ │ ├── asthelpers.py │ │ ├── codegen.py │ │ ├── consts.py │ │ ├── misc.py │ │ ├── optimize.py │ │ ├── symtable.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── stdlib_testall.py │ │ │ ├── test_ast.py │ │ │ ├── test_astbuilder.py │ │ │ ├── test_compiler.py │ │ │ ├── test_misc.py │ │ │ └── test_symtable.py │ │ └── tools │ │ │ ├── Python.asdl │ │ │ ├── asdl.py │ │ │ ├── asdl_py.py │ │ │ └── spark.py │ ├── baseobjspace.py │ ├── debug.py │ ├── error.py │ ├── eval.py │ ├── executioncontext.py │ ├── function.py │ ├── gateway.py │ ├── generator.py │ ├── interactive.py │ ├── main.py │ ├── miscutils.py │ ├── mixedmodule.py │ ├── module.py │ ├── nestedscope.py │ ├── pycode.py │ ├── pycompiler.py │ ├── pyframe.py │ ├── pyopcode.py │ ├── pyparser │ │ ├── __init__.py │ │ ├── automata.py │ │ ├── data │ │ │ ├── Grammar2.5 │ │ │ └── Grammar2.7 │ │ ├── error.py │ │ ├── future.py │ │ ├── genpytokenize.py │ │ ├── metaparser.py │ │ ├── parser.py │ │ ├── parsestring.py │ │ ├── pygram.py │ │ ├── pylexer.py │ │ ├── pyparse.py │ │ ├── pytoken.py │ │ ├── pytokenize.py │ │ ├── pytokenizer.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── expressions.py │ │ │ ├── test_future.py │ │ │ ├── test_metaparser.py │ │ │ ├── test_parser.py │ │ │ ├── test_parsestring.py │ │ │ ├── test_pyparse.py │ │ │ └── unittest_samples.py │ ├── pytraceback.py │ ├── signature.py │ ├── special.py │ ├── streamutil.py │ ├── test │ │ ├── __init__.py │ │ ├── demomixedmod │ │ │ ├── __init__.py │ │ │ ├── file1.py │ │ │ └── file2_app.py │ │ ├── foointerp.py │ │ ├── hello_world.py │ │ ├── mymodule.py │ │ ├── s1.py │ │ ├── test_app_main.py │ │ ├── test_appinterp.py │ │ ├── test_argument.py │ │ ├── test_class.py │ │ ├── test_code.py │ │ ├── test_compiler.py │ │ ├── test_descrtypecheck.py │ │ ├── test_error.py │ │ ├── test_exceptcomp.py │ │ ├── test_exec.py │ │ ├── test_executioncontext.py │ │ ├── test_extmodules.py │ │ ├── test_function.py │ │ ├── test_gateway.py │ │ ├── test_generator.py │ │ ├── test_interpreter.py │ │ ├── test_main.py │ │ ├── test_mixedmodule.py │ │ ├── test_module.py │ │ ├── test_nestedscope.py │ │ ├── test_objspace.py │ │ ├── test_pyframe.py │ │ ├── test_raise.py │ │ ├── test_special.py │ │ ├── test_syntax.py │ │ ├── test_targetpypy.py │ │ ├── test_typedef.py │ │ ├── test_zpy.py │ │ └── test_zzpickle_and_slow.py │ ├── typedef.py │ └── unicodehelper.py ├── module │ ├── README.txt │ ├── __builtin__ │ │ ├── __init__.py │ │ ├── abstractinst.py │ │ ├── app_functional.py │ │ ├── app_inspect.py │ │ ├── app_io.py │ │ ├── app_operation.py │ │ ├── compiling.py │ │ ├── descriptor.py │ │ ├── functional.py │ │ ├── interp_classobj.py │ │ ├── interp_inspect.py │ │ ├── operation.py │ │ ├── state.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_abstractinst.py │ │ │ ├── test_apply.py │ │ │ ├── test_builtin.py │ │ │ ├── test_classobj.py │ │ │ ├── test_descriptor.py │ │ │ ├── test_filter.py │ │ │ ├── test_functional.py │ │ │ ├── test_minmax.py │ │ │ ├── test_range.py │ │ │ ├── test_rawinput.py │ │ │ ├── test_reduce.py │ │ │ ├── test_vars.py │ │ │ └── test_zip.py │ ├── __init__.py │ ├── __pypy__ │ │ ├── __init__.py │ │ ├── app_signal.py │ │ ├── bytebuffer.py │ │ ├── interp_builders.py │ │ ├── interp_debug.py │ │ ├── interp_dict.py │ │ ├── interp_identitydict.py │ │ ├── interp_intop.py │ │ ├── interp_magic.py │ │ ├── interp_os.py │ │ ├── interp_signal.py │ │ ├── interp_time.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_builders.py │ │ │ ├── test_bytebuffer.py │ │ │ ├── test_debug.py │ │ │ ├── test_identitydict.py │ │ │ ├── test_intop.py │ │ │ ├── test_locals2fast.py │ │ │ ├── test_magic.py │ │ │ ├── test_os.py │ │ │ ├── test_signal.py │ │ │ ├── test_special.py │ │ │ └── test_time.py │ ├── _ast │ │ ├── __init__.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_ast.py │ ├── _cffi_backend │ │ ├── __init__.py │ │ ├── cbuffer.py │ │ ├── ccallback.py │ │ ├── cdataobj.py │ │ ├── cdlopen.py │ │ ├── cerrno.py │ │ ├── cffi1_module.py │ │ ├── cffi_opcode.py │ │ ├── cgc.py │ │ ├── cglob.py │ │ ├── ctypearray.py │ │ ├── ctypeenum.py │ │ ├── ctypefunc.py │ │ ├── ctypeobj.py │ │ ├── ctypeprim.py │ │ ├── ctypeptr.py │ │ ├── ctypestruct.py │ │ ├── ctypevoid.py │ │ ├── ffi_obj.py │ │ ├── func.py │ │ ├── handle.py │ │ ├── lib_obj.py │ │ ├── libraryobj.py │ │ ├── misc.py │ │ ├── newtype.py │ │ ├── parse_c_type.py │ │ ├── realize_c_type.py │ │ ├── src │ │ │ ├── parse_c_type.c │ │ │ └── parse_c_type.h │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── _backend_test_c.py │ │ │ ├── _test_lib.c │ │ │ ├── test_c.py │ │ │ ├── test_fastpath.py │ │ │ ├── test_ffi_obj.py │ │ │ ├── test_file.py │ │ │ ├── test_handle.py │ │ │ ├── test_parse_c_type.py │ │ │ ├── test_re_python.py │ │ │ ├── test_recompiler.py │ │ │ ├── test_unicode_literals.py │ │ │ └── test_ztranslation.py │ │ └── wrapper.py │ ├── _codecs │ │ ├── __init__.py │ │ ├── interp_codecs.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_codecs.py │ │ │ └── test_ztranslation.py │ ├── _collections │ │ ├── __init__.py │ │ ├── app_defaultdict.py │ │ ├── interp_defaultdict.py │ │ ├── interp_deque.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_defaultdict.py │ │ │ └── test_deque.py │ ├── _continuation │ │ ├── __init__.py │ │ ├── app_continuation.py │ │ ├── interp_continuation.py │ │ ├── interp_pickle.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── support.py │ │ │ ├── test_generator.py │ │ │ ├── test_stacklet.py │ │ │ ├── test_translated.py │ │ │ └── test_zpickle.py │ ├── _csv │ │ ├── __init__.py │ │ ├── app_csv.py │ │ ├── interp_csv.py │ │ ├── interp_reader.py │ │ ├── interp_writer.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_dialect.py │ │ │ ├── test_reader.py │ │ │ ├── test_writer.py │ │ │ └── test_ztranslation.py │ ├── _demo │ │ ├── __init__.py │ │ ├── app_demo.py │ │ ├── demo.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_import.py │ │ │ └── test_sieve.py │ ├── _file │ │ ├── __init__.py │ │ ├── interp_file.py │ │ ├── interp_stream.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_file.py │ │ │ ├── test_file_extra.py │ │ │ └── test_large_file.py │ ├── _hashlib │ │ ├── __init__.py │ │ ├── interp_hashlib.py │ │ └── test │ │ │ ├── test_hashlib.py │ │ │ └── test_ztranslation.py │ ├── _io │ │ ├── __init__.py │ │ ├── interp_bufferedio.py │ │ ├── interp_bytesio.py │ │ ├── interp_fileio.py │ │ ├── interp_io.py │ │ ├── interp_iobase.py │ │ ├── interp_stringio.py │ │ ├── interp_textio.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_bufferedio.py │ │ │ ├── test_bytesio.py │ │ │ ├── test_fileio.py │ │ │ ├── test_io.py │ │ │ ├── test_stringio.py │ │ │ ├── test_textio.py │ │ │ └── test_ztranslation.py │ ├── _locale │ │ ├── __init__.py │ │ ├── interp_locale.py │ │ └── test │ │ │ └── test_locale.py │ ├── _lsprof │ │ ├── __init__.py │ │ ├── interp_lsprof.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── profilee.py │ │ │ └── test_cprofile.py │ ├── _md5 │ │ ├── __init__.py │ │ ├── interp_md5.py │ │ └── test │ │ │ └── test_md5.py │ ├── _minimal_curses │ │ ├── __init__.py │ │ ├── app_curses.py │ │ ├── fficurses.py │ │ ├── interp_curses.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_curses.py │ ├── _multibytecodec │ │ ├── __init__.py │ │ ├── app_multibytecodec.py │ │ ├── c_codecs.py │ │ ├── interp_incremental.py │ │ ├── interp_multibytecodec.py │ │ ├── src │ │ │ └── cjkcodecs │ │ │ │ ├── README │ │ │ │ ├── _codecs_cn.c │ │ │ │ ├── _codecs_hk.c │ │ │ │ ├── _codecs_iso2022.c │ │ │ │ ├── _codecs_jp.c │ │ │ │ ├── _codecs_kr.c │ │ │ │ ├── _codecs_tw.c │ │ │ │ ├── alg_jisx0201.h │ │ │ │ ├── cjkcodecs.h │ │ │ │ ├── emu_jisx0213_2000.h │ │ │ │ ├── mappings_cn.h │ │ │ │ ├── mappings_hk.h │ │ │ │ ├── mappings_jisx0213_pair.h │ │ │ │ ├── mappings_jp.h │ │ │ │ ├── mappings_kr.h │ │ │ │ ├── mappings_tw.h │ │ │ │ ├── multibytecodec.c │ │ │ │ └── multibytecodec.h │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_app_codecs.py │ │ │ ├── test_app_incremental.py │ │ │ ├── test_app_stream.py │ │ │ ├── test_c_codecs.py │ │ │ └── test_translation.py │ ├── _multiprocessing │ │ ├── __init__.py │ │ ├── interp_connection.py │ │ ├── interp_memory.py │ │ ├── interp_semaphore.py │ │ ├── interp_win32.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_connection.py │ │ │ ├── test_memory.py │ │ │ ├── test_semaphore.py │ │ │ ├── test_win32.py │ │ │ └── test_ztranslation.py │ ├── _pickle_support │ │ ├── __init__.py │ │ └── maker.py │ ├── _pypyjson │ │ ├── __init__.py │ │ ├── interp_decoder.py │ │ ├── interp_encoder.py │ │ ├── targetjson.py │ │ └── test │ │ │ └── test__pypyjson.py │ ├── _random │ │ ├── __init__.py │ │ ├── interp_random.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_random.py │ │ │ └── test_ztranslation.py │ ├── _rawffi │ │ ├── TODO │ │ ├── __init__.py │ │ ├── alt │ │ │ ├── __init__.py │ │ │ ├── app_struct.py │ │ │ ├── interp_ffitype.py │ │ │ ├── interp_funcptr.py │ │ │ ├── interp_struct.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── test_ffitype.py │ │ │ │ ├── test_funcptr.py │ │ │ │ ├── test_struct.py │ │ │ │ └── test_type_converter.py │ │ │ └── type_converter.py │ │ ├── array.py │ │ ├── buffer.py │ │ ├── callback.py │ │ ├── interp_exit.py │ │ ├── interp_rawffi.py │ │ ├── structure.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test__rawffi.py │ │ │ ├── test_exit.py │ │ │ ├── test_nested.py │ │ │ ├── test_struct.py │ │ │ ├── test_tracker.py │ │ │ └── test_ztranslation.py │ │ └── tracker.py │ ├── _sha │ │ ├── __init__.py │ │ ├── interp_sha.py │ │ └── test │ │ │ └── test_sha.py │ ├── _socket │ │ ├── __init__.py │ │ ├── interp_func.py │ │ ├── interp_socket.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_sock_app.py │ │ │ └── test_ztranslation.py │ ├── _sre │ │ ├── __init__.py │ │ ├── interp_sre.py │ │ └── test │ │ │ ├── support_test_app_sre.py │ │ │ └── test_app_sre.py │ ├── _ssl │ │ ├── __init__.py │ │ ├── interp_ssl.py │ │ ├── interp_win32.py │ │ ├── ssl_data.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── dh512.pem │ │ │ ├── nullbytecert.pem │ │ │ ├── test_ssl.py │ │ │ ├── test_win32.py │ │ │ └── test_ztranslation.py │ │ └── thread_lock.py │ ├── _testing │ │ ├── __init__.py │ │ └── app_notrpython.py │ ├── _vmprof │ │ ├── __init__.py │ │ ├── interp_vmprof.py │ │ ├── src │ │ │ ├── config.h │ │ │ ├── fake_pypy_api.c │ │ │ ├── get_custom_offset.c │ │ │ ├── getpc.h │ │ │ ├── trampoline.asmgcc.s │ │ │ ├── trampoline.h │ │ │ ├── vmprof.c │ │ │ └── vmprof.h │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test__vmprof.py │ │ │ └── test_direct.py │ ├── _warnings │ │ ├── __init__.py │ │ ├── interp_warnings.py │ │ └── test │ │ │ └── test_warnings.py │ ├── _weakref │ │ ├── __init__.py │ │ ├── interp__weakref.py │ │ └── test │ │ │ └── test_weakref.py │ ├── _winreg │ │ ├── __init__.py │ │ ├── interp_winreg.py │ │ └── test │ │ │ └── test_winreg.py │ ├── array │ │ ├── __init__.py │ │ ├── benchmark │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── circular.c │ │ │ ├── circulartst.c │ │ │ ├── circulartst.py │ │ │ ├── intimg.c │ │ │ ├── intimgtst.c │ │ │ ├── intimgtst.py │ │ │ ├── loop.c │ │ │ ├── looptst.py │ │ │ ├── result.txt │ │ │ ├── sum.c │ │ │ ├── sumtst.c │ │ │ └── sumtst.py │ │ ├── interp_array.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_array.py │ │ │ ├── test_array_old.py │ │ │ └── test_ztranslation.py │ ├── binascii │ │ ├── __init__.py │ │ ├── interp_base64.py │ │ ├── interp_binascii.py │ │ ├── interp_crc32.py │ │ ├── interp_hexlify.py │ │ ├── interp_hqx.py │ │ ├── interp_qp.py │ │ ├── interp_uu.py │ │ └── test │ │ │ └── test_binascii.py │ ├── bz2 │ │ ├── __init__.py │ │ ├── interp_bz2.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── data.bz2 │ │ │ ├── largetest.bz2 │ │ │ ├── support.py │ │ │ ├── test_bz2_compdecomp.py │ │ │ ├── test_bz2_file.py │ │ │ └── test_large.py │ ├── cStringIO │ │ ├── __init__.py │ │ ├── interp_stringio.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_interp_stringio.py │ │ │ └── test_ztranslation.py │ ├── cmath │ │ ├── __init__.py │ │ ├── interp_cmath.py │ │ └── test │ │ │ ├── cmath_testcases.txt │ │ │ └── test_cmath.py │ ├── cppyy │ │ ├── __init__.py │ │ ├── bench │ │ │ ├── Makefile │ │ │ ├── bench02.cxx │ │ │ ├── bench02.h │ │ │ ├── bench02.xml │ │ │ ├── hsimple.C │ │ │ ├── hsimple.py │ │ │ └── hsimple_rflx.py │ │ ├── capi │ │ │ ├── __init__.py │ │ │ ├── builtin_capi.py │ │ │ ├── capi_types.py │ │ │ ├── cint_capi.py │ │ │ ├── cling_capi.py │ │ │ ├── loadable_capi.py │ │ │ └── reflex_capi.py │ │ ├── converter.py │ │ ├── executor.py │ │ ├── ffitypes.py │ │ ├── genreflex-methptrgetter.patch │ │ ├── helper.py │ │ ├── include │ │ │ ├── capi.h │ │ │ ├── cintcwrapper.h │ │ │ ├── clingcwrapper.h │ │ │ ├── cppyy.h │ │ │ └── reflexcwrapper.h │ │ ├── interp_cppyy.py │ │ ├── pythonify.py │ │ ├── src │ │ │ ├── cintcwrapper.cxx │ │ │ ├── clingcwrapper.cxx │ │ │ ├── dummy_backend.cxx │ │ │ └── reflexcwrapper.cxx │ │ └── test │ │ │ ├── Makefile │ │ │ ├── __init__.py │ │ │ ├── advancedcpp.cxx │ │ │ ├── advancedcpp.h │ │ │ ├── advancedcpp.xml │ │ │ ├── advancedcpp2.cxx │ │ │ ├── advancedcpp2.h │ │ │ ├── advancedcpp2.xml │ │ │ ├── advancedcpp2_LinkDef.h │ │ │ ├── advancedcpp_LinkDef.h │ │ │ ├── bench1.cxx │ │ │ ├── bench1.py │ │ │ ├── conftest.py │ │ │ ├── crossing.cxx │ │ │ ├── crossing.h │ │ │ ├── crossing.xml │ │ │ ├── crossing_LinkDef.h │ │ │ ├── datatypes.cxx │ │ │ ├── datatypes.h │ │ │ ├── datatypes.xml │ │ │ ├── datatypes_LinkDef.h │ │ │ ├── example01.cxx │ │ │ ├── example01.h │ │ │ ├── example01.xml │ │ │ ├── example01_LinkDef.h │ │ │ ├── fragile.cxx │ │ │ ├── fragile.h │ │ │ ├── fragile.xml │ │ │ ├── fragile_LinkDef.h │ │ │ ├── iotypes.cxx │ │ │ ├── iotypes.h │ │ │ ├── iotypes.xml │ │ │ ├── iotypes_LinkDef.h │ │ │ ├── operators.cxx │ │ │ ├── operators.h │ │ │ ├── operators.xml │ │ │ ├── operators_LinkDef.h │ │ │ ├── overloads.cxx │ │ │ ├── overloads.h │ │ │ ├── overloads.xml │ │ │ ├── overloads_LinkDef.h │ │ │ ├── simple_class.C │ │ │ ├── std_streams.cxx │ │ │ ├── std_streams.h │ │ │ ├── std_streams.xml │ │ │ ├── std_streams_LinkDef.h │ │ │ ├── stltypes.cxx │ │ │ ├── stltypes.h │ │ │ ├── stltypes.xml │ │ │ ├── stltypes_LinkDef.h │ │ │ ├── test_aclassloader.py │ │ │ ├── test_advancedcpp.py │ │ │ ├── test_cint.py │ │ │ ├── test_cppyy.py │ │ │ ├── test_crossing.py │ │ │ ├── test_datatypes.py │ │ │ ├── test_fragile.py │ │ │ ├── test_helper.py │ │ │ ├── test_operators.py │ │ │ ├── test_overloads.py │ │ │ ├── test_pythonify.py │ │ │ ├── test_stltypes.py │ │ │ ├── test_streams.py │ │ │ └── test_zjit.py │ ├── cpyext │ │ ├── Doc_stubgen_enable.patch │ │ ├── TODO │ │ ├── __init__.py │ │ ├── api.py │ │ ├── boolobject.py │ │ ├── buffer.py │ │ ├── bufferobject.py │ │ ├── c-api.txt │ │ ├── cdatetime.py │ │ ├── classobject.py │ │ ├── codecs.py │ │ ├── complexobject.py │ │ ├── dictobject.py │ │ ├── eval.py │ │ ├── floatobject.py │ │ ├── frameobject.py │ │ ├── funcobject.py │ │ ├── import_.py │ │ ├── include │ │ │ ├── Python.h │ │ │ ├── abstract.h │ │ │ ├── boolobject.h │ │ │ ├── bufferobject.h │ │ │ ├── bytesobject.h │ │ │ ├── ceval.h │ │ │ ├── code.h │ │ │ ├── compile.h │ │ │ ├── complexobject.h │ │ │ ├── datetime.h │ │ │ ├── descrobject.h │ │ │ ├── dictobject.h │ │ │ ├── eval.h │ │ │ ├── fileobject.h │ │ │ ├── floatobject.h │ │ │ ├── frameobject.h │ │ │ ├── funcobject.h │ │ │ ├── import.h │ │ │ ├── intobject.h │ │ │ ├── listobject.h │ │ │ ├── longintrepr.h │ │ │ ├── methodobject.h │ │ │ ├── missing.h │ │ │ ├── modsupport.h │ │ │ ├── numpy │ │ │ │ ├── __multiarray_api.h │ │ │ │ ├── arrayobject.h │ │ │ │ ├── ndarraytypes.h │ │ │ │ ├── npy_3kcompat.h │ │ │ │ ├── npy_common.h │ │ │ │ └── old_defines.h │ │ │ ├── object.h │ │ │ ├── patchlevel.h │ │ │ ├── pycapsule.h │ │ │ ├── pycobject.h │ │ │ ├── pyconfig.h │ │ │ ├── pyerrors.h │ │ │ ├── pymath.h │ │ │ ├── pymem.h │ │ │ ├── pyport.h │ │ │ ├── pysignals.h │ │ │ ├── pystate.h │ │ │ ├── pythonrun.h │ │ │ ├── pythread.h │ │ │ ├── sliceobject.h │ │ │ ├── stringobject.h │ │ │ ├── structmember.h │ │ │ ├── structseq.h │ │ │ ├── sysmodule.h │ │ │ ├── traceback.h │ │ │ ├── tupleobject.h │ │ │ ├── unicodeobject.h │ │ │ └── warnings.h │ │ ├── intobject.py │ │ ├── iterator.py │ │ ├── listobject.py │ │ ├── longobject.py │ │ ├── mapping.py │ │ ├── memoryobject.py │ │ ├── methodobject.py │ │ ├── modsupport.py │ │ ├── ndarrayobject.py │ │ ├── number.py │ │ ├── object.py │ │ ├── patches │ │ │ ├── boost.patch │ │ │ ├── mysqldb.patch │ │ │ ├── numpy.patch │ │ │ └── pycairo.patch │ │ ├── presetup.py │ │ ├── pyerrors.py │ │ ├── pyfile.py │ │ ├── pyobject.py │ │ ├── pypyintf.py │ │ ├── pystate.py │ │ ├── pystrtod.py │ │ ├── pythonrun.py │ │ ├── sequence.py │ │ ├── setobject.py │ │ ├── sliceobject.py │ │ ├── slotdefs.py │ │ ├── src │ │ │ ├── abstract.c │ │ │ ├── bufferobject.c │ │ │ ├── capsule.c │ │ │ ├── cobject.c │ │ │ ├── getargs.c │ │ │ ├── missing.c │ │ │ ├── modsupport.c │ │ │ ├── mysnprintf.c │ │ │ ├── ndarrayobject.c │ │ │ ├── pyerrors.c │ │ │ ├── pysignals.c │ │ │ ├── pythonrun.c │ │ │ ├── pythread.c │ │ │ ├── stringobject.c │ │ │ ├── structseq.c │ │ │ ├── sysmodule.c │ │ │ └── varargwrapper.c │ │ ├── state.py │ │ ├── stringobject.py │ │ ├── structmember.py │ │ ├── structmemberdefs.py │ │ ├── stubgen.py │ │ ├── stubs.py │ │ ├── stubsactive.py │ │ ├── sysmodule.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── _sre.c │ │ │ ├── array.c │ │ │ ├── banana.c │ │ │ ├── callback_in_thread.c │ │ │ ├── comparisons.c │ │ │ ├── conftest.py │ │ │ ├── date.c │ │ │ ├── dotted.c │ │ │ ├── foo.c │ │ │ ├── foo3.c │ │ │ ├── modinit.c │ │ │ ├── sre.h │ │ │ ├── sre_constants.h │ │ │ ├── test_api.py │ │ │ ├── test_arraymodule.py │ │ │ ├── test_boolobject.py │ │ │ ├── test_borrow.py │ │ │ ├── test_bufferobject.py │ │ │ ├── test_capsule.py │ │ │ ├── test_cell.py │ │ │ ├── test_classobject.py │ │ │ ├── test_codecs.py │ │ │ ├── test_complexobject.py │ │ │ ├── test_cpyext.py │ │ │ ├── test_datetime.py │ │ │ ├── test_dictobject.py │ │ │ ├── test_eval.py │ │ │ ├── test_floatobject.py │ │ │ ├── test_frameobject.py │ │ │ ├── test_funcobject.py │ │ │ ├── test_getargs.py │ │ │ ├── test_import.py │ │ │ ├── test_import_module.c │ │ │ ├── test_intobject.py │ │ │ ├── test_iterator.py │ │ │ ├── test_listobject.py │ │ │ ├── test_longobject.py │ │ │ ├── test_mapping.py │ │ │ ├── test_memoryobject.py │ │ │ ├── test_methodobject.py │ │ │ ├── test_ndarrayobject.py │ │ │ ├── test_number.py │ │ │ ├── test_object.py │ │ │ ├── test_pycobject.py │ │ │ ├── test_pyerrors.py │ │ │ ├── test_pyfile.py │ │ │ ├── test_pysignals.py │ │ │ ├── test_pystate.py │ │ │ ├── test_pystrtod.py │ │ │ ├── test_sequence.py │ │ │ ├── test_setobject.py │ │ │ ├── test_sliceobject.py │ │ │ ├── test_stringobject.py │ │ │ ├── test_structseq.py │ │ │ ├── test_sysmodule.py │ │ │ ├── test_thread.py │ │ │ ├── test_translate.py │ │ │ ├── test_tupleobject.py │ │ │ ├── test_typeobject.py │ │ │ ├── test_unicodeobject.py │ │ │ ├── test_version.py │ │ │ ├── test_weakref.py │ │ │ └── test_ztranslation.py │ │ ├── tupleobject.py │ │ ├── typeobject.py │ │ ├── typeobjectdefs.py │ │ ├── unicodeobject.py │ │ └── weakrefobject.py │ ├── crypt │ │ ├── __init__.py │ │ ├── interp_crypt.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_crypt.py │ ├── errno │ │ ├── __init__.py │ │ ├── interp_errno.py │ │ └── test │ │ │ └── test_errno.py │ ├── exceptions │ │ ├── __init__.py │ │ ├── interp_exceptions.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_exc.py │ ├── fcntl │ │ ├── __init__.py │ │ ├── app_fcntl.py │ │ ├── interp_fcntl.py │ │ └── test │ │ │ └── test_fcntl.py │ ├── gc │ │ ├── __init__.py │ │ ├── app_referents.py │ │ ├── interp_gc.py │ │ ├── referents.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_app_referents.py │ │ │ ├── test_gc.py │ │ │ ├── test_referents.py │ │ │ └── test_ztranslation.py │ ├── imp │ │ ├── __init__.py │ │ ├── importing.py │ │ ├── interp_imp.py │ │ └── test │ │ │ ├── hooktest.py │ │ │ ├── hooktest │ │ │ └── foo.py │ │ │ ├── test_app.py │ │ │ └── test_import.py │ ├── itertools │ │ ├── __init__.py │ │ ├── interp_itertools.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_itertools.py │ │ │ └── test_ztranslation.py │ ├── js │ │ ├── __init__.py │ │ ├── interp_js.py │ │ ├── support.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_js_module.py │ ├── marshal │ │ ├── __init__.py │ │ ├── interp_marshal.py │ │ └── test │ │ │ ├── test_marshal.py │ │ │ └── test_marshalimpl.py │ ├── math │ │ ├── __init__.py │ │ ├── app_math.py │ │ ├── interp_math.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_direct.py │ │ │ ├── test_factorial.py │ │ │ └── test_math.py │ ├── micronumpy │ │ ├── __init__.py │ │ ├── app_numpy.py │ │ ├── appbridge.py │ │ ├── arrayops.py │ │ ├── base.py │ │ ├── bench │ │ │ ├── add.py │ │ │ ├── dot.py │ │ │ └── iterate.py │ │ ├── boxes.py │ │ ├── casting.py │ │ ├── compile.py │ │ ├── concrete.py │ │ ├── constants.py │ │ ├── converters.py │ │ ├── ctors.py │ │ ├── descriptor.py │ │ ├── flagsobj.py │ │ ├── flatiter.py │ │ ├── iterators.py │ │ ├── loop.py │ │ ├── ndarray.py │ │ ├── nditer.py │ │ ├── selection.py │ │ ├── strides.py │ │ ├── support.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── complex64_testcases.txt │ │ │ ├── complex_testcases.txt │ │ │ ├── dummy_module.py │ │ │ ├── test_appbridge.py │ │ │ ├── test_arrayops.py │ │ │ ├── test_base.py │ │ │ ├── test_casting.py │ │ │ ├── test_compile.py │ │ │ ├── test_complex.py │ │ │ ├── test_dtypes.py │ │ │ ├── test_flagsobj.py │ │ │ ├── test_iterators.py │ │ │ ├── test_ndarray.py │ │ │ ├── test_nditer.py │ │ │ ├── test_object_arrays.py │ │ │ ├── test_outarg.py │ │ │ ├── test_scalar.py │ │ │ ├── test_selection.py │ │ │ ├── test_subtype.py │ │ │ ├── test_support.py │ │ │ ├── test_ufuncs.py │ │ │ ├── test_zjit.py │ │ │ └── test_ztranslation.py │ │ ├── tool │ │ │ └── numready │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── kinds.py │ │ │ │ ├── main.py │ │ │ │ ├── page.html │ │ │ │ └── search.py │ │ ├── types.py │ │ └── ufuncs.py │ ├── mmap │ │ ├── __init__.py │ │ ├── interp_mmap.py │ │ └── test │ │ │ └── test_mmap.py │ ├── operator │ │ ├── __init__.py │ │ ├── app_operator.py │ │ ├── interp_operator.py │ │ ├── test │ │ │ ├── test_operator.py │ │ │ └── test_tscmp.py │ │ ├── tscmp.c │ │ ├── tscmp.h │ │ └── tscmp.py │ ├── parser │ │ ├── __init__.py │ │ ├── pyparser.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_parser.py │ ├── posix │ │ ├── __init__.py │ │ ├── app_posix.py │ │ ├── app_startfile.py │ │ ├── interp_posix.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_posix2.py │ │ │ ├── test_posix_libfile.py │ │ │ └── test_ztranslation.py │ ├── pwd │ │ ├── __init__.py │ │ ├── app_pwd.py │ │ ├── interp_pwd.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_pwd.py │ │ │ └── test_ztranslation.py │ ├── pyexpat │ │ ├── __init__.py │ │ ├── interp_pyexpat.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_build.py │ │ │ └── test_parser.py │ ├── pypyjit │ │ ├── __init__.py │ │ ├── hooks.py │ │ ├── interp_jit.py │ │ ├── interp_resop.py │ │ ├── policy.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── randomized.py │ │ │ ├── test_jit_hook.py │ │ │ ├── test_jit_not_in_trace.py │ │ │ ├── test_jit_setup.py │ │ │ ├── test_policy.py │ │ │ ├── test_pyframe.py │ │ │ └── test_ztranslation.py │ │ └── test_pypy_c │ │ │ ├── __init__.py │ │ │ ├── bug1.py │ │ │ ├── model.py │ │ │ ├── test_00_model.py │ │ │ ├── test_alloc.py │ │ │ ├── test_array.py │ │ │ ├── test_boolrewrite.py │ │ │ ├── test_buffers.py │ │ │ ├── test_bug.py │ │ │ ├── test_call.py │ │ │ ├── test_containers.py │ │ │ ├── test_cprofile.py │ │ │ ├── test_exception.py │ │ │ ├── test_ffi.py │ │ │ ├── test_generators.py │ │ │ ├── test_getframe.py │ │ │ ├── test_globals.py │ │ │ ├── test_import.py │ │ │ ├── test_instance.py │ │ │ ├── test_intbound.py │ │ │ ├── test_jitlogparser.py │ │ │ ├── test_math.py │ │ │ ├── test_micronumpy.py │ │ │ ├── test_min_max.py │ │ │ ├── test_misc.py │ │ │ ├── test_shift.py │ │ │ ├── test_string.py │ │ │ ├── test_struct.py │ │ │ ├── test_thread.py │ │ │ └── test_weakref.py │ ├── select │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── interp_epoll.py │ │ ├── interp_kqueue.py │ │ ├── interp_select.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_epoll.py │ │ │ ├── test_kqueue.py │ │ │ ├── test_select.py │ │ │ └── test_ztranslation.py │ ├── signal │ │ ├── __init__.py │ │ ├── interp_signal.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_signal.py │ ├── struct │ │ ├── __init__.py │ │ ├── formatiterator.py │ │ ├── interp_struct.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_struct.py │ │ │ └── test_ztranslation.py │ ├── symbol │ │ └── __init__.py │ ├── sys │ │ ├── __init__.py │ │ ├── app.py │ │ ├── currentframes.py │ │ ├── hook.py │ │ ├── initpath.py │ │ ├── interp_encoding.py │ │ ├── state.py │ │ ├── system.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_encoding.py │ │ │ ├── test_initpath.py │ │ │ ├── test_sysmodule.py │ │ │ └── test_version.py │ │ ├── version.py │ │ └── vm.py │ ├── termios │ │ ├── __init__.py │ │ ├── interp_termios.py │ │ └── test │ │ │ └── test_termios.py │ ├── test_lib_pypy │ │ ├── __init__.py │ │ ├── cffi_tests │ │ │ ├── __init__.py │ │ │ ├── cffi0 │ │ │ │ ├── __init__.py │ │ │ │ ├── backend_tests.py │ │ │ │ ├── callback_in_thread.py │ │ │ │ ├── snippets │ │ │ │ │ ├── distutils_module │ │ │ │ │ │ ├── setup.py │ │ │ │ │ │ └── snip_basic_verify.py │ │ │ │ │ ├── distutils_package_1 │ │ │ │ │ │ ├── setup.py │ │ │ │ │ │ └── snip_basic_verify1 │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── distutils_package_2 │ │ │ │ │ │ ├── setup.py │ │ │ │ │ │ └── snip_basic_verify2 │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── infrastructure │ │ │ │ │ │ ├── setup.py │ │ │ │ │ │ └── snip_infrastructure │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── setuptools_module │ │ │ │ │ │ ├── setup.py │ │ │ │ │ │ └── snip_setuptools_verify.py │ │ │ │ │ ├── setuptools_package_1 │ │ │ │ │ │ ├── setup.py │ │ │ │ │ │ └── snip_setuptools_verify1 │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── setuptools_package_2 │ │ │ │ │ │ ├── setup.py │ │ │ │ │ │ └── snip_setuptools_verify2 │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── test_cdata.py │ │ │ │ ├── test_ctypes.py │ │ │ │ ├── test_ffi_backend.py │ │ │ │ ├── test_function.py │ │ │ │ ├── test_model.py │ │ │ │ ├── test_ownlib.py │ │ │ │ ├── test_parsing.py │ │ │ │ ├── test_platform.py │ │ │ │ ├── test_unicode_literals.py │ │ │ │ ├── test_verify.py │ │ │ │ ├── test_verify2.py │ │ │ │ ├── test_version.py │ │ │ │ ├── test_vgen.py │ │ │ │ ├── test_vgen2.py │ │ │ │ ├── test_zdistutils.py │ │ │ │ └── test_zintegration.py │ │ │ ├── cffi1 │ │ │ │ ├── __init__.py │ │ │ │ ├── test_cffi_binary.py │ │ │ │ ├── test_dlopen.py │ │ │ │ ├── test_dlopen_unicode_literals.py │ │ │ │ ├── test_ffi_obj.py │ │ │ │ ├── test_new_ffi_1.py │ │ │ │ ├── test_parse_c_type.py │ │ │ │ ├── test_re_python.py │ │ │ │ ├── test_realize_c_type.py │ │ │ │ ├── test_recompiler.py │ │ │ │ ├── test_unicode_literals.py │ │ │ │ ├── test_verify1.py │ │ │ │ └── test_zdist.py │ │ │ ├── conftest.py │ │ │ ├── support.py │ │ │ ├── test_egg_version.py │ │ │ └── udir.py │ │ ├── ctypes_tests │ │ │ ├── __init__.py │ │ │ ├── _ctypes_test.c │ │ │ ├── conftest.py │ │ │ ├── description.txt │ │ │ ├── support.py │ │ │ ├── test_anon.py │ │ │ ├── test_array.py │ │ │ ├── test_array_in_pointer.py │ │ │ ├── test_as_parameter.py │ │ │ ├── test_base.py │ │ │ ├── test_bitfields.py │ │ │ ├── test_buffers.py │ │ │ ├── test_callback_traceback.py │ │ │ ├── test_callbacks.py │ │ │ ├── test_cast.py │ │ │ ├── test_cfuncs.py │ │ │ ├── test_checkretval.py │ │ │ ├── test_commethods.py │ │ │ ├── test_errno.py │ │ │ ├── test_extra.py │ │ │ ├── test_fastpath.py │ │ │ ├── test_funcptr.py │ │ │ ├── test_functions.py │ │ │ ├── test_guess_argtypes.py │ │ │ ├── test_incomplete.py │ │ │ ├── test_init.py │ │ │ ├── test_keepalive.py │ │ │ ├── test_keeprefs.py │ │ │ ├── test_libc.py │ │ │ ├── test_loading.py │ │ │ ├── test_memfunctions.py │ │ │ ├── test_numbers.py │ │ │ ├── test_parameters.py │ │ │ ├── test_pointers.py │ │ │ ├── test_prototypes.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_unicode.py │ │ │ ├── test_unions.py │ │ │ ├── test_values.py │ │ │ ├── test_varsize_struct.py │ │ │ └── test_win32.py │ │ ├── no_test_pickle_extra.py │ │ ├── pickledtasklet.py │ │ ├── pyrepl │ │ │ ├── __init__.py │ │ │ ├── infrastructure.py │ │ │ ├── test_basic.py │ │ │ ├── test_bugs.py │ │ │ ├── test_functional.py │ │ │ ├── test_keymap.py │ │ │ ├── test_reader.py │ │ │ ├── test_readline.py │ │ │ └── test_wishes.py │ │ ├── support.py │ │ ├── test_cPickle.py │ │ ├── test_collections.py │ │ ├── test_coroutine.py │ │ ├── test_cstringio.py │ │ ├── test_ctypes_config_cache.py │ │ ├── test_curses.py │ │ ├── test_datetime.py │ │ ├── test_dbm_extra.py │ │ ├── test_exception_extra.py │ │ ├── test_functools.py │ │ ├── test_gdbm_extra.py │ │ ├── test_greenlet.py │ │ ├── test_grp_extra.py │ │ ├── test_itertools.py │ │ ├── test_json_extra.py │ │ ├── test_marshal_extra.py │ │ ├── test_md5_extra.py │ │ ├── test_msvcrt.py │ │ ├── test_os_wait.py │ │ ├── test_pickle_extra.py │ │ ├── test_posix_extra.py │ │ ├── test_resource.py │ │ ├── test_sha_extra.py │ │ ├── test_site_extra.py │ │ ├── test_sqlite3.py │ │ ├── test_stackless.py │ │ ├── test_stackless_pickle.py │ │ ├── test_stackless_pickling.py │ │ ├── test_string_extra.py │ │ ├── test_structseq.py │ │ ├── test_syslog.py │ │ ├── test_testcapi.py │ │ └── test_tputil.py │ ├── thread │ │ ├── __init__.py │ │ ├── error.py │ │ ├── gil.py │ │ ├── os_local.py │ │ ├── os_lock.py │ │ ├── os_thread.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── support.py │ │ │ ├── test_fork.py │ │ │ ├── test_gil.py │ │ │ ├── test_import_lock.py │ │ │ ├── test_local.py │ │ │ ├── test_lock.py │ │ │ └── test_thread.py │ │ └── threadlocals.py │ ├── time │ │ ├── __init__.py │ │ ├── app_time.py │ │ ├── interp_time.py │ │ └── test │ │ │ └── test_time.py │ ├── token │ │ ├── __init__.py │ │ └── test │ │ │ └── test_token.py │ ├── unicodedata │ │ ├── __init__.py │ │ ├── interp_ucd.py │ │ └── test │ │ │ └── test_unicodedata.py │ ├── zipimport │ │ ├── __init__.py │ │ ├── interp_zipimport.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── bad.zip │ │ │ ├── test_undocumented.py │ │ │ ├── test_zipimport.py │ │ │ └── test_zipimport_deflated.py │ └── zlib │ │ ├── __init__.py │ │ ├── interp_zlib.py │ │ └── test │ │ └── test_zlib.py ├── objspace │ ├── __init__.py │ ├── descroperation.py │ ├── fake │ │ ├── __init__.py │ │ ├── checkmodule.py │ │ ├── objspace.py │ │ └── test │ │ │ ├── test_checkmodule.py │ │ │ └── test_objspace.py │ ├── std │ │ ├── __init__.py │ │ ├── basestringtype.py │ │ ├── benchmark │ │ │ └── bench_dict.py │ │ ├── boolobject.py │ │ ├── bufferobject.py │ │ ├── bytearrayobject.py │ │ ├── bytesobject.py │ │ ├── callmethod.py │ │ ├── celldict.py │ │ ├── complexobject.py │ │ ├── dictmultiobject.py │ │ ├── dictproxyobject.py │ │ ├── floatobject.py │ │ ├── formatting.py │ │ ├── frame.py │ │ ├── identitydict.py │ │ ├── intobject.py │ │ ├── iterobject.py │ │ ├── kwargsdict.py │ │ ├── listobject.py │ │ ├── longobject.py │ │ ├── mapdict.py │ │ ├── marshal_impl.py │ │ ├── memoryobject.py │ │ ├── newformat.py │ │ ├── noneobject.py │ │ ├── objectobject.py │ │ ├── objspace.py │ │ ├── proxyobject.py │ │ ├── setobject.py │ │ ├── sliceobject.py │ │ ├── smalllongobject.py │ │ ├── specialisedtupleobject.py │ │ ├── strbufobject.py │ │ ├── stringmethods.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_boolobject.py │ │ │ ├── test_bufferobject.py │ │ │ ├── test_bytearrayobject.py │ │ │ ├── test_bytesobject.py │ │ │ ├── test_callmethod.py │ │ │ ├── test_celldict.py │ │ │ ├── test_complexobject.py │ │ │ ├── test_dictmultiobject.py │ │ │ ├── test_dictproxy.py │ │ │ ├── test_floatobject.py │ │ │ ├── test_identitydict.py │ │ │ ├── test_identityset.py │ │ │ ├── test_index.py │ │ │ ├── test_instmethobject.py │ │ │ ├── test_intobject.py │ │ │ ├── test_iterobject.py │ │ │ ├── test_kwargsdict.py │ │ │ ├── test_lengthhint.py │ │ │ ├── test_listobject.py │ │ │ ├── test_liststrategies.py │ │ │ ├── test_longobject.py │ │ │ ├── test_mapdict.py │ │ │ ├── test_memoryobject.py │ │ │ ├── test_methodcache.py │ │ │ ├── test_newformat.py │ │ │ ├── test_noneobject.py │ │ │ ├── test_obj.py │ │ │ ├── test_operation.py │ │ │ ├── test_prebuiltint.py │ │ │ ├── test_proxy.py │ │ │ ├── test_proxy_function.py │ │ │ ├── test_proxy_internals.py │ │ │ ├── test_proxy_iter.py │ │ │ ├── test_proxy_object.py │ │ │ ├── test_proxy_usercreated.py │ │ │ ├── test_setobject.py │ │ │ ├── test_setstrategies.py │ │ │ ├── test_sliceobject.py │ │ │ ├── test_smalllongobject.py │ │ │ ├── test_specialisedtupleobject.py │ │ │ ├── test_stdobjspace.py │ │ │ ├── test_strbufobject.py │ │ │ ├── test_stringformat.py │ │ │ ├── test_tupleobject.py │ │ │ ├── test_typeobject.py │ │ │ ├── test_unicodeobject.py │ │ │ ├── test_userobject.py │ │ │ └── test_versionedtype.py │ │ ├── transparent.py │ │ ├── tupleobject.py │ │ ├── typeobject.py │ │ ├── unicodeobject.py │ │ └── util.py │ └── test │ │ ├── __init__.py │ │ ├── test_binop_overriding.py │ │ ├── test_descriptor.py │ │ └── test_descroperation.py ├── pytest-A.cfg ├── pytest-A.py ├── sandbox │ ├── __init__.py │ ├── pypy_interact.py │ └── test │ │ └── test_pypy_interact.py ├── test_all.py ├── testrunner_cfg.py └── tool │ ├── __init__.py │ ├── alarm.py │ ├── ann_override.py │ ├── asterisk.py │ ├── bench │ ├── __init__.py │ ├── bench-unix.benchmark_result │ ├── benchmark_report.css │ ├── htmlreport.py │ ├── pypyresult.py │ ├── result.py │ └── test │ │ ├── __init__.py │ │ ├── test_benchmark_report.py │ │ └── test_pypyresult.py │ ├── clean_old_branches.py │ ├── compare_last_builds.py │ ├── difftime.py │ ├── gcdump.py │ ├── gdb_pypy.py │ ├── genstatistic.py │ ├── getdocstrings.py │ ├── import_cffi.py │ ├── import_graph.py │ ├── importfun.py │ ├── isolate.py │ ├── isolate_slave.py │ ├── lib_pypy.py │ ├── memusage │ ├── __init__.py │ ├── log-template.gnumeric │ ├── log2gnumeric.py │ ├── memusage.py │ └── test │ │ └── test_log2gnumeric.py │ ├── option.py │ ├── py.cleanup │ ├── pydis.py │ ├── pypyjit.py │ ├── pypyjit_child.py │ ├── pypyjit_demo.py │ ├── pypyrev.py │ ├── pytest │ ├── __init__.py │ ├── appsupport.py │ ├── apptest.py │ ├── confpath.py │ ├── genreportdata.py │ ├── htmlreport.py │ ├── inttest.py │ ├── objspace.py │ ├── overview.py │ ├── pypy_test_failure_demo.py │ ├── result.py │ ├── run-script │ │ └── regrverbose.py │ └── test │ │ ├── __init__.py │ │ ├── conftest1_innertest.py │ │ ├── data │ │ ├── test___all__.txt │ │ ├── test_compile.txt │ │ ├── test_descr.txt │ │ ├── test_generators.txt │ │ ├── test_global.txt │ │ └── test_sys.txt │ │ ├── test_appsupport.py │ │ ├── test_conftest1.py │ │ ├── test_new_count.py │ │ ├── test_overview.py │ │ └── test_pytestsupport.py │ ├── release │ ├── __init__.py │ ├── force-builds.py │ ├── package.py │ ├── repackage.sh │ └── test │ │ ├── __init__.py │ │ └── test_package.py │ ├── rest │ ├── __init__.py │ ├── directive.py │ ├── rest.py │ └── rst.py │ ├── slaveproc.py │ ├── statistic_irc_log.py │ ├── stdlib___future__.py │ ├── stdlib_opcode.py │ ├── tb_server │ ├── __init__.py │ ├── render.py │ └── server.py │ ├── test │ ├── __init__.py │ ├── fordocstrings1 │ ├── isolate_simple.py │ ├── test_gdb_pypy.py │ ├── test_getdocstrings.py │ ├── test_isolate.py │ ├── test_lib_pypy.py │ ├── test_license.py │ ├── test_package.py │ ├── test_tab.py │ └── test_template.py │ ├── traceconfig.py │ └── unicodefuzzer.py ├── pytest.ini ├── pytest.py ├── pytest_cov.py ├── rpython ├── __init__.py ├── __main__.py ├── annotator │ ├── __init__.py │ ├── annrpython.py │ ├── argument.py │ ├── binaryop.py │ ├── bookkeeper.py │ ├── builtin.py │ ├── classdef.py │ ├── description.py │ ├── dictdef.py │ ├── exception.py │ ├── listdef.py │ ├── model.py │ ├── policy.py │ ├── signature.py │ ├── specialize.py │ ├── test │ │ ├── __init__.py │ │ ├── test_annrpython.py │ │ ├── test_annsimplifyrpython.py │ │ ├── test_argument.py │ │ ├── test_description.py │ │ ├── test_model.py │ │ └── test_signature.py │ └── unaryop.py ├── bin │ ├── rpython │ ├── rpython-vmprof │ └── translatorshell.py ├── config │ ├── __init__.py │ ├── config.py │ ├── parse.py │ ├── support.py │ ├── test │ │ ├── test_config.py │ │ ├── test_parse.py │ │ ├── test_support.py │ │ └── test_translationoption.py │ └── translationoption.py ├── conftest.py ├── doc │ ├── Makefile │ ├── _static │ │ ├── bpnn_update.png │ │ ├── pypy-translation-0.9.graffle │ │ ├── pypy-translation-0.9.png │ │ ├── translation-detail-0.9.graffle │ │ ├── translation-detail-0.9.png │ │ ├── translation-greyscale-small.pdf │ │ ├── translation-greyscale-small.png │ │ ├── translation-greyscale-small.sxd │ │ ├── translation.pdf │ │ └── translation.sxd │ ├── architecture.rst │ ├── arm.rst │ ├── conf.py │ ├── dir-reference.rst │ ├── faq.rst │ ├── garbage_collection.rst │ ├── getting-started.rst │ ├── glossary.rst │ ├── index.rst │ ├── jit │ │ ├── index.rst │ │ ├── optimizer.rst │ │ ├── overview.rst │ │ ├── pyjitpl5.rst │ │ └── virtualizable.rst │ ├── logging.rst │ ├── make.bat │ ├── rffi.rst │ ├── rlib.rst │ ├── rpython.rst │ ├── rstrategies.rst │ ├── rtyper.rst │ └── translation.rst ├── flowspace │ ├── __init__.py │ ├── argument.py │ ├── bytecode.py │ ├── flowcontext.py │ ├── framestate.py │ ├── generator.py │ ├── model.py │ ├── objspace.py │ ├── operation.py │ ├── pygraph.py │ ├── specialcase.py │ └── test │ │ ├── __init__.py │ │ ├── test_argument.py │ │ ├── test_checkgraph.py │ │ ├── test_flowcontext.py │ │ ├── test_framestate.py │ │ ├── test_generator.py │ │ ├── test_model.py │ │ ├── test_objspace.py │ │ └── test_unroll.py ├── jit │ ├── __init__.py │ ├── backend │ │ ├── __init__.py │ │ ├── arm │ │ │ ├── __init__.py │ │ │ ├── arch.py │ │ │ ├── assembler.py │ │ │ ├── callbuilder.py │ │ │ ├── codebuilder.py │ │ │ ├── conditions.py │ │ │ ├── detect.py │ │ │ ├── helper │ │ │ │ ├── __init__.py │ │ │ │ ├── assembler.py │ │ │ │ └── regalloc.py │ │ │ ├── instruction_builder.py │ │ │ ├── instructions.py │ │ │ ├── jump.py │ │ │ ├── locations.py │ │ │ ├── opassembler.py │ │ │ ├── regalloc.py │ │ │ ├── registers.py │ │ │ ├── runner.py │ │ │ ├── shift.py │ │ │ ├── support.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── gen.py │ │ │ │ ├── support.py │ │ │ │ ├── test_arch.py │ │ │ │ ├── test_assembler.py │ │ │ │ ├── test_basic.py │ │ │ │ ├── test_callbuilder.py │ │ │ │ ├── test_calling_convention.py │ │ │ │ ├── test_del.py │ │ │ │ ├── test_detect.py │ │ │ │ ├── test_dict.py │ │ │ │ ├── test_exception.py │ │ │ │ ├── test_fficall.py │ │ │ │ ├── test_float.py │ │ │ │ ├── test_generated.py │ │ │ │ ├── test_helper.py │ │ │ │ ├── test_instr_codebuilder.py │ │ │ │ ├── test_jump.py │ │ │ │ ├── test_list.py │ │ │ │ ├── test_loop_unroll.py │ │ │ │ ├── test_push_pop_frame.py │ │ │ │ ├── test_quasiimmut.py │ │ │ │ ├── test_rawmem.py │ │ │ │ ├── test_recursive.py │ │ │ │ ├── test_regalloc.py │ │ │ │ ├── test_regalloc2.py │ │ │ │ ├── test_regalloc_mov.py │ │ │ │ ├── test_runner.py │ │ │ │ ├── test_send.py │ │ │ │ ├── test_slist.py │ │ │ │ ├── test_string.py │ │ │ │ ├── test_tl.py │ │ │ │ ├── test_tlc.py │ │ │ │ ├── test_trace_operations.py │ │ │ │ ├── test_virtual.py │ │ │ │ ├── test_virtualizable.py │ │ │ │ ├── test_virtualref.py │ │ │ │ ├── test_zll_random.py │ │ │ │ ├── test_zrpy_gc.py │ │ │ │ ├── test_zrpy_gc_boehm.py │ │ │ │ ├── test_zrpy_releasegil.py │ │ │ │ ├── test_ztranslation_basic.py │ │ │ │ ├── test_ztranslation_call_assembler.py │ │ │ │ ├── test_ztranslation_external_exception.py │ │ │ │ └── test_ztranslation_jit_stats.py │ │ │ └── tool │ │ │ │ ├── __init__.py │ │ │ │ └── viewdump.sh │ │ ├── asmjs │ │ │ ├── __init__.py │ │ │ ├── arch.py │ │ │ ├── assembler.py │ │ │ ├── jsbuilder.py │ │ │ ├── jsvalue.py │ │ │ ├── library_jit.js │ │ │ ├── runner.py │ │ │ ├── support.py │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_basic.py │ │ │ │ ├── test_del.py │ │ │ │ ├── test_dict.py │ │ │ │ ├── test_exception.py │ │ │ │ ├── test_float.py │ │ │ │ ├── test_js2py.py │ │ │ │ ├── test_list.py │ │ │ │ ├── test_loop_unroll.py │ │ │ │ ├── test_quasiimmut.py │ │ │ │ ├── test_rawmem.py │ │ │ │ ├── test_recursive.py │ │ │ │ ├── test_runner.py │ │ │ │ ├── test_send.py │ │ │ │ ├── test_slist.py │ │ │ │ ├── test_string.py │ │ │ │ ├── test_tl.py │ │ │ │ ├── test_tlc.py │ │ │ │ ├── test_virtual.py │ │ │ │ ├── test_virtualizable.py │ │ │ │ ├── test_virtualref.py │ │ │ │ └── translation │ │ │ │ ├── conftest.py │ │ │ │ ├── test_zrpy_gc.py │ │ │ │ └── test_zrpy_releasegil.py │ │ ├── conftest.py │ │ ├── detect_cpu.py │ │ ├── hlinfo.py │ │ ├── llgraph │ │ │ ├── __init__.py │ │ │ ├── runner.py │ │ │ ├── support.py │ │ │ ├── symbolic.py │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_llgraph.py │ │ ├── llsupport │ │ │ ├── __init__.py │ │ │ ├── asmmemmgr.py │ │ │ ├── assembler.py │ │ │ ├── callbuilder.py │ │ │ ├── codemap.py │ │ │ ├── descr.py │ │ │ ├── ffisupport.py │ │ │ ├── gc.py │ │ │ ├── gcmap.py │ │ │ ├── jitframe.py │ │ │ ├── llerrno.py │ │ │ ├── llmodel.py │ │ │ ├── memcpy.py │ │ │ ├── regalloc.py │ │ │ ├── rewrite.py │ │ │ ├── src │ │ │ │ ├── codemap.c │ │ │ │ └── skiplist.c │ │ │ ├── support.py │ │ │ ├── symbolic.py │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ ├── test_asmmemmgr.py │ │ │ │ ├── test_codemap.py │ │ │ │ ├── test_descr.py │ │ │ │ ├── test_ffisupport.py │ │ │ │ ├── test_gc.py │ │ │ │ ├── test_gc_integration.py │ │ │ │ ├── test_pinned_object_rewrite.py │ │ │ │ ├── test_recompilation.py │ │ │ │ ├── test_regalloc.py │ │ │ │ ├── test_regalloc_integration.py │ │ │ │ ├── test_rewrite.py │ │ │ │ ├── test_runner.py │ │ │ │ ├── test_skiplist.py │ │ │ │ ├── test_symbolic.py │ │ │ │ ├── zrpy_gc_boehm_test.py │ │ │ │ ├── zrpy_gc_test.py │ │ │ │ ├── zrpy_releasegil_test.py │ │ │ │ └── ztranslation_test.py │ │ ├── model.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── calling_convention_test.py │ │ │ ├── runner_test.py │ │ │ ├── support.py │ │ │ ├── test_detect_cpu.py │ │ │ ├── test_ll_random.py │ │ │ ├── test_model.py │ │ │ ├── test_random.py │ │ │ ├── test_zll_stress_0.py │ │ │ ├── test_zll_stress_1.py │ │ │ ├── test_zll_stress_2.py │ │ │ ├── test_zll_stress_3.py │ │ │ └── zll_stress.py │ │ ├── tool │ │ │ ├── __init__.py │ │ │ └── viewcode.py │ │ └── x86 │ │ │ ├── __init__.py │ │ │ ├── arch.py │ │ │ ├── assembler.py │ │ │ ├── callbuilder.py │ │ │ ├── codebuf.py │ │ │ ├── detect_sse2.py │ │ │ ├── jump.py │ │ │ ├── oprofile.py │ │ │ ├── profagent.py │ │ │ ├── regalloc.py │ │ │ ├── regloc.py │ │ │ ├── runner.py │ │ │ ├── rx86.py │ │ │ ├── support.py │ │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_assembler.py │ │ │ ├── test_basic.py │ │ │ ├── test_callbuilder.py │ │ │ ├── test_calling_convention.py │ │ │ ├── test_del.py │ │ │ ├── test_dict.py │ │ │ ├── test_exception.py │ │ │ ├── test_fficall.py │ │ │ ├── test_float.py │ │ │ ├── test_jump.py │ │ │ ├── test_list.py │ │ │ ├── test_longlong.py │ │ │ ├── test_loop_unroll.py │ │ │ ├── test_quasiimmut.py │ │ │ ├── test_rawmem.py │ │ │ ├── test_recursive.py │ │ │ ├── test_regalloc2.py │ │ │ ├── test_regloc.py │ │ │ ├── test_runner.py │ │ │ ├── test_rx86.py │ │ │ ├── test_rx86_32_auto_encoding.py │ │ │ ├── test_rx86_64_auto_encoding.py │ │ │ ├── test_send.py │ │ │ ├── test_slist.py │ │ │ ├── test_string.py │ │ │ ├── test_symbolic_x86.py │ │ │ ├── test_tl.py │ │ │ ├── test_tlc.py │ │ │ ├── test_virtual.py │ │ │ ├── test_virtualizable.py │ │ │ ├── test_virtualref.py │ │ │ ├── test_zmath.py │ │ │ ├── test_zrpy_gc.py │ │ │ ├── test_zrpy_gc_boehm.py │ │ │ ├── test_zrpy_gcasmgcc.py │ │ │ ├── test_zrpy_releasegil.py │ │ │ ├── test_ztranslation_basic.py │ │ │ ├── test_ztranslation_call_assembler.py │ │ │ ├── test_ztranslation_external_exception.py │ │ │ └── test_ztranslation_jit_stats.py │ │ │ ├── tool │ │ │ ├── __init__.py │ │ │ ├── instruction_encoding.sh │ │ │ ├── jumpto.py │ │ │ └── test │ │ │ │ └── test_viewcode.py │ │ │ └── valgrind.py │ ├── codewriter │ │ ├── __init__.py │ │ ├── assembler.py │ │ ├── call.py │ │ ├── codewriter.py │ │ ├── effectinfo.py │ │ ├── flatten.py │ │ ├── format.py │ │ ├── heaptracker.py │ │ ├── jitcode.py │ │ ├── jtransform.py │ │ ├── liveness.py │ │ ├── longlong.py │ │ ├── policy.py │ │ ├── regalloc.py │ │ ├── support.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_assembler.py │ │ │ ├── test_call.py │ │ │ ├── test_codewriter.py │ │ │ ├── test_effectinfo.py │ │ │ ├── test_flatten.py │ │ │ ├── test_format.py │ │ │ ├── test_jitcode.py │ │ │ ├── test_jtransform.py │ │ │ ├── test_list.py │ │ │ ├── test_liveness.py │ │ │ ├── test_longlong.py │ │ │ ├── test_policy.py │ │ │ ├── test_regalloc.py │ │ │ ├── test_support.py │ │ │ └── test_void_list.py │ ├── conftest.py │ ├── metainterp │ │ ├── __init__.py │ │ ├── blackhole.py │ │ ├── compile.py │ │ ├── counter.py │ │ ├── executor.py │ │ ├── gc.py │ │ ├── graphpage.py │ │ ├── greenfield.py │ │ ├── heapcache.py │ │ ├── history.py │ │ ├── inliner.py │ │ ├── jitdriver.py │ │ ├── jitexc.py │ │ ├── jitprof.py │ │ ├── logger.py │ │ ├── memmgr.py │ │ ├── optimize.py │ │ ├── optimizeopt │ │ │ ├── __init__.py │ │ │ ├── earlyforce.py │ │ │ ├── generalize.py │ │ │ ├── heap.py │ │ │ ├── intbounds.py │ │ │ ├── intutils.py │ │ │ ├── optimizer.py │ │ │ ├── pure.py │ │ │ ├── rawbuffer.py │ │ │ ├── rewrite.py │ │ │ ├── simplify.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── test_intbound.py │ │ │ │ ├── test_multilabel.py │ │ │ │ ├── test_optimizebasic.py │ │ │ │ ├── test_optimizeopt.py │ │ │ │ ├── test_rawbuffer.py │ │ │ │ ├── test_util.py │ │ │ │ ├── test_virtualstate.py │ │ │ │ └── test_zdisable_opts.py │ │ │ ├── unroll.py │ │ │ ├── util.py │ │ │ ├── virtualize.py │ │ │ ├── virtualstate.py │ │ │ └── vstring.py │ │ ├── pyjitpl.py │ │ ├── quasiimmut.py │ │ ├── resoperation.py │ │ ├── resume.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── support.py │ │ │ ├── test_ajit.py │ │ │ ├── test_blackhole.py │ │ │ ├── test_bytearray.py │ │ │ ├── test_call.py │ │ │ ├── test_compile.py │ │ │ ├── test_counter.py │ │ │ ├── test_del.py │ │ │ ├── test_dict.py │ │ │ ├── test_exception.py │ │ │ ├── test_executor.py │ │ │ ├── test_fficall.py │ │ │ ├── test_float.py │ │ │ ├── test_greenfield.py │ │ │ ├── test_heapcache.py │ │ │ ├── test_history.py │ │ │ ├── test_immutable.py │ │ │ ├── test_jitdriver.py │ │ │ ├── test_jitiface.py │ │ │ ├── test_jitprof.py │ │ │ ├── test_list.py │ │ │ ├── test_logger.py │ │ │ ├── test_longlong.py │ │ │ ├── test_loop.py │ │ │ ├── test_loop_unroll.py │ │ │ ├── test_loop_unroll_disopt.py │ │ │ ├── test_math.py │ │ │ ├── test_memmgr.py │ │ │ ├── test_pyjitpl.py │ │ │ ├── test_quasiimmut.py │ │ │ ├── test_rawmem.py │ │ │ ├── test_recursive.py │ │ │ ├── test_resoperation.py │ │ │ ├── test_resume.py │ │ │ ├── test_send.py │ │ │ ├── test_slist.py │ │ │ ├── test_string.py │ │ │ ├── test_threadlocal.py │ │ │ ├── test_tl.py │ │ │ ├── test_tlc.py │ │ │ ├── test_tracingopts.py │ │ │ ├── test_typesystem.py │ │ │ ├── test_virtual.py │ │ │ ├── test_virtualizable.py │ │ │ ├── test_virtualref.py │ │ │ ├── test_warmspot.py │ │ │ └── test_warmstate.py │ │ ├── typesystem.py │ │ ├── virtualizable.py │ │ ├── virtualref.py │ │ ├── walkvirtual.py │ │ ├── warmspot.py │ │ └── warmstate.py │ ├── tl │ │ ├── __init__.py │ │ ├── accumulator.tlc │ │ ├── accumulator.tlc.src │ │ ├── binarytree.tlc.src │ │ ├── braininterp.py │ │ ├── factorial.tlc │ │ ├── fibo.tlc │ │ ├── fibo.tlc.src │ │ ├── grep.py │ │ ├── jittest.py │ │ ├── targettiny1.py │ │ ├── targettiny2.py │ │ ├── targettiny2hotpath.py │ │ ├── targettiny3hotpath.py │ │ ├── targettlc.py │ │ ├── targettlr.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── jitcrashers.py │ │ │ ├── test_brainfuck.py │ │ │ ├── test_pypyjit.py │ │ │ ├── test_tl.py │ │ │ ├── test_tlc.py │ │ │ └── test_tlr.py │ │ ├── tiny1.py │ │ ├── tiny2.py │ │ ├── tiny2_hotpath.py │ │ ├── tiny3_hotpath.py │ │ ├── tinyframe │ │ │ ├── __init__.py │ │ │ ├── examples │ │ │ │ ├── loop.tf │ │ │ │ └── simple.tf │ │ │ ├── support.py │ │ │ ├── targettinyframe.py │ │ │ ├── test │ │ │ │ └── test_tinyframe.py │ │ │ └── tinyframe.py │ │ ├── tl.py │ │ ├── tla │ │ │ ├── __init__.py │ │ │ ├── add_10.tla.py │ │ │ ├── loopabit.tla.py │ │ │ ├── targettla.py │ │ │ ├── test_tla.py │ │ │ ├── tla.py │ │ │ └── tla_assembler.py │ │ ├── tlc.py │ │ ├── tlopcode.py │ │ └── tlr.py │ └── tool │ │ ├── __init__.py │ │ ├── findadrinlog.py │ │ ├── gen-trace-mode-keywords.py │ │ ├── jitoutput.py │ │ ├── loopcounter.py │ │ ├── loopviewer.py │ │ ├── oparser.py │ │ ├── oparser_model.py │ │ ├── pypytrace-mode.el │ │ ├── pypytrace.vim │ │ ├── showstats.py │ │ ├── test │ │ ├── __init__.py │ │ ├── data.log.bz2 │ │ ├── f.pypylog.bz2 │ │ ├── test_jitoutput.py │ │ ├── test_loopcounter.py │ │ ├── test_oparser.py │ │ └── test_traceviewer.py │ │ └── traceviewer.py ├── memory │ ├── __init__.py │ ├── gc │ │ ├── __init__.py │ │ ├── base.py │ │ ├── env.py │ │ ├── generation.py │ │ ├── hybrid.py │ │ ├── incminimark.py │ │ ├── inspector.py │ │ ├── minimark.py │ │ ├── minimarkpage.py │ │ ├── minimarktest.py │ │ ├── semispace.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_direct.py │ │ │ ├── test_env.py │ │ │ ├── test_incminimark.py │ │ │ ├── test_inspector.py │ │ │ ├── test_minimark.py │ │ │ ├── test_minimarkpage.py │ │ │ └── test_object_pinning.py │ ├── gcheader.py │ ├── gctransform │ │ ├── __init__.py │ │ ├── asmgcroot.py │ │ ├── boehm.py │ │ ├── framework.py │ │ ├── log.py │ │ ├── refcounting.py │ │ ├── shadowstack.py │ │ ├── statistics.py │ │ ├── support.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_boehm.py │ │ │ ├── test_framework.py │ │ │ ├── test_refcounting.py │ │ │ ├── test_statistics.py │ │ │ └── test_transform.py │ │ └── transform.py │ ├── gctypelayout.py │ ├── gcwrapper.py │ ├── lldict.py │ ├── lltypelayout.py │ ├── support.py │ └── test │ │ ├── __init__.py │ │ ├── gc_test_base.py │ │ ├── snippet.py │ │ ├── test_gctypelayout.py │ │ ├── test_generational_gc.py │ │ ├── test_growingsemispace_gc.py │ │ ├── test_hybrid_gc.py │ │ ├── test_hybrid_gc_smallheap.py │ │ ├── test_incminimark_gc.py │ │ ├── test_incminimark_gc_cardmarking.py │ │ ├── test_lldict.py │ │ ├── test_minimark_gc.py │ │ ├── test_minimark_gc_cardmarking.py │ │ ├── test_semispace_gc.py │ │ ├── test_support.py │ │ └── test_transformed_gc.py ├── pytest.ini ├── rlib │ ├── __init__.py │ ├── _jit_vref.py │ ├── _rffi_stacklet.py │ ├── _rsocket_rffi.py │ ├── _rweakkeydict.py │ ├── _rweakvaldict.py │ ├── _stacklet_asmgcc.py │ ├── _stacklet_n_a.py │ ├── _stacklet_shadowstack.py │ ├── buffer.py │ ├── cache.py │ ├── clibffi.py │ ├── constant.py │ ├── copyright │ ├── debug.py │ ├── entrypoint.py │ ├── exports.py │ ├── jit.py │ ├── jit_hooks.py │ ├── jit_libffi.py │ ├── libffi.py │ ├── listsort.py │ ├── longlong2float.py │ ├── nonconst.py │ ├── objectmodel.py │ ├── parsing │ │ ├── __init__.py │ │ ├── codebuilder.py │ │ ├── deterministic.py │ │ ├── ebnfparse.py │ │ ├── lexer.py │ │ ├── main.py │ │ ├── makepackrat.py │ │ ├── parsing.py │ │ ├── pypackrat.py │ │ ├── regex.py │ │ ├── regexparse.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── pcre_test_7.py │ │ │ ├── pygrammar.txt │ │ │ ├── test_deterministic.py │ │ │ ├── test_ebnfparse.py │ │ │ ├── test_lexer.py │ │ │ ├── test_parse.py │ │ │ ├── test_parseerrors.py │ │ │ ├── test_pcre_regtest.py │ │ │ ├── test_pypackrat.py │ │ │ ├── test_pythonlexer.py │ │ │ ├── test_pythonparse.py │ │ │ ├── test_regex.py │ │ │ ├── test_regexparse.py │ │ │ ├── test_translate.py │ │ │ └── test_tree.py │ │ └── tree.py │ ├── rStringIO.py │ ├── rarithmetic.py │ ├── rawstorage.py │ ├── rbigint.py │ ├── rbisect.py │ ├── rcomplex.py │ ├── rdtoa.py │ ├── rdynload.py │ ├── rerased.py │ ├── rfile.py │ ├── rfloat.py │ ├── rgc.py │ ├── rgil.py │ ├── rlocale.py │ ├── rmarshal.py │ ├── rmd5.py │ ├── rmmap.py │ ├── rope.py │ ├── ropenssl.py │ ├── rpath.py │ ├── rpoll.py │ ├── rposix.py │ ├── rrandom.py │ ├── rrawarray.py │ ├── rsha.py │ ├── rshrinklist.py │ ├── rsignal.py │ ├── rsocket.py │ ├── rsre │ │ ├── __init__.py │ │ ├── rpy │ │ │ ├── __init__.py │ │ │ ├── _sre.py │ │ │ ├── sre_compile.py │ │ │ ├── sre_constants.py │ │ │ └── sre_parse.py │ │ ├── rsre_char.py │ │ ├── rsre_core.py │ │ ├── rsre_jit.py │ │ ├── rsre_re.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── re_tests.py │ │ │ ├── targetrsre.py │ │ │ ├── test_char.py │ │ │ ├── test_match.py │ │ │ ├── test_re.py │ │ │ ├── test_search.py │ │ │ ├── test_zexternal.py │ │ │ ├── test_zinterp.py │ │ │ └── test_zjit.py │ ├── rstack.py │ ├── rstacklet.py │ ├── rstackovf.py │ ├── rstrategies │ │ ├── .coveragerc │ │ ├── __init__.py │ │ ├── logger.py │ │ ├── logparser.py │ │ ├── rstrategies.py │ │ └── test │ │ │ └── test_rstrategies.py │ ├── rstring.py │ ├── rstruct │ │ ├── __init__.py │ │ ├── error.py │ │ ├── formatiterator.py │ │ ├── ieee.py │ │ ├── nativefmttable.py │ │ ├── runpack.py │ │ ├── standardfmttable.py │ │ ├── test │ │ │ ├── test_ieee.py │ │ │ └── test_runpack.py │ │ └── unichar.py │ ├── rtermios.py │ ├── rthread.py │ ├── rtimer.py │ ├── runicode.py │ ├── rurandom.py │ ├── rweaklist.py │ ├── rweakref.py │ ├── rwin32.py │ ├── rwinreg.py │ ├── rzipfile.py │ ├── rzlib.py │ ├── signature.py │ ├── special_value.py │ ├── streamio.py │ ├── test │ │ ├── __init__.py │ │ ├── math_testcases.txt │ │ ├── rcomplex_testcases.txt │ │ ├── rcomplex_testcases2.txt │ │ ├── test__jit_vref.py │ │ ├── test_buffer.py │ │ ├── test_cache.py │ │ ├── test_clibffi.py │ │ ├── test_debug.py │ │ ├── test_jit.py │ │ ├── test_jit_libffi.py │ │ ├── test_libffi.py │ │ ├── test_listsort.py │ │ ├── test_longlong2float.py │ │ ├── test_nonconst.py │ │ ├── test_objectmodel.py │ │ ├── test_rStringIO.py │ │ ├── test_rarithmetic.py │ │ ├── test_rawstorage.py │ │ ├── test_rbigint.py │ │ ├── test_rbisect.py │ │ ├── test_rcomplex.py │ │ ├── test_rdtoa.py │ │ ├── test_rdynload.py │ │ ├── test_rerased.py │ │ ├── test_rfile.py │ │ ├── test_rfloat.py │ │ ├── test_rgc.py │ │ ├── test_rlocale.py │ │ ├── test_rmarshal.py │ │ ├── test_rmd5.py │ │ ├── test_rmmap.py │ │ ├── test_rope.py │ │ ├── test_rpath.py │ │ ├── test_rpoll.py │ │ ├── test_rposix.py │ │ ├── test_rrandom.py │ │ ├── test_rrawarray.py │ │ ├── test_rsha.py │ │ ├── test_rshrinklist.py │ │ ├── test_rsignal.py │ │ ├── test_rsocket.py │ │ ├── test_rstacklet.py │ │ ├── test_rstackovf.py │ │ ├── test_rstring.py │ │ ├── test_rtermios.py │ │ ├── test_rthread.py │ │ ├── test_rtimer.py │ │ ├── test_runicode.py │ │ ├── test_rweakkeydict.py │ │ ├── test_rweaklist.py │ │ ├── test_rweakref.py │ │ ├── test_rweakvaldict.py │ │ ├── test_rwin32.py │ │ ├── test_rzipfile.py │ │ ├── test_rzlib.py │ │ ├── test_signature.py │ │ └── test_streamio.py │ ├── types.py │ ├── unicodedata │ │ ├── CompositionExclusions-3.2.0.txt │ │ ├── CompositionExclusions-5.2.0.txt │ │ ├── CompositionExclusions-6.0.0.txt │ │ ├── CompositionExclusions-6.2.0.txt │ │ ├── DerivedCoreProperties-3.2.0.txt │ │ ├── DerivedCoreProperties-5.2.0.txt │ │ ├── DerivedCoreProperties-6.0.0.txt │ │ ├── DerivedCoreProperties-6.2.0.txt │ │ ├── EastAsianWidth-3.2.0.txt │ │ ├── EastAsianWidth-5.2.0.txt │ │ ├── EastAsianWidth-6.0.0.txt │ │ ├── EastAsianWidth-6.2.0.txt │ │ ├── LineBreak-3.2.0.txt │ │ ├── LineBreak-5.2.0.txt │ │ ├── LineBreak-6.0.0.txt │ │ ├── LineBreak-6.2.0.txt │ │ ├── UnicodeData-3.2.0.txt │ │ ├── UnicodeData-5.2.0.txt │ │ ├── UnicodeData-6.0.0.txt │ │ ├── UnicodeData-6.2.0.txt │ │ ├── UnihanNumeric-3.2.0.txt │ │ ├── UnihanNumeric-5.2.0.txt │ │ ├── UnihanNumeric-6.0.0.txt │ │ ├── UnihanNumeric-6.2.0.txt │ │ ├── __init__.py │ │ ├── generate_unicodedb.py │ │ ├── test │ │ │ ├── test_trie.py │ │ │ ├── test_ucd.py │ │ │ └── test_unicodedata.py │ │ ├── triegenerator.py │ │ ├── unicodedb_3_2_0.py │ │ ├── unicodedb_5_2_0.py │ │ ├── unicodedb_6_0_0.py │ │ └── unicodedb_6_2_0.py │ └── unroll.py ├── rtyper │ ├── __init__.py │ ├── annlowlevel.py │ ├── callparse.py │ ├── controllerentry.py │ ├── error.py │ ├── exceptiondata.py │ ├── extfunc.py │ ├── extfuncregistry.py │ ├── extregistry.py │ ├── llannotation.py │ ├── llinterp.py │ ├── lltypesystem │ │ ├── __init__.py │ │ ├── ll2ctypes.py │ │ ├── ll_str.py │ │ ├── llarena.py │ │ ├── llgroup.py │ │ ├── llheap.py │ │ ├── llmemory.py │ │ ├── lloperation.py │ │ ├── lltype.py │ │ ├── module │ │ │ ├── __init__.py │ │ │ ├── ll_math.py │ │ │ ├── ll_os_path.py │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ ├── math_cases.py │ │ │ │ ├── test_ll_math.py │ │ │ │ └── test_llinterp_math.py │ │ ├── opimpl.py │ │ ├── rbuilder.py │ │ ├── rbytearray.py │ │ ├── rdict.py │ │ ├── rffi.py │ │ ├── rlist.py │ │ ├── rordereddict.py │ │ ├── rpbc.py │ │ ├── rrange.py │ │ ├── rstr.py │ │ ├── rtagged.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_ll2ctypes.py │ │ │ ├── test_llarena.py │ │ │ ├── test_llgroup.py │ │ │ ├── test_llmemory.py │ │ │ ├── test_lloperation.py │ │ │ ├── test_lltype.py │ │ │ ├── test_rffi.py │ │ │ └── test_rtagged.py │ ├── module │ │ ├── __init__.py │ │ ├── ll_os.py │ │ ├── ll_os_environ.py │ │ ├── ll_os_path.py │ │ ├── ll_os_stat.py │ │ ├── ll_time.py │ │ ├── ll_win32file.py │ │ ├── r_os_stat.py │ │ ├── support.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_ll_os.py │ │ │ ├── test_ll_os_environ.py │ │ │ ├── test_ll_os_path.py │ │ │ ├── test_ll_os_stat.py │ │ │ ├── test_ll_strtod.py │ │ │ ├── test_ll_time.py │ │ │ └── test_posix.py │ ├── normalizecalls.py │ ├── raddress.py │ ├── raisingops.py │ ├── rbool.py │ ├── rbuilder.py │ ├── rbuiltin.py │ ├── rbytearray.py │ ├── rclass.py │ ├── rcontrollerentry.py │ ├── rdict.py │ ├── rfloat.py │ ├── rint.py │ ├── rlist.py │ ├── rmodel.py │ ├── rnone.py │ ├── rpbc.py │ ├── rptr.py │ ├── rrange.py │ ├── rstr.py │ ├── rtuple.py │ ├── rtyper.py │ ├── rvirtualizable.py │ ├── rweakref.py │ ├── test │ │ ├── __init__.py │ │ ├── snippet.py │ │ ├── test_annlowlevel.py │ │ ├── test_controllerentry.py │ │ ├── test_exception.py │ │ ├── test_extfunc.py │ │ ├── test_extfuncregister.py │ │ ├── test_extregistry.py │ │ ├── test_generator.py │ │ ├── test_llann.py │ │ ├── test_llannotation.py │ │ ├── test_llinterp.py │ │ ├── test_nongc.py │ │ ├── test_normalizecalls.py │ │ ├── test_rbool.py │ │ ├── test_rbuilder.py │ │ ├── test_rbuiltin.py │ │ ├── test_rbytearray.py │ │ ├── test_rclass.py │ │ ├── test_rconstantdict.py │ │ ├── test_rdict.py │ │ ├── test_remptydict.py │ │ ├── test_rfloat.py │ │ ├── test_rint.py │ │ ├── test_rlist.py │ │ ├── test_rordereddict.py │ │ ├── test_rpbc.py │ │ ├── test_rptr.py │ │ ├── test_rrange.py │ │ ├── test_rstr.py │ │ ├── test_rtuple.py │ │ ├── test_rtyper.py │ │ ├── test_runicode.py │ │ ├── test_rvirtualizable.py │ │ ├── test_rweakref.py │ │ └── tool.py │ ├── tool │ │ ├── __init__.py │ │ ├── gcstat.py │ │ ├── genrffi.py │ │ ├── mkrffi.py │ │ ├── rffi_platform.py │ │ ├── rfficache.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_mkrffi.py │ │ │ ├── test_rffi_platform.py │ │ │ └── test_rfficache.py │ └── typesystem.py ├── tool │ ├── __init__.py │ ├── algo │ │ ├── __init__.py │ │ ├── color.py │ │ ├── graphlib.py │ │ ├── regalloc.py │ │ ├── sparsemat.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── test_color.py │ │ │ ├── test_graphlib.py │ │ │ ├── test_sparsemat.py │ │ │ └── test_unionfind.py │ │ └── unionfind.py │ ├── ansi_mandelbrot.py │ ├── ansi_print.py │ ├── ansicolor.py │ ├── ansiramp.py │ ├── descriptor.py │ ├── disassembler.py │ ├── error.py │ ├── frozenlist.py │ ├── gcanalyze.py │ ├── gcc_cache.py │ ├── identity_dict.py │ ├── jitlogparser │ │ ├── __init__.py │ │ ├── logparser2json.py │ │ ├── module_finder.py │ │ ├── parser.py │ │ ├── storage.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── logtest.log │ │ │ ├── logtest2.log │ │ │ ├── test_modulefinder.py │ │ │ ├── test_parser.py │ │ │ ├── test_storage.py │ │ │ └── x.py │ ├── killsubprocess.py │ ├── leakfinder.py │ ├── logparser.py │ ├── lsprofcalltree.py │ ├── nullpath.py │ ├── pairtype.py │ ├── progressbar.py │ ├── pytest │ │ ├── __init__.py │ │ ├── expecttest.py │ │ └── test │ │ │ └── test_expecttest.py │ ├── runsubprocess.py │ ├── sourcetools.py │ ├── stdlib_opcode.py │ ├── terminal.py │ ├── test │ │ ├── test_descriptor.py │ │ ├── test_error.py │ │ ├── test_frozenlist.py │ │ ├── test_gcc_cache.py │ │ ├── test_identitydict.py │ │ ├── test_killsubprocess.py │ │ ├── test_leakfinder.py │ │ ├── test_logparser.py │ │ ├── test_nullpath.py │ │ ├── test_pairtype.py │ │ ├── test_runsubprocess.py │ │ ├── test_sourcetools.py │ │ ├── test_udir.py │ │ └── test_version.py │ ├── udir.py │ ├── uid.py │ ├── version.py │ ├── watchdog.py │ └── watchdog_nt.py └── translator │ ├── __init__.py │ ├── backendopt │ ├── __init__.py │ ├── all.py │ ├── canraise.py │ ├── constfold.py │ ├── escape.py │ ├── finalizer.py │ ├── gilanalysis.py │ ├── graphanalyze.py │ ├── inline.py │ ├── innerloop.py │ ├── malloc.py │ ├── mallocprediction.py │ ├── mallocv.py │ ├── merge_if_blocks.py │ ├── raisingop2direct_call.py │ ├── removeassert.py │ ├── removenoops.py │ ├── ssa.py │ ├── stat.py │ ├── storesink.py │ ├── support.py │ ├── tailrecursion.py │ ├── test │ │ ├── __init__.py │ │ ├── test_all.py │ │ ├── test_canraise.py │ │ ├── test_constfold.py │ │ ├── test_escape.py │ │ ├── test_finalizer.py │ │ ├── test_gilanalysis.py │ │ ├── test_graphanalyze.py │ │ ├── test_inline.py │ │ ├── test_innerloop.py │ │ ├── test_malloc.py │ │ ├── test_mallocprediction.py │ │ ├── test_mallocv.py │ │ ├── test_merge_if_blocks.py │ │ ├── test_raisingop2direct_call.py │ │ ├── test_removeassert.py │ │ ├── test_removenoops.py │ │ ├── test_ssa.py │ │ ├── test_storesink.py │ │ ├── test_support.py │ │ ├── test_tailrecursion.py │ │ └── test_writeanalyze.py │ └── writeanalyze.py │ ├── c │ ├── __init__.py │ ├── database.py │ ├── dlltool.py │ ├── external.py │ ├── extfunc.py │ ├── funcgen.py │ ├── gc.py │ ├── gcc │ │ ├── __init__.py │ │ ├── instruction.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── darwin │ │ │ │ ├── track0.s │ │ │ │ ├── track1.s │ │ │ │ ├── track2.s │ │ │ │ ├── track8.s │ │ │ │ ├── track9.s │ │ │ │ ├── track_0f.s │ │ │ │ ├── track_switch0.s │ │ │ │ ├── track_switch1.s │ │ │ │ ├── track_tailcall0.s │ │ │ │ └── track_tailcall1.s │ │ │ ├── darwin64 │ │ │ │ ├── track0.s │ │ │ │ └── track1.s │ │ │ ├── elf │ │ │ │ ├── src8.py │ │ │ │ ├── track0.s │ │ │ │ ├── track1.s │ │ │ │ ├── track10.s │ │ │ │ ├── track11.s │ │ │ │ ├── track12.s │ │ │ │ ├── track13.s │ │ │ │ ├── track2.s │ │ │ │ ├── track3.s │ │ │ │ ├── track5.s │ │ │ │ ├── track7.s │ │ │ │ ├── track8.s │ │ │ │ ├── track9.s │ │ │ │ ├── track_odd_esp.s │ │ │ │ └── track_tailcall0.s │ │ │ ├── elf64 │ │ │ │ ├── track_32bit_reg_zeroextend.s │ │ │ │ ├── track_basic_argument_registers.s │ │ │ │ ├── track_jumptable.c │ │ │ │ ├── track_jumptable.s │ │ │ │ ├── track_loadconst.s │ │ │ │ ├── track_negative_rsp_offset.s │ │ │ │ ├── track_random_rsp_rbp.s │ │ │ │ ├── track_rpyassertfailed.s │ │ │ │ ├── track_varargs_function.s │ │ │ │ ├── track_zero.s │ │ │ │ ├── track_zero_2.s │ │ │ │ ├── track_zero_3.s │ │ │ │ └── track_zero_4.s │ │ │ ├── msvc │ │ │ │ ├── track0.s │ │ │ │ ├── track1.s │ │ │ │ ├── track2.s │ │ │ │ ├── track8.s │ │ │ │ ├── track9.s │ │ │ │ ├── track_and_esp.s │ │ │ │ └── track_switch0.s │ │ │ ├── test_asmgcroot.py │ │ │ ├── test_thread.py │ │ │ └── test_trackgcroot.py │ │ └── trackgcroot.py │ ├── genc.py │ ├── node.py │ ├── primitive.py │ ├── src │ │ ├── address.h │ │ ├── asm.c │ │ ├── asm.h │ │ ├── asm_gcc_x86.c │ │ ├── asm_gcc_x86.h │ │ ├── asm_gcc_x86_64.h │ │ ├── asm_msvc.c │ │ ├── asm_msvc.h │ │ ├── char.h │ │ ├── commondefs.h │ │ ├── cygwin_wait.c │ │ ├── cygwin_wait.h │ │ ├── debug_print.c │ │ ├── debug_print.h │ │ ├── debug_traceback.c │ │ ├── debug_traceback.h │ │ ├── dtoa.c │ │ ├── dtoa.h │ │ ├── entrypoint.c │ │ ├── entrypoint.h │ │ ├── exception.c │ │ ├── exception.h │ │ ├── float.h │ │ ├── g_include.h │ │ ├── g_prerequisite.h │ │ ├── instrument.c │ │ ├── instrument.h │ │ ├── int.c │ │ ├── int.h │ │ ├── libffi_msvc │ │ │ ├── README.pypy │ │ │ ├── ffi.c │ │ │ ├── ffi.h │ │ │ ├── ffi_common.h │ │ │ ├── fficonfig.h │ │ │ ├── ffitarget.h │ │ │ ├── prep_cif.c │ │ │ ├── pypy_ffi.c │ │ │ ├── types.c │ │ │ ├── win32.c │ │ │ └── win64.asm │ │ ├── ll_math.c │ │ ├── ll_math.h │ │ ├── ll_strtod.c │ │ ├── ll_strtod.h │ │ ├── llgroup.h │ │ ├── mem.c │ │ ├── mem.h │ │ ├── precommondefs.h │ │ ├── profiling.c │ │ ├── profiling.h │ │ ├── rtyper.c │ │ ├── rtyper.h │ │ ├── signals.c │ │ ├── signals.h │ │ ├── stack.c │ │ ├── stack.h │ │ ├── stacklet │ │ │ ├── Makefile │ │ │ ├── runtests.py │ │ │ ├── slp_platformselect.h │ │ │ ├── stacklet.c │ │ │ ├── stacklet.h │ │ │ ├── switch_arm_gcc.h │ │ │ ├── switch_x64_msvc.asm │ │ │ ├── switch_x64_msvc.h │ │ │ ├── switch_x86_64_gcc.h │ │ │ ├── switch_x86_gcc.h │ │ │ ├── switch_x86_msvc.asm │ │ │ ├── switch_x86_msvc.h │ │ │ └── tests.c │ │ ├── support.c │ │ ├── support.h │ │ ├── thread.c │ │ ├── thread.h │ │ ├── thread_gil.c │ │ ├── thread_nt.c │ │ ├── thread_nt.h │ │ ├── thread_pthread.c │ │ ├── thread_pthread.h │ │ ├── threadlocal.c │ │ ├── threadlocal.h │ │ └── unichar.h │ ├── support.py │ └── test │ │ ├── __init__.py │ │ ├── red.ico │ │ ├── test_backendoptimized.py │ │ ├── test_boehm.py │ │ ├── test_database.py │ │ ├── test_exception.py │ │ ├── test_extfunc.py │ │ ├── test_genc.py │ │ ├── test_lladdresses.py │ │ ├── test_lltyped.py │ │ ├── test_math.py │ │ ├── test_newgc.py │ │ ├── test_refcount.py │ │ ├── test_rtagged.py │ │ ├── test_standalone.py │ │ ├── test_support.py │ │ ├── test_symbolic.py │ │ └── test_typed.py │ ├── driver.py │ ├── exceptiontransform.py │ ├── gensupp.py │ ├── goal │ ├── __init__.py │ ├── _test_thread.py │ ├── app_example.py │ ├── bpnn.py │ ├── compile_stackless.bat │ ├── gcbench.py │ ├── launch-bench-cronjob.sh │ ├── query.py │ ├── richards.py │ ├── runpystone.py │ ├── targetbigintbenchmark.py │ ├── targetgcbench.py │ ├── targetjitstandalone.py │ ├── targetlbench.py │ ├── targetnopstandalone.py │ ├── targetosreadbench.py │ ├── targetpushpop.py │ ├── targetreadlines.py │ ├── targetreallynopstandalone.py │ ├── targetrecursivestandalone.py │ ├── targetrichards.py │ ├── targetrpystone.py │ ├── targetrpystonedalone.py │ ├── targetrpystonex.py │ ├── targetsegfault.py │ ├── targetsha1sum.py │ ├── targetsimpleread.py │ ├── targetsimplewrite.py │ ├── targettestdicts.py │ ├── targettestlistvsdict.py │ ├── targetvarsized.py │ ├── targetwarningalone.py │ ├── test2 │ │ └── test_timing.py │ ├── timing.py │ ├── translate.py │ └── unixcheckpoint.py │ ├── interactive.py │ ├── platform │ ├── __init__.py │ ├── arm.py │ ├── bsd.py │ ├── cygwin.py │ ├── darwin.py │ ├── distutils_platform.py │ ├── emscripten_platform │ │ ├── __init__.py │ │ ├── emjs.h │ │ ├── ffi.h │ │ ├── gc │ │ │ └── gc.h │ │ ├── library_emjs.js │ │ ├── library_ffi.js │ │ ├── library_jit.h │ │ └── no-debug │ │ │ └── src │ │ │ └── debug_traceback.h │ ├── freebsd.py │ ├── linux.py │ ├── maemo.py │ ├── netbsd.py │ ├── openbsd.py │ ├── posix.py │ ├── test │ │ ├── __init__.py │ │ ├── include │ │ │ └── test.h │ │ ├── test_darwin.py │ │ ├── test_distutils.py │ │ ├── test_maemo.py │ │ ├── test_makefile.py │ │ ├── test_platform.py │ │ └── test_posix.py │ └── windows.py │ ├── sandbox │ ├── __init__.py │ ├── _marshal.py │ ├── interact.py │ ├── rsandbox.py │ ├── sandlib.py │ ├── test │ │ ├── __init__.py │ │ ├── test_sandbox.py │ │ ├── test_sandlib.py │ │ └── test_vfs.py │ └── vfs.py │ ├── simplify.py │ ├── test │ ├── __init__.py │ ├── rpystone.py │ ├── rpystone_newstyle.py │ ├── snippet.py │ ├── test_driver.py │ ├── test_exceptiontransform.py │ ├── test_interactive.py │ ├── test_simplify.py │ ├── test_stackcheck.py │ ├── test_translator.py │ ├── test_uniquename.py │ └── test_unsimplify.py │ ├── tool │ ├── __init__.py │ ├── cbuild.py │ ├── graphpage.py │ ├── lltracker.py │ ├── make_dot.py │ ├── pdbplus.py │ ├── reftracker.py │ ├── staticsizereport.py │ ├── stdoutcapture.py │ ├── taskengine.py │ └── test │ │ ├── __init__.py │ │ ├── test_cbuild.py │ │ ├── test_staticsizereport.py │ │ └── test_taskengine.py │ ├── transform.py │ ├── translator.py │ └── unsimplify.py ├── site-packages └── README └── testrunner ├── filetimes.py ├── junitmerge.py ├── runner.py ├── scratchbox_runner.py └── test ├── __init__.py ├── conftest.py ├── examples ├── normal │ ├── example.py │ ├── example_importerror.py │ ├── failingsetup.py │ └── failingsetup_tricky.py └── stall │ └── example.py ├── test_runner.py └── test_scratchbox_runner.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgsubstate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/.hgtags -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/README.rst -------------------------------------------------------------------------------- /_pytest/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | __version__ = '2.5.2' 3 | -------------------------------------------------------------------------------- /_pytest/_argcomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/_argcomplete.py -------------------------------------------------------------------------------- /_pytest/assertion/rewrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/assertion/rewrite.py -------------------------------------------------------------------------------- /_pytest/assertion/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/assertion/util.py -------------------------------------------------------------------------------- /_pytest/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/capture.py -------------------------------------------------------------------------------- /_pytest/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/config.py -------------------------------------------------------------------------------- /_pytest/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/core.py -------------------------------------------------------------------------------- /_pytest/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/doctest.py -------------------------------------------------------------------------------- /_pytest/genscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/genscript.py -------------------------------------------------------------------------------- /_pytest/helpconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/helpconfig.py -------------------------------------------------------------------------------- /_pytest/hookspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/hookspec.py -------------------------------------------------------------------------------- /_pytest/impl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/impl -------------------------------------------------------------------------------- /_pytest/junitxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/junitxml.py -------------------------------------------------------------------------------- /_pytest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/main.py -------------------------------------------------------------------------------- /_pytest/mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/mark.py -------------------------------------------------------------------------------- /_pytest/monkeypatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/monkeypatch.py -------------------------------------------------------------------------------- /_pytest/nose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/nose.py -------------------------------------------------------------------------------- /_pytest/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/pastebin.py -------------------------------------------------------------------------------- /_pytest/pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/pdb.py -------------------------------------------------------------------------------- /_pytest/pytester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/pytester.py -------------------------------------------------------------------------------- /_pytest/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/python.py -------------------------------------------------------------------------------- /_pytest/recwarn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/recwarn.py -------------------------------------------------------------------------------- /_pytest/resultlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/resultlog.py -------------------------------------------------------------------------------- /_pytest/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/runner.py -------------------------------------------------------------------------------- /_pytest/skipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/skipping.py -------------------------------------------------------------------------------- /_pytest/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/terminal.py -------------------------------------------------------------------------------- /_pytest/tmpdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/tmpdir.py -------------------------------------------------------------------------------- /_pytest/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/_pytest/unittest.py -------------------------------------------------------------------------------- /ctypes_configure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ctypes_configure/cbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/ctypes_configure/cbuild.py -------------------------------------------------------------------------------- /ctypes_configure/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dotviewer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dotviewer/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/dotviewer/conftest.py -------------------------------------------------------------------------------- /dotviewer/dotviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/dotviewer/dotviewer.py -------------------------------------------------------------------------------- /dotviewer/drawgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/dotviewer/drawgraph.py -------------------------------------------------------------------------------- /dotviewer/font/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/dotviewer/font/DroidSans.ttf -------------------------------------------------------------------------------- /dotviewer/font/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/dotviewer/font/NOTICE -------------------------------------------------------------------------------- /dotviewer/font/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/dotviewer/font/README.txt -------------------------------------------------------------------------------- /dotviewer/graphclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/dotviewer/graphclient.py -------------------------------------------------------------------------------- /dotviewer/graphdisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/dotviewer/graphdisplay.py -------------------------------------------------------------------------------- /dotviewer/graphpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/dotviewer/graphpage.py -------------------------------------------------------------------------------- /dotviewer/graphparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/dotviewer/graphparse.py -------------------------------------------------------------------------------- /dotviewer/graphserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/dotviewer/graphserver.py -------------------------------------------------------------------------------- /dotviewer/msgstruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/dotviewer/msgstruct.py -------------------------------------------------------------------------------- /dotviewer/sshgraphserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/dotviewer/sshgraphserver.py -------------------------------------------------------------------------------- /dotviewer/strunicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/dotviewer/strunicode.py -------------------------------------------------------------------------------- /dotviewer/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/PyPy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/include/PyPy.h -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/include/README -------------------------------------------------------------------------------- /lib-python/2.7/Bastion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/Bastion.py -------------------------------------------------------------------------------- /lib-python/2.7/Cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/Cookie.py -------------------------------------------------------------------------------- /lib-python/2.7/HTMLParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/HTMLParser.py -------------------------------------------------------------------------------- /lib-python/2.7/MimeWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/MimeWriter.py -------------------------------------------------------------------------------- /lib-python/2.7/Queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/Queue.py -------------------------------------------------------------------------------- /lib-python/2.7/StringIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/StringIO.py -------------------------------------------------------------------------------- /lib-python/2.7/UserDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/UserDict.py -------------------------------------------------------------------------------- /lib-python/2.7/UserList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/UserList.py -------------------------------------------------------------------------------- /lib-python/2.7/UserString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/UserString.py -------------------------------------------------------------------------------- /lib-python/2.7/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/__future__.py -------------------------------------------------------------------------------- /lib-python/2.7/_abcoll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/_abcoll.py -------------------------------------------------------------------------------- /lib-python/2.7/_pyio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/_pyio.py -------------------------------------------------------------------------------- /lib-python/2.7/_strptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/_strptime.py -------------------------------------------------------------------------------- /lib-python/2.7/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/abc.py -------------------------------------------------------------------------------- /lib-python/2.7/aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/aifc.py -------------------------------------------------------------------------------- /lib-python/2.7/anydbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/anydbm.py -------------------------------------------------------------------------------- /lib-python/2.7/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/argparse.py -------------------------------------------------------------------------------- /lib-python/2.7/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/ast.py -------------------------------------------------------------------------------- /lib-python/2.7/asynchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/asynchat.py -------------------------------------------------------------------------------- /lib-python/2.7/asyncore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/asyncore.py -------------------------------------------------------------------------------- /lib-python/2.7/atexit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/atexit.py -------------------------------------------------------------------------------- /lib-python/2.7/audiodev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/audiodev.py -------------------------------------------------------------------------------- /lib-python/2.7/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/base64.py -------------------------------------------------------------------------------- /lib-python/2.7/bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/bdb.py -------------------------------------------------------------------------------- /lib-python/2.7/binhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/binhex.py -------------------------------------------------------------------------------- /lib-python/2.7/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/bisect.py -------------------------------------------------------------------------------- /lib-python/2.7/bsddb/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/bsddb/db.py -------------------------------------------------------------------------------- /lib-python/2.7/bsddb/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-python/2.7/cProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/cProfile.py -------------------------------------------------------------------------------- /lib-python/2.7/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/calendar.py -------------------------------------------------------------------------------- /lib-python/2.7/cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/cgi.py -------------------------------------------------------------------------------- /lib-python/2.7/cgitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/cgitb.py -------------------------------------------------------------------------------- /lib-python/2.7/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/chunk.py -------------------------------------------------------------------------------- /lib-python/2.7/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/cmd.py -------------------------------------------------------------------------------- /lib-python/2.7/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/code.py -------------------------------------------------------------------------------- /lib-python/2.7/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/codecs.py -------------------------------------------------------------------------------- /lib-python/2.7/codeop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/codeop.py -------------------------------------------------------------------------------- /lib-python/2.7/colorsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/colorsys.py -------------------------------------------------------------------------------- /lib-python/2.7/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/commands.py -------------------------------------------------------------------------------- /lib-python/2.7/compileall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/compileall.py -------------------------------------------------------------------------------- /lib-python/2.7/contextlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/contextlib.py -------------------------------------------------------------------------------- /lib-python/2.7/cookielib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/cookielib.py -------------------------------------------------------------------------------- /lib-python/2.7/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/copy.py -------------------------------------------------------------------------------- /lib-python/2.7/copy_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/copy_reg.py -------------------------------------------------------------------------------- /lib-python/2.7/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/csv.py -------------------------------------------------------------------------------- /lib-python/2.7/dbhash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/dbhash.py -------------------------------------------------------------------------------- /lib-python/2.7/decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/decimal.py -------------------------------------------------------------------------------- /lib-python/2.7/difflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/difflib.py -------------------------------------------------------------------------------- /lib-python/2.7/dircache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/dircache.py -------------------------------------------------------------------------------- /lib-python/2.7/dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/dis.py -------------------------------------------------------------------------------- /lib-python/2.7/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/doctest.py -------------------------------------------------------------------------------- /lib-python/2.7/dumbdbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/dumbdbm.py -------------------------------------------------------------------------------- /lib-python/2.7/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-python/2.7/email/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-python/2.7/filecmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/filecmp.py -------------------------------------------------------------------------------- /lib-python/2.7/fileinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/fileinput.py -------------------------------------------------------------------------------- /lib-python/2.7/fnmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/fnmatch.py -------------------------------------------------------------------------------- /lib-python/2.7/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/formatter.py -------------------------------------------------------------------------------- /lib-python/2.7/fpformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/fpformat.py -------------------------------------------------------------------------------- /lib-python/2.7/fractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/fractions.py -------------------------------------------------------------------------------- /lib-python/2.7/ftplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/ftplib.py -------------------------------------------------------------------------------- /lib-python/2.7/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/functools.py -------------------------------------------------------------------------------- /lib-python/2.7/getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/getopt.py -------------------------------------------------------------------------------- /lib-python/2.7/getpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/getpass.py -------------------------------------------------------------------------------- /lib-python/2.7/gettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/gettext.py -------------------------------------------------------------------------------- /lib-python/2.7/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/glob.py -------------------------------------------------------------------------------- /lib-python/2.7/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/gzip.py -------------------------------------------------------------------------------- /lib-python/2.7/hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/hashlib.py -------------------------------------------------------------------------------- /lib-python/2.7/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/heapq.py -------------------------------------------------------------------------------- /lib-python/2.7/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/hmac.py -------------------------------------------------------------------------------- /lib-python/2.7/htmllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/htmllib.py -------------------------------------------------------------------------------- /lib-python/2.7/httplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/httplib.py -------------------------------------------------------------------------------- /lib-python/2.7/idlelib/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this a package. 2 | -------------------------------------------------------------------------------- /lib-python/2.7/idlelib/idlever.py: -------------------------------------------------------------------------------- 1 | IDLE_VERSION = "2.7.9" 2 | -------------------------------------------------------------------------------- /lib-python/2.7/ihooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/ihooks.py -------------------------------------------------------------------------------- /lib-python/2.7/imaplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/imaplib.py -------------------------------------------------------------------------------- /lib-python/2.7/imghdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/imghdr.py -------------------------------------------------------------------------------- /lib-python/2.7/imputil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/imputil.py -------------------------------------------------------------------------------- /lib-python/2.7/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/inspect.py -------------------------------------------------------------------------------- /lib-python/2.7/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/io.py -------------------------------------------------------------------------------- /lib-python/2.7/json/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/json/tool.py -------------------------------------------------------------------------------- /lib-python/2.7/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/keyword.py -------------------------------------------------------------------------------- /lib-python/2.7/lib-tk/Tix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/lib-tk/Tix.py -------------------------------------------------------------------------------- /lib-python/2.7/lib-tk/test/test_tkinter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-python/2.7/lib-tk/test/test_ttk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-python/2.7/lib-tk/ttk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/lib-tk/ttk.py -------------------------------------------------------------------------------- /lib-python/2.7/lib2to3/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /lib-python/2.7/lib2to3/fixes/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /lib-python/2.7/lib2to3/tests/data/bom.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | print "BOM BOOM!" 3 | -------------------------------------------------------------------------------- /lib-python/2.7/lib2to3/tests/data/false_encoding.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | print '#coding=0' 3 | -------------------------------------------------------------------------------- /lib-python/2.7/lib2to3/tests/data/fixers/myfixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-python/2.7/lib2to3/tests/data/fixers/parrot_example.py: -------------------------------------------------------------------------------- 1 | def parrot(): 2 | pass 3 | -------------------------------------------------------------------------------- /lib-python/2.7/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/linecache.py -------------------------------------------------------------------------------- /lib-python/2.7/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/locale.py -------------------------------------------------------------------------------- /lib-python/2.7/macpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/macpath.py -------------------------------------------------------------------------------- /lib-python/2.7/mailbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/mailbox.py -------------------------------------------------------------------------------- /lib-python/2.7/mailcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/mailcap.py -------------------------------------------------------------------------------- /lib-python/2.7/markupbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/markupbase.py -------------------------------------------------------------------------------- /lib-python/2.7/md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/md5.py -------------------------------------------------------------------------------- /lib-python/2.7/mhlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/mhlib.py -------------------------------------------------------------------------------- /lib-python/2.7/mimetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/mimetools.py -------------------------------------------------------------------------------- /lib-python/2.7/mimetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/mimetypes.py -------------------------------------------------------------------------------- /lib-python/2.7/mimify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/mimify.py -------------------------------------------------------------------------------- /lib-python/2.7/multifile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/multifile.py -------------------------------------------------------------------------------- /lib-python/2.7/mutex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/mutex.py -------------------------------------------------------------------------------- /lib-python/2.7/netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/netrc.py -------------------------------------------------------------------------------- /lib-python/2.7/new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/new.py -------------------------------------------------------------------------------- /lib-python/2.7/nntplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/nntplib.py -------------------------------------------------------------------------------- /lib-python/2.7/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/ntpath.py -------------------------------------------------------------------------------- /lib-python/2.7/nturl2path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/nturl2path.py -------------------------------------------------------------------------------- /lib-python/2.7/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/numbers.py -------------------------------------------------------------------------------- /lib-python/2.7/opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/opcode.py -------------------------------------------------------------------------------- /lib-python/2.7/optparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/optparse.py -------------------------------------------------------------------------------- /lib-python/2.7/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/os.py -------------------------------------------------------------------------------- /lib-python/2.7/os2emxpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/os2emxpath.py -------------------------------------------------------------------------------- /lib-python/2.7/pdb.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/pdb.doc -------------------------------------------------------------------------------- /lib-python/2.7/pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/pdb.py -------------------------------------------------------------------------------- /lib-python/2.7/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/pickle.py -------------------------------------------------------------------------------- /lib-python/2.7/pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/pipes.py -------------------------------------------------------------------------------- /lib-python/2.7/pkgutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/pkgutil.py -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/AE.py: -------------------------------------------------------------------------------- 1 | from _AE import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/AH.py: -------------------------------------------------------------------------------- 1 | from _AH import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Alias.py: -------------------------------------------------------------------------------- 1 | from _Alias import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/App.py: -------------------------------------------------------------------------------- 1 | from _App import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/CF.py: -------------------------------------------------------------------------------- 1 | from _CF import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/CG.py: -------------------------------------------------------------------------------- 1 | from _CG import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/CarbonEvt.py: -------------------------------------------------------------------------------- 1 | from _CarbonEvt import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Cm.py: -------------------------------------------------------------------------------- 1 | from _Cm import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Ctl.py: -------------------------------------------------------------------------------- 1 | from _Ctl import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Dlg.py: -------------------------------------------------------------------------------- 1 | from _Dlg import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Drag.py: -------------------------------------------------------------------------------- 1 | from _Drag import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Evt.py: -------------------------------------------------------------------------------- 1 | from _Evt import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/File.py: -------------------------------------------------------------------------------- 1 | from _File import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Fm.py: -------------------------------------------------------------------------------- 1 | from _Fm import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Folder.py: -------------------------------------------------------------------------------- 1 | from _Folder import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Help.py: -------------------------------------------------------------------------------- 1 | from _Help import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/IBCarbon.py: -------------------------------------------------------------------------------- 1 | from _IBCarbon import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Icn.py: -------------------------------------------------------------------------------- 1 | from _Icn import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Launch.py: -------------------------------------------------------------------------------- 1 | from _Launch import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/List.py: -------------------------------------------------------------------------------- 1 | from _List import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Menu.py: -------------------------------------------------------------------------------- 1 | from _Menu import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Mlte.py: -------------------------------------------------------------------------------- 1 | from _Mlte import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/OSA.py: -------------------------------------------------------------------------------- 1 | from _OSA import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Qd.py: -------------------------------------------------------------------------------- 1 | from _Qd import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Qdoffs.py: -------------------------------------------------------------------------------- 1 | from _Qdoffs import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Scrap.py: -------------------------------------------------------------------------------- 1 | from _Scrap import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Snd.py: -------------------------------------------------------------------------------- 1 | from _Snd import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Sndihooks.py: -------------------------------------------------------------------------------- 1 | from _Sndihooks import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/TE.py: -------------------------------------------------------------------------------- 1 | from _TE import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/plat-mac/Carbon/Win.py: -------------------------------------------------------------------------------- 1 | from _Win import * 2 | -------------------------------------------------------------------------------- /lib-python/2.7/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/platform.py -------------------------------------------------------------------------------- /lib-python/2.7/plistlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/plistlib.py -------------------------------------------------------------------------------- /lib-python/2.7/popen2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/popen2.py -------------------------------------------------------------------------------- /lib-python/2.7/poplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/poplib.py -------------------------------------------------------------------------------- /lib-python/2.7/posixfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/posixfile.py -------------------------------------------------------------------------------- /lib-python/2.7/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/posixpath.py -------------------------------------------------------------------------------- /lib-python/2.7/pprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/pprint.py -------------------------------------------------------------------------------- /lib-python/2.7/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/profile.py -------------------------------------------------------------------------------- /lib-python/2.7/pstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/pstats.py -------------------------------------------------------------------------------- /lib-python/2.7/pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/pty.py -------------------------------------------------------------------------------- /lib-python/2.7/py_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/py_compile.py -------------------------------------------------------------------------------- /lib-python/2.7/pyclbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/pyclbr.py -------------------------------------------------------------------------------- /lib-python/2.7/pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/pydoc.py -------------------------------------------------------------------------------- /lib-python/2.7/pydoc_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-python/2.7/quopri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/quopri.py -------------------------------------------------------------------------------- /lib-python/2.7/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/random.py -------------------------------------------------------------------------------- /lib-python/2.7/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/re.py -------------------------------------------------------------------------------- /lib-python/2.7/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/repr.py -------------------------------------------------------------------------------- /lib-python/2.7/rexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/rexec.py -------------------------------------------------------------------------------- /lib-python/2.7/rfc822.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/rfc822.py -------------------------------------------------------------------------------- /lib-python/2.7/runpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/runpy.py -------------------------------------------------------------------------------- /lib-python/2.7/sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/sched.py -------------------------------------------------------------------------------- /lib-python/2.7/sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/sets.py -------------------------------------------------------------------------------- /lib-python/2.7/sgmllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/sgmllib.py -------------------------------------------------------------------------------- /lib-python/2.7/sha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/sha.py -------------------------------------------------------------------------------- /lib-python/2.7/shelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/shelve.py -------------------------------------------------------------------------------- /lib-python/2.7/shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/shlex.py -------------------------------------------------------------------------------- /lib-python/2.7/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/shutil.py -------------------------------------------------------------------------------- /lib-python/2.7/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/site.py -------------------------------------------------------------------------------- /lib-python/2.7/smtpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/smtpd.py -------------------------------------------------------------------------------- /lib-python/2.7/smtplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/smtplib.py -------------------------------------------------------------------------------- /lib-python/2.7/sndhdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/sndhdr.py -------------------------------------------------------------------------------- /lib-python/2.7/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/socket.py -------------------------------------------------------------------------------- /lib-python/2.7/sqlite3/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-python/2.7/sre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/sre.py -------------------------------------------------------------------------------- /lib-python/2.7/sre_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/sre_parse.py -------------------------------------------------------------------------------- /lib-python/2.7/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/ssl.py -------------------------------------------------------------------------------- /lib-python/2.7/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/stat.py -------------------------------------------------------------------------------- /lib-python/2.7/statvfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/statvfs.py -------------------------------------------------------------------------------- /lib-python/2.7/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/string.py -------------------------------------------------------------------------------- /lib-python/2.7/stringold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/stringold.py -------------------------------------------------------------------------------- /lib-python/2.7/stringprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/stringprep.py -------------------------------------------------------------------------------- /lib-python/2.7/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/struct.py -------------------------------------------------------------------------------- /lib-python/2.7/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/subprocess.py -------------------------------------------------------------------------------- /lib-python/2.7/sunau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/sunau.py -------------------------------------------------------------------------------- /lib-python/2.7/sunaudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/sunaudio.py -------------------------------------------------------------------------------- /lib-python/2.7/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/symbol.py -------------------------------------------------------------------------------- /lib-python/2.7/symtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/symtable.py -------------------------------------------------------------------------------- /lib-python/2.7/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/sysconfig.py -------------------------------------------------------------------------------- /lib-python/2.7/tabnanny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/tabnanny.py -------------------------------------------------------------------------------- /lib-python/2.7/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/tarfile.py -------------------------------------------------------------------------------- /lib-python/2.7/telnetlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/telnetlib.py -------------------------------------------------------------------------------- /lib-python/2.7/tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/tempfile.py -------------------------------------------------------------------------------- /lib-python/2.7/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /lib-python/2.7/test/bad_coding.py: -------------------------------------------------------------------------------- 1 | # -*- coding: uft-8 -*- 2 | -------------------------------------------------------------------------------- /lib-python/2.7/test/bad_coding2.py: -------------------------------------------------------------------------------- 1 | #coding: utf8 2 | print '我' 3 | -------------------------------------------------------------------------------- /lib-python/2.7/test/badsyntax_nocaret.py: -------------------------------------------------------------------------------- 1 | def f(x): 2 | [x for x in x] = x 3 | -------------------------------------------------------------------------------- /lib-python/2.7/test/cfgparser.1: -------------------------------------------------------------------------------- 1 | [Foo Bar] 2 | foo=newbar 3 | -------------------------------------------------------------------------------- /lib-python/2.7/test/cjkencodings/big5hkscs-utf8.txt: -------------------------------------------------------------------------------- 1 | 𠄌Ě鵮罓洆 2 | ÊÊ̄ê êê̄ 3 | -------------------------------------------------------------------------------- /lib-python/2.7/test/leakers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-python/2.7/test/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib-python/2.7/textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/textwrap.py -------------------------------------------------------------------------------- /lib-python/2.7/this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/this.py -------------------------------------------------------------------------------- /lib-python/2.7/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/threading.py -------------------------------------------------------------------------------- /lib-python/2.7/timeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/timeit.py -------------------------------------------------------------------------------- /lib-python/2.7/toaiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/toaiff.py -------------------------------------------------------------------------------- /lib-python/2.7/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/token.py -------------------------------------------------------------------------------- /lib-python/2.7/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/tokenize.py -------------------------------------------------------------------------------- /lib-python/2.7/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/trace.py -------------------------------------------------------------------------------- /lib-python/2.7/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/traceback.py -------------------------------------------------------------------------------- /lib-python/2.7/tty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/tty.py -------------------------------------------------------------------------------- /lib-python/2.7/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/types.py -------------------------------------------------------------------------------- /lib-python/2.7/urllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/urllib.py -------------------------------------------------------------------------------- /lib-python/2.7/urllib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/urllib2.py -------------------------------------------------------------------------------- /lib-python/2.7/urlparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/urlparse.py -------------------------------------------------------------------------------- /lib-python/2.7/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/user.py -------------------------------------------------------------------------------- /lib-python/2.7/uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/uu.py -------------------------------------------------------------------------------- /lib-python/2.7/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/uuid.py -------------------------------------------------------------------------------- /lib-python/2.7/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/warnings.py -------------------------------------------------------------------------------- /lib-python/2.7/wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/wave.py -------------------------------------------------------------------------------- /lib-python/2.7/weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/weakref.py -------------------------------------------------------------------------------- /lib-python/2.7/webbrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/webbrowser.py -------------------------------------------------------------------------------- /lib-python/2.7/whichdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/whichdb.py -------------------------------------------------------------------------------- /lib-python/2.7/xdrlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/xdrlib.py -------------------------------------------------------------------------------- /lib-python/2.7/xmllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/xmllib.py -------------------------------------------------------------------------------- /lib-python/2.7/xmlrpclib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/xmlrpclib.py -------------------------------------------------------------------------------- /lib-python/2.7/zipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/2.7/zipfile.py -------------------------------------------------------------------------------- /lib-python/3/_osx_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/3/_osx_support.py -------------------------------------------------------------------------------- /lib-python/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib-python/conftest.py -------------------------------------------------------------------------------- /lib_pypy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/__init__.py -------------------------------------------------------------------------------- /lib_pypy/_audioop_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_audioop_build.py -------------------------------------------------------------------------------- /lib_pypy/_codecs_cn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_codecs_cn.py -------------------------------------------------------------------------------- /lib_pypy/_codecs_hk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_codecs_hk.py -------------------------------------------------------------------------------- /lib_pypy/_codecs_iso2022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_codecs_iso2022.py -------------------------------------------------------------------------------- /lib_pypy/_codecs_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_codecs_jp.py -------------------------------------------------------------------------------- /lib_pypy/_codecs_kr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_codecs_kr.py -------------------------------------------------------------------------------- /lib_pypy/_codecs_tw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_codecs_tw.py -------------------------------------------------------------------------------- /lib_pypy/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_collections.py -------------------------------------------------------------------------------- /lib_pypy/_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_csv.py -------------------------------------------------------------------------------- /lib_pypy/_ctypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_ctypes/__init__.py -------------------------------------------------------------------------------- /lib_pypy/_ctypes/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_ctypes/array.py -------------------------------------------------------------------------------- /lib_pypy/_ctypes/basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_ctypes/basics.py -------------------------------------------------------------------------------- /lib_pypy/_ctypes/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_ctypes/builtin.py -------------------------------------------------------------------------------- /lib_pypy/_ctypes/dll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_ctypes/dll.py -------------------------------------------------------------------------------- /lib_pypy/_ctypes/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_ctypes/dummy.py -------------------------------------------------------------------------------- /lib_pypy/_ctypes/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_ctypes/function.py -------------------------------------------------------------------------------- /lib_pypy/_ctypes/pointer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_ctypes/pointer.py -------------------------------------------------------------------------------- /lib_pypy/_ctypes/union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_ctypes/union.py -------------------------------------------------------------------------------- /lib_pypy/_ctypes_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_ctypes_test.c -------------------------------------------------------------------------------- /lib_pypy/_ctypes_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_ctypes_test.py -------------------------------------------------------------------------------- /lib_pypy/_curses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_curses.py -------------------------------------------------------------------------------- /lib_pypy/_curses_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_curses_build.py -------------------------------------------------------------------------------- /lib_pypy/_curses_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_curses_panel.py -------------------------------------------------------------------------------- /lib_pypy/_elementtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_elementtree.py -------------------------------------------------------------------------------- /lib_pypy/_ffi.py: -------------------------------------------------------------------------------- 1 | # Backward compatibility hack 2 | from _rawffi.alt import * 3 | -------------------------------------------------------------------------------- /lib_pypy/_functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_functools.py -------------------------------------------------------------------------------- /lib_pypy/_gdbm_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_gdbm_build.py -------------------------------------------------------------------------------- /lib_pypy/_marshal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_marshal.py -------------------------------------------------------------------------------- /lib_pypy/_md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_md5.py -------------------------------------------------------------------------------- /lib_pypy/_pwdgrp_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_pwdgrp_build.py -------------------------------------------------------------------------------- /lib_pypy/_pypy_interact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_pypy_interact.py -------------------------------------------------------------------------------- /lib_pypy/_pypy_irc_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_pypy_irc_topic.py -------------------------------------------------------------------------------- /lib_pypy/_pypy_testcapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_pypy_testcapi.py -------------------------------------------------------------------------------- /lib_pypy/_pypy_wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_pypy_wait.py -------------------------------------------------------------------------------- /lib_pypy/_scproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_scproxy.py -------------------------------------------------------------------------------- /lib_pypy/_sha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_sha.py -------------------------------------------------------------------------------- /lib_pypy/_sha256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_sha256.py -------------------------------------------------------------------------------- /lib_pypy/_sha512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_sha512.py -------------------------------------------------------------------------------- /lib_pypy/_sqlite3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_sqlite3.py -------------------------------------------------------------------------------- /lib_pypy/_sqlite3_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_sqlite3_build.py -------------------------------------------------------------------------------- /lib_pypy/_structseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_structseq.py -------------------------------------------------------------------------------- /lib_pypy/_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_subprocess.py -------------------------------------------------------------------------------- /lib_pypy/_syslog_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_syslog_build.py -------------------------------------------------------------------------------- /lib_pypy/_testcapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_testcapi.py -------------------------------------------------------------------------------- /lib_pypy/_testcapimodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_testcapimodule.c -------------------------------------------------------------------------------- /lib_pypy/_tkinter/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_tkinter/app.py -------------------------------------------------------------------------------- /lib_pypy/_tkinter/tclobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/_tkinter/tclobj.py -------------------------------------------------------------------------------- /lib_pypy/audioop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/audioop.py -------------------------------------------------------------------------------- /lib_pypy/cPickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cPickle.py -------------------------------------------------------------------------------- /lib_pypy/cStringIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cStringIO.py -------------------------------------------------------------------------------- /lib_pypy/cffi.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib_pypy/cffi.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib_pypy/cffi.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib_pypy/cffi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cffi/__init__.py -------------------------------------------------------------------------------- /lib_pypy/cffi/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cffi/api.py -------------------------------------------------------------------------------- /lib_pypy/cffi/cffi_opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cffi/cffi_opcode.py -------------------------------------------------------------------------------- /lib_pypy/cffi/commontypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cffi/commontypes.py -------------------------------------------------------------------------------- /lib_pypy/cffi/cparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cffi/cparser.py -------------------------------------------------------------------------------- /lib_pypy/cffi/ffiplatform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cffi/ffiplatform.py -------------------------------------------------------------------------------- /lib_pypy/cffi/gc_weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cffi/gc_weakref.py -------------------------------------------------------------------------------- /lib_pypy/cffi/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cffi/lock.py -------------------------------------------------------------------------------- /lib_pypy/cffi/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cffi/model.py -------------------------------------------------------------------------------- /lib_pypy/cffi/parse_c_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cffi/parse_c_type.h -------------------------------------------------------------------------------- /lib_pypy/cffi/recompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cffi/recompiler.py -------------------------------------------------------------------------------- /lib_pypy/cffi/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib_pypy/cffi/vengine_cpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cffi/vengine_cpy.py -------------------------------------------------------------------------------- /lib_pypy/cffi/vengine_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cffi/vengine_gen.py -------------------------------------------------------------------------------- /lib_pypy/cffi/verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/cffi/verifier.py -------------------------------------------------------------------------------- /lib_pypy/ctypes_config_cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib_pypy/ctypes_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/ctypes_support.py -------------------------------------------------------------------------------- /lib_pypy/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/datetime.py -------------------------------------------------------------------------------- /lib_pypy/dbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/dbm.py -------------------------------------------------------------------------------- /lib_pypy/future_builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/future_builtins.py -------------------------------------------------------------------------------- /lib_pypy/gdbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/gdbm.py -------------------------------------------------------------------------------- /lib_pypy/greenlet.egg-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/greenlet.egg-info -------------------------------------------------------------------------------- /lib_pypy/greenlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/greenlet.py -------------------------------------------------------------------------------- /lib_pypy/grp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/grp.py -------------------------------------------------------------------------------- /lib_pypy/identity_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/identity_dict.py -------------------------------------------------------------------------------- /lib_pypy/marshal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/marshal.py -------------------------------------------------------------------------------- /lib_pypy/msvcrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/msvcrt.py -------------------------------------------------------------------------------- /lib_pypy/pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/pwd.py -------------------------------------------------------------------------------- /lib_pypy/pyrepl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/pyrepl/__init__.py -------------------------------------------------------------------------------- /lib_pypy/pyrepl/cmdrepl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/pyrepl/cmdrepl.py -------------------------------------------------------------------------------- /lib_pypy/pyrepl/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/pyrepl/commands.py -------------------------------------------------------------------------------- /lib_pypy/pyrepl/completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/pyrepl/completer.py -------------------------------------------------------------------------------- /lib_pypy/pyrepl/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/pyrepl/console.py -------------------------------------------------------------------------------- /lib_pypy/pyrepl/copy_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/pyrepl/copy_code.py -------------------------------------------------------------------------------- /lib_pypy/pyrepl/curses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/pyrepl/curses.py -------------------------------------------------------------------------------- /lib_pypy/pyrepl/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/pyrepl/input.py -------------------------------------------------------------------------------- /lib_pypy/pyrepl/keymap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/pyrepl/keymap.py -------------------------------------------------------------------------------- /lib_pypy/pyrepl/keymaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/pyrepl/keymaps.py -------------------------------------------------------------------------------- /lib_pypy/pyrepl/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/pyrepl/reader.py -------------------------------------------------------------------------------- /lib_pypy/pyrepl/readline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/pyrepl/readline.py -------------------------------------------------------------------------------- /lib_pypy/readline.egg-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/readline.egg-info -------------------------------------------------------------------------------- /lib_pypy/readline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/readline.py -------------------------------------------------------------------------------- /lib_pypy/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/resource.py -------------------------------------------------------------------------------- /lib_pypy/stackless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/stackless.py -------------------------------------------------------------------------------- /lib_pypy/syslog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/syslog.py -------------------------------------------------------------------------------- /lib_pypy/testcapi_long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/testcapi_long.h -------------------------------------------------------------------------------- /lib_pypy/tputil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/lib_pypy/tputil.py -------------------------------------------------------------------------------- /py/README-BEFORE-UPDATING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/README-BEFORE-UPDATING -------------------------------------------------------------------------------- /py/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/__init__.py -------------------------------------------------------------------------------- /py/__metainfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/__metainfo.py -------------------------------------------------------------------------------- /py/_apipkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_apipkg.py -------------------------------------------------------------------------------- /py/_builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_builtin.py -------------------------------------------------------------------------------- /py/_code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_code/__init__.py -------------------------------------------------------------------------------- /py/_code/_assertionnew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_code/_assertionnew.py -------------------------------------------------------------------------------- /py/_code/_assertionold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_code/_assertionold.py -------------------------------------------------------------------------------- /py/_code/_py2traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_code/_py2traceback.py -------------------------------------------------------------------------------- /py/_code/assertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_code/assertion.py -------------------------------------------------------------------------------- /py/_code/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_code/code.py -------------------------------------------------------------------------------- /py/_code/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_code/source.py -------------------------------------------------------------------------------- /py/_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_error.py -------------------------------------------------------------------------------- /py/_iniconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_iniconfig.py -------------------------------------------------------------------------------- /py/_io/__init__.py: -------------------------------------------------------------------------------- 1 | """ input/output helping """ 2 | -------------------------------------------------------------------------------- /py/_io/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_io/capture.py -------------------------------------------------------------------------------- /py/_io/saferepr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_io/saferepr.py -------------------------------------------------------------------------------- /py/_io/terminalwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_io/terminalwriter.py -------------------------------------------------------------------------------- /py/_log/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_log/__init__.py -------------------------------------------------------------------------------- /py/_log/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_log/log.py -------------------------------------------------------------------------------- /py/_log/warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_log/warning.py -------------------------------------------------------------------------------- /py/_path/__init__.py: -------------------------------------------------------------------------------- 1 | """ unified file system api """ 2 | -------------------------------------------------------------------------------- /py/_path/cacheutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_path/cacheutil.py -------------------------------------------------------------------------------- /py/_path/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_path/common.py -------------------------------------------------------------------------------- /py/_path/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_path/local.py -------------------------------------------------------------------------------- /py/_path/svnurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_path/svnurl.py -------------------------------------------------------------------------------- /py/_path/svnwc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_path/svnwc.py -------------------------------------------------------------------------------- /py/_process/__init__.py: -------------------------------------------------------------------------------- 1 | """ high-level sub-process handling """ 2 | -------------------------------------------------------------------------------- /py/_process/cmdexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_process/cmdexec.py -------------------------------------------------------------------------------- /py/_process/forkedfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_process/forkedfunc.py -------------------------------------------------------------------------------- /py/_process/killproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_process/killproc.py -------------------------------------------------------------------------------- /py/_std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_std.py -------------------------------------------------------------------------------- /py/_xmlgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/_xmlgen.py -------------------------------------------------------------------------------- /py/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/py/test.py -------------------------------------------------------------------------------- /pypy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/__init__.py -------------------------------------------------------------------------------- /pypy/bin/checkmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/bin/checkmodule.py -------------------------------------------------------------------------------- /pypy/bin/dotviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/bin/dotviewer.py -------------------------------------------------------------------------------- /pypy/bin/pyinteractive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/bin/pyinteractive.py -------------------------------------------------------------------------------- /pypy/bin/pypy_interact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/bin/pypy_interact -------------------------------------------------------------------------------- /pypy/bin/reportstaticdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/bin/reportstaticdata.py -------------------------------------------------------------------------------- /pypy/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/config/makerestdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/config/makerestdoc.py -------------------------------------------------------------------------------- /pypy/config/pypyoption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/config/pypyoption.py -------------------------------------------------------------------------------- /pypy/config/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/conftest.py -------------------------------------------------------------------------------- /pypy/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/Makefile -------------------------------------------------------------------------------- /pypy/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/TODO -------------------------------------------------------------------------------- /pypy/doc/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pypy/doc/__pypy__-module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/__pypy__-module.rst -------------------------------------------------------------------------------- /pypy/doc/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/architecture.rst -------------------------------------------------------------------------------- /pypy/doc/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/build.rst -------------------------------------------------------------------------------- /pypy/doc/coding-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/coding-guide.rst -------------------------------------------------------------------------------- /pypy/doc/commandline_ref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/commandline_ref.rst -------------------------------------------------------------------------------- /pypy/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/conf.py -------------------------------------------------------------------------------- /pypy/doc/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/doc/config/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/config/generate.py -------------------------------------------------------------------------------- /pypy/doc/config/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/config/index.rst -------------------------------------------------------------------------------- /pypy/doc/config/objspace.honor__builtins__.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.std.optimized_list_getitem.txt: -------------------------------------------------------------------------------- 1 | Optimized list[int] a bit. 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.std.prebuiltintfrom.txt: -------------------------------------------------------------------------------- 1 | see :config:`objspace.std.withprebuiltint`. 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.std.prebuiltintto.txt: -------------------------------------------------------------------------------- 1 | See :config:`objspace.std.withprebuiltint`. 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.std.sharesmallstr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.std.txt: -------------------------------------------------------------------------------- 1 | .. intentionally empty 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.std.withprebuiltchar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.std.withsmalltuple.txt: -------------------------------------------------------------------------------- 1 | Use small tuple objects for sizes from 1 to 3 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.txt: -------------------------------------------------------------------------------- 1 | .. intentionally empty 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.usemodules._cffi_backend.txt: -------------------------------------------------------------------------------- 1 | Core of CFFI (http://cffi.readthedocs.org) 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.usemodules._lsprof.txt: -------------------------------------------------------------------------------- 1 | Use the '_lsprof' module. 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.usemodules._pypyjson.txt: -------------------------------------------------------------------------------- 1 | RPython speedups for the stdlib json module 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.usemodules._vmprof.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.usemodules.binascii.txt: -------------------------------------------------------------------------------- 1 | Use the RPython 'binascii' module. 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.usemodules.cppyy.txt: -------------------------------------------------------------------------------- 1 | Use the 'cppyy' module 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.usemodules.pyexpat.txt: -------------------------------------------------------------------------------- 1 | Use the pyexpat module, written in RPython. 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.usemodules.pypyjit.txt: -------------------------------------------------------------------------------- 1 | Use the 'pypyjit' module. 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.usemodules.thread.txt: -------------------------------------------------------------------------------- 1 | Use the 'thread' module. 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.usemodules.time.txt: -------------------------------------------------------------------------------- 1 | Use the 'time' module. 2 | -------------------------------------------------------------------------------- /pypy/doc/config/objspace.usemodules.txt: -------------------------------------------------------------------------------- 1 | .. intentionally empty 2 | -------------------------------------------------------------------------------- /pypy/doc/config/opt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/config/opt.rst -------------------------------------------------------------------------------- /pypy/doc/config/translation.backendopt.none.txt: -------------------------------------------------------------------------------- 1 | Do not run any backend optimizations. 2 | -------------------------------------------------------------------------------- /pypy/doc/config/translation.backendopt.really_remove_asserts.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/doc/config/translation.backendopt.storesink.txt: -------------------------------------------------------------------------------- 1 | Store sinking optimization. On by default. 2 | -------------------------------------------------------------------------------- /pypy/doc/config/translation.cc.txt: -------------------------------------------------------------------------------- 1 | Specify which C compiler to use. 2 | -------------------------------------------------------------------------------- /pypy/doc/config/translation.cli.txt: -------------------------------------------------------------------------------- 1 | .. intentionally empty 2 | -------------------------------------------------------------------------------- /pypy/doc/config/translation.gctransformer.txt: -------------------------------------------------------------------------------- 1 | internal option 2 | -------------------------------------------------------------------------------- /pypy/doc/config/translation.icon.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/doc/config/translation.jit_profiler.txt: -------------------------------------------------------------------------------- 1 | Integrate profiler support into the JIT 2 | -------------------------------------------------------------------------------- /pypy/doc/config/translation.lldebug.txt: -------------------------------------------------------------------------------- 1 | Run make lldebug when source is ready 2 | -------------------------------------------------------------------------------- /pypy/doc/config/translation.lldebug0.txt: -------------------------------------------------------------------------------- 1 | Like lldebug, but in addition compile C files with -O0 2 | -------------------------------------------------------------------------------- /pypy/doc/config/translation.noprofopt.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/doc/config/translation.txt: -------------------------------------------------------------------------------- 1 | .. intentionally empty 2 | -------------------------------------------------------------------------------- /pypy/doc/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/configuration.rst -------------------------------------------------------------------------------- /pypy/doc/contributor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/contributor.rst -------------------------------------------------------------------------------- /pypy/doc/cppyy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/cppyy.rst -------------------------------------------------------------------------------- /pypy/doc/cppyy_backend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/cppyy_backend.rst -------------------------------------------------------------------------------- /pypy/doc/cppyy_example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/cppyy_example.rst -------------------------------------------------------------------------------- /pypy/doc/dev_method.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/dev_method.rst -------------------------------------------------------------------------------- /pypy/doc/dir-reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/dir-reference.rst -------------------------------------------------------------------------------- /pypy/doc/discussions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/discussions.rst -------------------------------------------------------------------------------- /pypy/doc/embedding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/embedding.rst -------------------------------------------------------------------------------- /pypy/doc/eventhistory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/eventhistory.rst -------------------------------------------------------------------------------- /pypy/doc/extending.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/extending.rst -------------------------------------------------------------------------------- /pypy/doc/extradoc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/extradoc.rst -------------------------------------------------------------------------------- /pypy/doc/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/faq.rst -------------------------------------------------------------------------------- /pypy/doc/gc_info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/gc_info.rst -------------------------------------------------------------------------------- /pypy/doc/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/glossary.rst -------------------------------------------------------------------------------- /pypy/doc/how-to-release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/how-to-release.rst -------------------------------------------------------------------------------- /pypy/doc/image/JIT.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/image/JIT.dot -------------------------------------------------------------------------------- /pypy/doc/image/jitviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/image/jitviewer.png -------------------------------------------------------------------------------- /pypy/doc/image/lattice1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/image/lattice1.dot -------------------------------------------------------------------------------- /pypy/doc/image/lattice2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/image/lattice2.dot -------------------------------------------------------------------------------- /pypy/doc/image/lattice3.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/image/lattice3.dot -------------------------------------------------------------------------------- /pypy/doc/image/stackless.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/image/stackless.dot -------------------------------------------------------------------------------- /pypy/doc/index-report.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/index-report.rst -------------------------------------------------------------------------------- /pypy/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/index.rst -------------------------------------------------------------------------------- /pypy/doc/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/install.rst -------------------------------------------------------------------------------- /pypy/doc/interpreter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/interpreter.rst -------------------------------------------------------------------------------- /pypy/doc/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/introduction.rst -------------------------------------------------------------------------------- /pypy/doc/jit-hooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/jit-hooks.rst -------------------------------------------------------------------------------- /pypy/doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/make.bat -------------------------------------------------------------------------------- /pypy/doc/man/pypy.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/man/pypy.1.rst -------------------------------------------------------------------------------- /pypy/doc/objspace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/objspace.rst -------------------------------------------------------------------------------- /pypy/doc/parse_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/parse_logs.py -------------------------------------------------------------------------------- /pypy/doc/parser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/parser.rst -------------------------------------------------------------------------------- /pypy/doc/project-ideas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/project-ideas.rst -------------------------------------------------------------------------------- /pypy/doc/pypyconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/pypyconfig.py -------------------------------------------------------------------------------- /pypy/doc/release-0.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-0.6.rst -------------------------------------------------------------------------------- /pypy/doc/release-0.7.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-0.7.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-0.8.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-0.8.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-0.9.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-0.9.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-0.99.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-0.99.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-1.0.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-1.0.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-1.1.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-1.1.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-1.2.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-1.2.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-1.3.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-1.3.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-1.4.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-1.4.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-1.4.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-1.4.1.rst -------------------------------------------------------------------------------- /pypy/doc/release-1.5.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-1.5.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-1.6.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-1.6.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-1.7.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-1.7.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-1.8.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-1.8.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-1.9.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-1.9.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-2.0.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-2.0.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-2.0.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-2.0.1.rst -------------------------------------------------------------------------------- /pypy/doc/release-2.0.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-2.0.2.rst -------------------------------------------------------------------------------- /pypy/doc/release-2.1.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-2.1.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-2.2.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-2.2.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-2.2.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-2.2.1.rst -------------------------------------------------------------------------------- /pypy/doc/release-2.3.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-2.3.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-2.3.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-2.3.1.rst -------------------------------------------------------------------------------- /pypy/doc/release-2.4.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-2.4.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-2.5.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-2.5.0.rst -------------------------------------------------------------------------------- /pypy/doc/release-2.5.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-2.5.1.rst -------------------------------------------------------------------------------- /pypy/doc/release-2.6.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/release-2.6.0.rst -------------------------------------------------------------------------------- /pypy/doc/sandbox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/sandbox.rst -------------------------------------------------------------------------------- /pypy/doc/sprint-reports.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/sprint-reports.rst -------------------------------------------------------------------------------- /pypy/doc/stackless.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/stackless.rst -------------------------------------------------------------------------------- /pypy/doc/stm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/stm.rst -------------------------------------------------------------------------------- /pypy/doc/tool/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pypy/doc/tool/mydot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/tool/mydot.py -------------------------------------------------------------------------------- /pypy/doc/video-index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/video-index.rst -------------------------------------------------------------------------------- /pypy/doc/whatsnew-1.9.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/whatsnew-1.9.rst -------------------------------------------------------------------------------- /pypy/doc/whatsnew-2.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/whatsnew-2.0.rst -------------------------------------------------------------------------------- /pypy/doc/whatsnew-2.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/whatsnew-2.1.rst -------------------------------------------------------------------------------- /pypy/doc/whatsnew-2.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/whatsnew-2.2.rst -------------------------------------------------------------------------------- /pypy/doc/whatsnew-2.3.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/whatsnew-2.3.0.rst -------------------------------------------------------------------------------- /pypy/doc/whatsnew-2.3.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/whatsnew-2.3.1.rst -------------------------------------------------------------------------------- /pypy/doc/whatsnew-2.4.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/whatsnew-2.4.0.rst -------------------------------------------------------------------------------- /pypy/doc/whatsnew-2.5.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/whatsnew-2.5.0.rst -------------------------------------------------------------------------------- /pypy/doc/whatsnew-2.5.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/whatsnew-2.5.1.rst -------------------------------------------------------------------------------- /pypy/doc/whatsnew-2.6.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/whatsnew-2.6.0.rst -------------------------------------------------------------------------------- /pypy/doc/whatsnew-head.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/whatsnew-head.rst -------------------------------------------------------------------------------- /pypy/doc/windows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/doc/windows.rst -------------------------------------------------------------------------------- /pypy/goal/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /pypy/goal/getnightly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/goal/getnightly.py -------------------------------------------------------------------------------- /pypy/goal/pypy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/goal/pypy.ico -------------------------------------------------------------------------------- /pypy/interpreter/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /pypy/interpreter/app_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/app_main.py -------------------------------------------------------------------------------- /pypy/interpreter/argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/argument.py -------------------------------------------------------------------------------- /pypy/interpreter/astcompiler/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /pypy/interpreter/astcompiler/test/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /pypy/interpreter/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/debug.py -------------------------------------------------------------------------------- /pypy/interpreter/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/error.py -------------------------------------------------------------------------------- /pypy/interpreter/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/eval.py -------------------------------------------------------------------------------- /pypy/interpreter/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/function.py -------------------------------------------------------------------------------- /pypy/interpreter/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/gateway.py -------------------------------------------------------------------------------- /pypy/interpreter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/main.py -------------------------------------------------------------------------------- /pypy/interpreter/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/module.py -------------------------------------------------------------------------------- /pypy/interpreter/pycode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/pycode.py -------------------------------------------------------------------------------- /pypy/interpreter/pyframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/pyframe.py -------------------------------------------------------------------------------- /pypy/interpreter/pyopcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/pyopcode.py -------------------------------------------------------------------------------- /pypy/interpreter/pyparser/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /pypy/interpreter/pyparser/test/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pypy/interpreter/special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/special.py -------------------------------------------------------------------------------- /pypy/interpreter/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/interpreter/test/demomixedmod/file2_app.py: -------------------------------------------------------------------------------- 1 | 2 | def someappfunc(x): 3 | return x + 1 4 | -------------------------------------------------------------------------------- /pypy/interpreter/test/s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/test/s1.py -------------------------------------------------------------------------------- /pypy/interpreter/typedef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/interpreter/typedef.py -------------------------------------------------------------------------------- /pypy/module/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/README.txt -------------------------------------------------------------------------------- /pypy/module/__builtin__/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /pypy/module/__pypy__/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pypy/module/_ast/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/_ast/__init__.py -------------------------------------------------------------------------------- /pypy/module/_ast/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_cffi_backend/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_codecs/test/__init__.py: -------------------------------------------------------------------------------- 1 | # empty -------------------------------------------------------------------------------- /pypy/module/_collections/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_continuation/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_csv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/_csv/__init__.py -------------------------------------------------------------------------------- /pypy/module/_csv/app_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/_csv/app_csv.py -------------------------------------------------------------------------------- /pypy/module/_csv/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/_demo/demo.py -------------------------------------------------------------------------------- /pypy/module/_demo/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pypy/module/_file/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/_io/__init__.py -------------------------------------------------------------------------------- /pypy/module/_io/interp_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/_io/interp_io.py -------------------------------------------------------------------------------- /pypy/module/_io/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_lsprof/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_md5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/_md5/__init__.py -------------------------------------------------------------------------------- /pypy/module/_minimal_curses/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_multibytecodec/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pypy/module/_multiprocessing/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_random/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_rawffi/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/_rawffi/TODO -------------------------------------------------------------------------------- /pypy/module/_rawffi/alt/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_rawffi/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/_rawffi/array.py -------------------------------------------------------------------------------- /pypy/module/_rawffi/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_sha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/_sha/__init__.py -------------------------------------------------------------------------------- /pypy/module/_socket/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_sre/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/_sre/__init__.py -------------------------------------------------------------------------------- /pypy/module/_ssl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/_ssl/__init__.py -------------------------------------------------------------------------------- /pypy/module/_ssl/ssl_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/_ssl/ssl_data.py -------------------------------------------------------------------------------- /pypy/module/_ssl/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/_vmprof/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/array/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pypy/module/bz2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/bz2/__init__.py -------------------------------------------------------------------------------- /pypy/module/bz2/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/cStringIO/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/cppyy/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/cppyy/helper.py -------------------------------------------------------------------------------- /pypy/module/cppyy/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/cpyext/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/cpyext/TODO -------------------------------------------------------------------------------- /pypy/module/cpyext/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/cpyext/api.py -------------------------------------------------------------------------------- /pypy/module/cpyext/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/cpyext/buffer.py -------------------------------------------------------------------------------- /pypy/module/cpyext/c-api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/cpyext/c-api.txt -------------------------------------------------------------------------------- /pypy/module/cpyext/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/cpyext/codecs.py -------------------------------------------------------------------------------- /pypy/module/cpyext/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/cpyext/eval.py -------------------------------------------------------------------------------- /pypy/module/cpyext/include/abstract.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /pypy/module/cpyext/include/ceval.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /pypy/module/cpyext/include/fileobject.h: -------------------------------------------------------------------------------- 1 | #define Py_FileSystemDefaultEncoding NULL 2 | -------------------------------------------------------------------------------- /pypy/module/cpyext/include/import.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /pypy/module/cpyext/include/longintrepr.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /pypy/module/cpyext/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/cpyext/number.py -------------------------------------------------------------------------------- /pypy/module/cpyext/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/cpyext/object.py -------------------------------------------------------------------------------- /pypy/module/cpyext/pyfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/cpyext/pyfile.py -------------------------------------------------------------------------------- /pypy/module/cpyext/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/cpyext/state.py -------------------------------------------------------------------------------- /pypy/module/cpyext/stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/cpyext/stubs.py -------------------------------------------------------------------------------- /pypy/module/cpyext/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/crypt/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pypy/module/exceptions/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/gc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/gc/__init__.py -------------------------------------------------------------------------------- /pypy/module/gc/interp_gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/gc/interp_gc.py -------------------------------------------------------------------------------- /pypy/module/gc/referents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/gc/referents.py -------------------------------------------------------------------------------- /pypy/module/gc/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/imp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/imp/__init__.py -------------------------------------------------------------------------------- /pypy/module/imp/importing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/imp/importing.py -------------------------------------------------------------------------------- /pypy/module/imp/test/hooktest/foo.py: -------------------------------------------------------------------------------- 1 | import errno # Any existing toplevel module 2 | -------------------------------------------------------------------------------- /pypy/module/itertools/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/js/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/js/__init__.py -------------------------------------------------------------------------------- /pypy/module/js/interp_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/js/interp_js.py -------------------------------------------------------------------------------- /pypy/module/js/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/js/support.py -------------------------------------------------------------------------------- /pypy/module/js/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/math/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/math/__init__.py -------------------------------------------------------------------------------- /pypy/module/math/app_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/math/app_math.py -------------------------------------------------------------------------------- /pypy/module/math/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/micronumpy/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/micronumpy/tool/numready/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/mmap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/mmap/__init__.py -------------------------------------------------------------------------------- /pypy/module/operator/tscmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/operator/tscmp.c -------------------------------------------------------------------------------- /pypy/module/operator/tscmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/operator/tscmp.h -------------------------------------------------------------------------------- /pypy/module/parser/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/posix/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/pwd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/pwd/__init__.py -------------------------------------------------------------------------------- /pypy/module/pwd/app_pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/pwd/app_pwd.py -------------------------------------------------------------------------------- /pypy/module/pwd/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/pyexpat/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/pypyjit/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/pypyjit/hooks.py -------------------------------------------------------------------------------- /pypy/module/pypyjit/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pypy/module/pypyjit/test_pypy_c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/select/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/signal/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/struct/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/sys/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/sys/__init__.py -------------------------------------------------------------------------------- /pypy/module/sys/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/sys/app.py -------------------------------------------------------------------------------- /pypy/module/sys/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/sys/hook.py -------------------------------------------------------------------------------- /pypy/module/sys/initpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/sys/initpath.py -------------------------------------------------------------------------------- /pypy/module/sys/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/sys/state.py -------------------------------------------------------------------------------- /pypy/module/sys/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/sys/system.py -------------------------------------------------------------------------------- /pypy/module/sys/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/sys/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/sys/version.py -------------------------------------------------------------------------------- /pypy/module/sys/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/sys/vm.py -------------------------------------------------------------------------------- /pypy/module/test_lib_pypy/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pypy/module/test_lib_pypy/cffi_tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Generated by pypy/tool/import_cffi.py 2 | -------------------------------------------------------------------------------- /pypy/module/test_lib_pypy/cffi_tests/cffi0/__init__.py: -------------------------------------------------------------------------------- 1 | # Generated by pypy/tool/import_cffi.py 2 | -------------------------------------------------------------------------------- /pypy/module/test_lib_pypy/cffi_tests/cffi1/__init__.py: -------------------------------------------------------------------------------- 1 | # Generated by pypy/tool/import_cffi.py 2 | -------------------------------------------------------------------------------- /pypy/module/test_lib_pypy/ctypes_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/thread/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/thread/error.py -------------------------------------------------------------------------------- /pypy/module/thread/gil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/thread/gil.py -------------------------------------------------------------------------------- /pypy/module/thread/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pypy/module/time/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/time/__init__.py -------------------------------------------------------------------------------- /pypy/module/time/app_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/time/app_time.py -------------------------------------------------------------------------------- /pypy/module/zipimport/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/module/zlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/module/zlib/__init__.py -------------------------------------------------------------------------------- /pypy/objspace/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /pypy/objspace/fake/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/objspace/std/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/objspace/std/frame.py -------------------------------------------------------------------------------- /pypy/objspace/std/mapdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/objspace/std/mapdict.py -------------------------------------------------------------------------------- /pypy/objspace/std/test/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /pypy/objspace/std/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/objspace/std/util.py -------------------------------------------------------------------------------- /pypy/objspace/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pypy/pytest-A.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/pytest-A.cfg -------------------------------------------------------------------------------- /pypy/pytest-A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/pytest-A.py -------------------------------------------------------------------------------- /pypy/sandbox/__init__.py: -------------------------------------------------------------------------------- 1 | # empty -------------------------------------------------------------------------------- /pypy/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/test_all.py -------------------------------------------------------------------------------- /pypy/testrunner_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/testrunner_cfg.py -------------------------------------------------------------------------------- /pypy/tool/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /pypy/tool/alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/alarm.py -------------------------------------------------------------------------------- /pypy/tool/ann_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/ann_override.py -------------------------------------------------------------------------------- /pypy/tool/asterisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/asterisk.py -------------------------------------------------------------------------------- /pypy/tool/bench/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pypy/tool/bench/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/bench/result.py -------------------------------------------------------------------------------- /pypy/tool/bench/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pypy/tool/difftime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/difftime.py -------------------------------------------------------------------------------- /pypy/tool/gcdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/gcdump.py -------------------------------------------------------------------------------- /pypy/tool/gdb_pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/gdb_pypy.py -------------------------------------------------------------------------------- /pypy/tool/genstatistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/genstatistic.py -------------------------------------------------------------------------------- /pypy/tool/getdocstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/getdocstrings.py -------------------------------------------------------------------------------- /pypy/tool/import_cffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/import_cffi.py -------------------------------------------------------------------------------- /pypy/tool/import_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/import_graph.py -------------------------------------------------------------------------------- /pypy/tool/importfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/importfun.py -------------------------------------------------------------------------------- /pypy/tool/isolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/isolate.py -------------------------------------------------------------------------------- /pypy/tool/isolate_slave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/isolate_slave.py -------------------------------------------------------------------------------- /pypy/tool/lib_pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/lib_pypy.py -------------------------------------------------------------------------------- /pypy/tool/memusage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/tool/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/option.py -------------------------------------------------------------------------------- /pypy/tool/py.cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/py.cleanup -------------------------------------------------------------------------------- /pypy/tool/pydis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/pydis.py -------------------------------------------------------------------------------- /pypy/tool/pypyjit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/pypyjit.py -------------------------------------------------------------------------------- /pypy/tool/pypyjit_child.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/pypyjit_child.py -------------------------------------------------------------------------------- /pypy/tool/pypyjit_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/pypyjit_demo.py -------------------------------------------------------------------------------- /pypy/tool/pypyrev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/pypyrev.py -------------------------------------------------------------------------------- /pypy/tool/pytest/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /pypy/tool/pytest/apptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/pytest/apptest.py -------------------------------------------------------------------------------- /pypy/tool/pytest/confpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/pytest/confpath.py -------------------------------------------------------------------------------- /pypy/tool/pytest/inttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/pytest/inttest.py -------------------------------------------------------------------------------- /pypy/tool/pytest/objspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/pytest/objspace.py -------------------------------------------------------------------------------- /pypy/tool/pytest/overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/pytest/overview.py -------------------------------------------------------------------------------- /pypy/tool/pytest/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/pytest/result.py -------------------------------------------------------------------------------- /pypy/tool/pytest/test/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /pypy/tool/release/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/tool/release/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/release/package.py -------------------------------------------------------------------------------- /pypy/tool/release/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/tool/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/tool/rest/directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/rest/directive.py -------------------------------------------------------------------------------- /pypy/tool/rest/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/rest/rest.py -------------------------------------------------------------------------------- /pypy/tool/rest/rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/rest/rst.py -------------------------------------------------------------------------------- /pypy/tool/slaveproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/slaveproc.py -------------------------------------------------------------------------------- /pypy/tool/stdlib_opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/stdlib_opcode.py -------------------------------------------------------------------------------- /pypy/tool/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypy/tool/test/test_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/test/test_tab.py -------------------------------------------------------------------------------- /pypy/tool/traceconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/traceconfig.py -------------------------------------------------------------------------------- /pypy/tool/unicodefuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pypy/tool/unicodefuzzer.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = --assert=reinterp -rf 3 | -------------------------------------------------------------------------------- /pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pytest.py -------------------------------------------------------------------------------- /pytest_cov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/pytest_cov.py -------------------------------------------------------------------------------- /rpython/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/__main__.py -------------------------------------------------------------------------------- /rpython/annotator/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/annotator/builtin.py -------------------------------------------------------------------------------- /rpython/annotator/dictdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/annotator/dictdef.py -------------------------------------------------------------------------------- /rpython/annotator/listdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/annotator/listdef.py -------------------------------------------------------------------------------- /rpython/annotator/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/annotator/model.py -------------------------------------------------------------------------------- /rpython/annotator/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/annotator/policy.py -------------------------------------------------------------------------------- /rpython/annotator/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/bin/rpython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/bin/rpython -------------------------------------------------------------------------------- /rpython/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/config/config.py -------------------------------------------------------------------------------- /rpython/config/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/config/parse.py -------------------------------------------------------------------------------- /rpython/config/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/config/support.py -------------------------------------------------------------------------------- /rpython/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/conftest.py -------------------------------------------------------------------------------- /rpython/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/doc/Makefile -------------------------------------------------------------------------------- /rpython/doc/arm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/doc/arm.rst -------------------------------------------------------------------------------- /rpython/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/doc/conf.py -------------------------------------------------------------------------------- /rpython/doc/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/doc/faq.rst -------------------------------------------------------------------------------- /rpython/doc/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/doc/glossary.rst -------------------------------------------------------------------------------- /rpython/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/doc/index.rst -------------------------------------------------------------------------------- /rpython/doc/jit/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/doc/jit/index.rst -------------------------------------------------------------------------------- /rpython/doc/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/doc/logging.rst -------------------------------------------------------------------------------- /rpython/doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/doc/make.bat -------------------------------------------------------------------------------- /rpython/doc/rffi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/doc/rffi.rst -------------------------------------------------------------------------------- /rpython/doc/rlib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/doc/rlib.rst -------------------------------------------------------------------------------- /rpython/doc/rpython.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/doc/rpython.rst -------------------------------------------------------------------------------- /rpython/doc/rtyper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/doc/rtyper.rst -------------------------------------------------------------------------------- /rpython/flowspace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/flowspace/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty 2 | -------------------------------------------------------------------------------- /rpython/jit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/arm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/arm/helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/arm/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/arm/tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/asmjs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/asmjs/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/llgraph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/llgraph/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/llsupport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/llsupport/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/x86/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/x86/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/backend/x86/tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/codewriter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/codewriter/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/jit/conftest.py -------------------------------------------------------------------------------- /rpython/jit/metainterp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/metainterp/optimizeopt/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/metainterp/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/tl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/tl/fibo.tlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/jit/tl/fibo.tlc -------------------------------------------------------------------------------- /rpython/jit/tl/grep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/jit/tl/grep.py -------------------------------------------------------------------------------- /rpython/jit/tl/jittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/jit/tl/jittest.py -------------------------------------------------------------------------------- /rpython/jit/tl/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/tl/tiny1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/jit/tl/tiny1.py -------------------------------------------------------------------------------- /rpython/jit/tl/tiny2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/jit/tl/tiny2.py -------------------------------------------------------------------------------- /rpython/jit/tl/tinyframe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/tl/tl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/jit/tl/tl.py -------------------------------------------------------------------------------- /rpython/jit/tl/tla/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/tl/tla/tla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/jit/tl/tla/tla.py -------------------------------------------------------------------------------- /rpython/jit/tl/tlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/jit/tl/tlc.py -------------------------------------------------------------------------------- /rpython/jit/tl/tlr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/jit/tl/tlr.py -------------------------------------------------------------------------------- /rpython/jit/tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/jit/tool/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/memory/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /rpython/memory/gc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/memory/gc/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/memory/gc/base.py -------------------------------------------------------------------------------- /rpython/memory/gc/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/memory/gc/env.py -------------------------------------------------------------------------------- /rpython/memory/gc/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/memory/gctransform/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /rpython/memory/gctransform/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /rpython/memory/lldict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/memory/lldict.py -------------------------------------------------------------------------------- /rpython/memory/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/memory/support.py -------------------------------------------------------------------------------- /rpython/memory/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /rpython/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = --assert=reinterp -rf 3 | -------------------------------------------------------------------------------- /rpython/rlib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/rlib/_jit_vref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/_jit_vref.py -------------------------------------------------------------------------------- /rpython/rlib/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/buffer.py -------------------------------------------------------------------------------- /rpython/rlib/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/cache.py -------------------------------------------------------------------------------- /rpython/rlib/clibffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/clibffi.py -------------------------------------------------------------------------------- /rpython/rlib/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/constant.py -------------------------------------------------------------------------------- /rpython/rlib/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/copyright -------------------------------------------------------------------------------- /rpython/rlib/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/debug.py -------------------------------------------------------------------------------- /rpython/rlib/exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/exports.py -------------------------------------------------------------------------------- /rpython/rlib/jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/jit.py -------------------------------------------------------------------------------- /rpython/rlib/jit_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/jit_hooks.py -------------------------------------------------------------------------------- /rpython/rlib/libffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/libffi.py -------------------------------------------------------------------------------- /rpython/rlib/listsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/listsort.py -------------------------------------------------------------------------------- /rpython/rlib/nonconst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/nonconst.py -------------------------------------------------------------------------------- /rpython/rlib/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/rlib/parsing/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/rlib/rStringIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rStringIO.py -------------------------------------------------------------------------------- /rpython/rlib/rbigint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rbigint.py -------------------------------------------------------------------------------- /rpython/rlib/rbisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rbisect.py -------------------------------------------------------------------------------- /rpython/rlib/rcomplex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rcomplex.py -------------------------------------------------------------------------------- /rpython/rlib/rdtoa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rdtoa.py -------------------------------------------------------------------------------- /rpython/rlib/rdynload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rdynload.py -------------------------------------------------------------------------------- /rpython/rlib/rerased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rerased.py -------------------------------------------------------------------------------- /rpython/rlib/rfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rfile.py -------------------------------------------------------------------------------- /rpython/rlib/rfloat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rfloat.py -------------------------------------------------------------------------------- /rpython/rlib/rgc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rgc.py -------------------------------------------------------------------------------- /rpython/rlib/rgil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rgil.py -------------------------------------------------------------------------------- /rpython/rlib/rlocale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rlocale.py -------------------------------------------------------------------------------- /rpython/rlib/rmarshal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rmarshal.py -------------------------------------------------------------------------------- /rpython/rlib/rmd5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rmd5.py -------------------------------------------------------------------------------- /rpython/rlib/rmmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rmmap.py -------------------------------------------------------------------------------- /rpython/rlib/rope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rope.py -------------------------------------------------------------------------------- /rpython/rlib/ropenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/ropenssl.py -------------------------------------------------------------------------------- /rpython/rlib/rpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rpath.py -------------------------------------------------------------------------------- /rpython/rlib/rpoll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rpoll.py -------------------------------------------------------------------------------- /rpython/rlib/rposix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rposix.py -------------------------------------------------------------------------------- /rpython/rlib/rrandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rrandom.py -------------------------------------------------------------------------------- /rpython/rlib/rrawarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rrawarray.py -------------------------------------------------------------------------------- /rpython/rlib/rsha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rsha.py -------------------------------------------------------------------------------- /rpython/rlib/rsignal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rsignal.py -------------------------------------------------------------------------------- /rpython/rlib/rsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rsocket.py -------------------------------------------------------------------------------- /rpython/rlib/rsre/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/rlib/rsre/rpy/__init__.py: -------------------------------------------------------------------------------- 1 | from ._sre import get_code, VERSION 2 | -------------------------------------------------------------------------------- /rpython/rlib/rsre/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/rlib/rstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rstack.py -------------------------------------------------------------------------------- /rpython/rlib/rstacklet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rstacklet.py -------------------------------------------------------------------------------- /rpython/rlib/rstackovf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rstackovf.py -------------------------------------------------------------------------------- /rpython/rlib/rstrategies/__init__.py: -------------------------------------------------------------------------------- 1 | # Empy 2 | -------------------------------------------------------------------------------- /rpython/rlib/rstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rstring.py -------------------------------------------------------------------------------- /rpython/rlib/rstruct/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty 2 | -------------------------------------------------------------------------------- /rpython/rlib/rtermios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rtermios.py -------------------------------------------------------------------------------- /rpython/rlib/rthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rthread.py -------------------------------------------------------------------------------- /rpython/rlib/rtimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rtimer.py -------------------------------------------------------------------------------- /rpython/rlib/runicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/runicode.py -------------------------------------------------------------------------------- /rpython/rlib/rurandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rurandom.py -------------------------------------------------------------------------------- /rpython/rlib/rweaklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rweaklist.py -------------------------------------------------------------------------------- /rpython/rlib/rweakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rweakref.py -------------------------------------------------------------------------------- /rpython/rlib/rwin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rwin32.py -------------------------------------------------------------------------------- /rpython/rlib/rwinreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rwinreg.py -------------------------------------------------------------------------------- /rpython/rlib/rzipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rzipfile.py -------------------------------------------------------------------------------- /rpython/rlib/rzlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/rzlib.py -------------------------------------------------------------------------------- /rpython/rlib/signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/signature.py -------------------------------------------------------------------------------- /rpython/rlib/streamio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/streamio.py -------------------------------------------------------------------------------- /rpython/rlib/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/rlib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/types.py -------------------------------------------------------------------------------- /rpython/rlib/unroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rlib/unroll.py -------------------------------------------------------------------------------- /rpython/rtyper/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /rpython/rtyper/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/error.py -------------------------------------------------------------------------------- /rpython/rtyper/extfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/extfunc.py -------------------------------------------------------------------------------- /rpython/rtyper/lltypesystem/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/rtyper/lltypesystem/module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/rtyper/lltypesystem/module/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/rtyper/lltypesystem/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/rtyper/module/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /rpython/rtyper/module/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /rpython/rtyper/rbool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/rbool.py -------------------------------------------------------------------------------- /rpython/rtyper/rclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/rclass.py -------------------------------------------------------------------------------- /rpython/rtyper/rdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/rdict.py -------------------------------------------------------------------------------- /rpython/rtyper/rfloat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/rfloat.py -------------------------------------------------------------------------------- /rpython/rtyper/rint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/rint.py -------------------------------------------------------------------------------- /rpython/rtyper/rlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/rlist.py -------------------------------------------------------------------------------- /rpython/rtyper/rmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/rmodel.py -------------------------------------------------------------------------------- /rpython/rtyper/rnone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/rnone.py -------------------------------------------------------------------------------- /rpython/rtyper/rpbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/rpbc.py -------------------------------------------------------------------------------- /rpython/rtyper/rptr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/rptr.py -------------------------------------------------------------------------------- /rpython/rtyper/rrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/rrange.py -------------------------------------------------------------------------------- /rpython/rtyper/rstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/rstr.py -------------------------------------------------------------------------------- /rpython/rtyper/rtuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/rtuple.py -------------------------------------------------------------------------------- /rpython/rtyper/rtyper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/rtyper/rtyper.py -------------------------------------------------------------------------------- /rpython/rtyper/test/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /rpython/rtyper/tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/rtyper/tool/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/tool/algo/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /rpython/tool/algo/test/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /rpython/tool/ansicolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/tool/ansicolor.py -------------------------------------------------------------------------------- /rpython/tool/ansiramp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/tool/ansiramp.py -------------------------------------------------------------------------------- /rpython/tool/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/tool/error.py -------------------------------------------------------------------------------- /rpython/tool/gcanalyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/tool/gcanalyze.py -------------------------------------------------------------------------------- /rpython/tool/gcc_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/tool/gcc_cache.py -------------------------------------------------------------------------------- /rpython/tool/jitlogparser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/tool/jitlogparser/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/tool/logparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/tool/logparser.py -------------------------------------------------------------------------------- /rpython/tool/nullpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/tool/nullpath.py -------------------------------------------------------------------------------- /rpython/tool/pairtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/tool/pairtype.py -------------------------------------------------------------------------------- /rpython/tool/pytest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/tool/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/tool/terminal.py -------------------------------------------------------------------------------- /rpython/tool/udir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/tool/udir.py -------------------------------------------------------------------------------- /rpython/tool/uid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/tool/uid.py -------------------------------------------------------------------------------- /rpython/tool/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/tool/version.py -------------------------------------------------------------------------------- /rpython/tool/watchdog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/rpython/tool/watchdog.py -------------------------------------------------------------------------------- /rpython/translator/backendopt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/translator/backendopt/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/translator/c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/translator/c/gcc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/translator/c/gcc/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/translator/c/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/translator/goal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/translator/platform/emscripten_platform/gc/gc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/translator/platform/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/translator/platform/test/include/test.h: -------------------------------------------------------------------------------- 1 | #define XXX_STUFF 42 2 | -------------------------------------------------------------------------------- /rpython/translator/sandbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/translator/sandbox/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/translator/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rpython/translator/tool/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /rpython/translator/tool/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site-packages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/site-packages/README -------------------------------------------------------------------------------- /testrunner/filetimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/testrunner/filetimes.py -------------------------------------------------------------------------------- /testrunner/junitmerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/testrunner/junitmerge.py -------------------------------------------------------------------------------- /testrunner/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypyjs/pypy/HEAD/testrunner/runner.py -------------------------------------------------------------------------------- /testrunner/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testrunner/test/examples/normal/example_importerror.py: -------------------------------------------------------------------------------- 1 | print 1/0 2 | --------------------------------------------------------------------------------