├── .gitattributes ├── .github ├── CODEOWNERS ├── CONTRIBUTING.rst ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── codecov.yml ├── problem-matchers │ ├── gcc.json │ └── sphinx.json └── workflows │ ├── build.yml │ ├── build_msi.yml │ ├── coverage.yml │ ├── doc.yml │ └── posix-deps-apt.sh ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Grammar ├── Grammar ├── Tokens └── python.gram ├── Include ├── Python-ast.h ├── Python.h ├── abstract.h ├── asdl.h ├── ast.h ├── bltinmodule.h ├── boolobject.h ├── cellobject.h ├── ceval.h ├── classobject.h ├── code.h ├── compile.h ├── descrobject.h ├── dictobject.h ├── enumobject.h ├── errcode.h ├── eval.h ├── exports.h ├── fileobject.h ├── fileutils.h ├── floatobject.h ├── frameobject.h ├── funcobject.h ├── genobject.h ├── graminit.h ├── grammar.h ├── import.h ├── initconfig.h ├── internal │ ├── pegen_interface.h │ ├── pycore_abstract.h │ ├── pycore_accu.h │ ├── pycore_bitutils.h │ ├── pycore_call.h │ ├── pycore_ceval.h │ ├── pycore_code.h │ ├── pycore_fileutils.h │ ├── pycore_getopt.h │ ├── pycore_hashtable.h │ ├── pycore_import.h │ ├── pycore_initconfig.h │ ├── pycore_interp.h │ ├── pycore_object.h │ ├── pycore_pathconfig.h │ ├── pycore_pyerrors.h │ ├── pycore_pyhash.h │ ├── pycore_pylifecycle.h │ ├── pycore_pystate.h │ ├── pycore_runtime.h │ ├── pycore_sysmodule.h │ └── pycore_traceback.h ├── iterobject.h ├── listobject.h ├── longintrepr.h ├── longobject.h ├── methodobject.h ├── modsupport.h ├── moduleobject.h ├── node.h ├── object.h ├── objimpl.h ├── opcode.h ├── osdefs.h ├── osmodule.h ├── parsetok.h ├── patchlevel.h ├── pycapsule.h ├── pyctype.h ├── pydebug.h ├── pyerrors.h ├── pyframe.h ├── pyhash.h ├── pylifecycle.h ├── pymacconfig.h ├── pymacro.h ├── pymath.h ├── pymem.h ├── pyport.h ├── pystate.h ├── pystrcmp.h ├── pystrtod.h ├── pythonrun.h ├── rangeobject.h ├── setobject.h ├── sliceobject.h ├── structmember.h ├── structseq.h ├── symtable.h ├── sysmodule.h ├── token.h ├── traceback.h ├── tupleobject.h ├── typeslots.h ├── unicodeobject.h └── weakrefobject.h ├── LICENSE ├── Lib ├── __phello__.foo.py ├── genericpath.py ├── io.py ├── os.py ├── posixpath.py ├── site-packages │ └── README.txt ├── site.py ├── stat.py └── types.py ├── Makefile.pre.in ├── Misc ├── ACKS ├── HISTORY ├── NEWS.d │ ├── 3.5.0.rst │ ├── 3.5.0a1.rst │ ├── 3.5.0a2.rst │ ├── 3.5.0a3.rst │ ├── 3.5.0a4.rst │ ├── 3.5.0b1.rst │ ├── 3.5.0b2.rst │ ├── 3.5.0b3.rst │ ├── 3.5.0b4.rst │ ├── 3.5.0rc1.rst │ ├── 3.5.0rc2.rst │ ├── 3.5.0rc3.rst │ ├── 3.5.0rc4.rst │ ├── 3.5.1.rst │ ├── 3.5.1rc1.rst │ ├── 3.5.2.rst │ ├── 3.5.2rc1.rst │ ├── 3.5.3.rst │ ├── 3.5.3rc1.rst │ ├── 3.5.4.rst │ ├── 3.5.4rc1.rst │ ├── 3.5.5.rst │ ├── 3.5.5rc1.rst │ ├── 3.6.0.rst │ ├── 3.6.0a1.rst │ ├── 3.6.0a2.rst │ ├── 3.6.0a3.rst │ ├── 3.6.0a4.rst │ ├── 3.6.0b1.rst │ ├── 3.6.0b2.rst │ ├── 3.6.0b3.rst │ ├── 3.6.0b4.rst │ ├── 3.6.0rc1.rst │ ├── 3.6.0rc2.rst │ ├── 3.6.1.rst │ ├── 3.6.1rc1.rst │ ├── 3.6.2.rst │ ├── 3.6.2rc1.rst │ ├── 3.6.2rc2.rst │ ├── 3.6.3.rst │ ├── 3.6.3rc1.rst │ ├── 3.6.4.rst │ ├── 3.6.4rc1.rst │ ├── 3.6.5.rst │ ├── 3.6.5rc1.rst │ ├── 3.6.6.rst │ ├── 3.6.6rc1.rst │ ├── 3.7.0.rst │ ├── 3.7.0a1.rst │ ├── 3.7.0a2.rst │ ├── 3.7.0a3.rst │ ├── 3.7.0a4.rst │ ├── 3.7.0b1.rst │ ├── 3.7.0b2.rst │ ├── 3.7.0b3.rst │ ├── 3.7.0b4.rst │ ├── 3.7.0b5.rst │ ├── 3.7.0rc1.rst │ ├── 3.8.0a1.rst │ ├── 3.8.0a2.rst │ ├── 3.8.0a3.rst │ ├── 3.8.0a4.rst │ ├── 3.8.0b1.rst │ ├── 3.9.0a1.rst │ ├── 3.9.0a2.rst │ ├── 3.9.0a3.rst │ ├── 3.9.0a4.rst │ ├── 3.9.0a5.rst │ ├── 3.9.0a6.rst │ ├── 3.9.0b1.rst │ └── next │ │ ├── Build │ │ ├── 2020-05-19-10-54-08.bpo-40683.W8JHrr.rst │ │ ├── 2020-06-08-19-57-05.bpo-40684.WIY2-i.rst │ │ └── README.rst │ │ ├── C API │ │ ├── 2020-02-08-08-01-35.bpo-39583.qURKSl.rst │ │ ├── 2020-05-20-19-11-12.bpo-40703.qQXfW8.rst │ │ ├── 2020-05-26-16-21-47.bpo-39573.depAgq.rst │ │ ├── 2020-05-27-11-02-15.bpo-40792.pBw2Bb.rst │ │ ├── 2020-06-01-16-12-37.bpo-40826.zQzFoK.rst │ │ ├── 2020-06-01-20-47-49.bpo-40839.bAi52Z.rst │ │ ├── 2020-06-03-17-48-13.bpo-40679.3sgWma.rst │ │ ├── 2020-06-04-08-01-23.bpo-40724.qIIdSi.rst │ │ ├── 2020-06-08-15-59-06.bpo-40910.L56oI0.rst │ │ └── README.rst │ │ ├── Core and Builtins │ │ ├── 2019-06-02-11-29-15.bpo-29882.AkRzjb.rst │ │ ├── 2019-09-01-14-26-02.bpo-37999.XPl6dn.rst │ │ ├── 2020-04-10-23-54-57.bpo-1635741.ZURqoN.rst │ │ ├── 2020-04-11-13-07-49.bpo-4022.Ctpn_F.rst │ │ ├── 2020-05-19-19-39-49.bpo-40679.SVzz9p.rst │ │ ├── 2020-05-20-01-17-34.bpo-40521.wvAehI.rst │ │ ├── 2020-05-21-01-54-00.bpo-40696.u3n8Wx.rst │ │ ├── 2020-05-22-00-34-34.bpo-39573.QO2QHj.rst │ │ ├── 2020-05-23-01-15-51.bpo-40217.jZsHTc.rst │ │ ├── 2020-05-24-02-42-26.bpo-40750.ZmO9Ev.rst │ │ ├── 2020-05-25-21-49-11.bpo-38964.lrml90.rst │ │ ├── 2020-05-26-17-43-58.bpo-40780.3Ckdgm.rst │ │ ├── 2020-05-27-22-37-58.bpo-40792.WEDqqU.rst │ │ ├── 2020-05-30-23-18-35.bpo-19468.S-TA7p.rst │ │ ├── 2020-05-30-23-23-35.bpo-1635741.0D-laM.rst │ │ ├── 2020-06-01-20-31-07.bpo-40826.XCI4M2.rst │ │ ├── 2020-06-03-13-53-24.bpo-40854.O6vfQU.rst │ │ ├── 2020-06-05-12-48-28.bpo-40870.9cd2sk.rst │ │ ├── 2020-06-05-23-25-00.bpo-40883.M6sQ-Q.rst │ │ ├── 2020-06-06-00-23-19.bpo-40880.fjdzSh.rst │ │ ├── 2020-06-07-22-50-10.bpo-40903.7dWejS.rst │ │ ├── 2020-06-08-01-08-57.bpo-40904.76qQzo.rst │ │ ├── 2020-06-08-22-46-33.bpo-40889.vIBl-W.rst │ │ ├── 2020-06-09-23-52-32.bpo-40847.4XAACw.rst │ │ ├── 2020-06-10-11-27-15.bpo-40939.DO-wAI.rst │ │ ├── 2020-06-11-16-06-49.bpo-40947.72cZcR.rst │ │ ├── 2020-06-12-00-12-28.bpo-40950.tzMy7m.rst │ │ └── README.rst │ │ ├── Documentation │ │ ├── 2020-05-09-12-10-31.bpo-40552._0uB73.rst │ │ └── README.rst │ │ ├── IDLE │ │ ├── 2020-05-24-06-19-43.bpo-40723.AJLd4U.rst │ │ ├── 2020-05-29-18-21-58.bpo-39885.zB_-bN.rst │ │ └── README.rst │ │ ├── Library │ │ ├── 2018-08-21-16-20-33.bpo-29620.xxx666.rst │ │ ├── 2018-10-27-09-37-03.bpo-35078.kweA3R.rst │ │ ├── 2019-03-01-01-56-23.bpo-33944.-82Pkt.rst │ │ ├── 2019-03-17-19-01-53.bpo-36290.7VXo_K.rst │ │ ├── 2019-08-11-16-28-03.bpo-26543.X-TJZO.rst │ │ ├── 2019-10-25-23-45-49.bpo-35714.fw3xb7.rst │ │ ├── 2019-12-15-18-47-20.bpo-39040.tKa0Qs.rst │ │ ├── 2020-02-23-15-09-47.bpo-39244.aBK5IM.rst │ │ ├── 2020-04-20-22-08-36.bpo-23082.iX90Id.rst │ │ ├── 2020-05-06-02-01-25.bpo-13097.Wh5xSK.rst │ │ ├── 2020-05-07-22-00-12.bpo-39881.E1xsNv.rst │ │ ├── 2020-05-13-16-28-33.bpo-40611.ZCk0_c.rst │ │ ├── 2020-05-15-21-14-45.bpo-36543.Jt-eSX.rst │ │ ├── 2020-05-17-02-03-09.bpo-32309.KM9psl.rst │ │ ├── 2020-05-18-15-26-31.bpo-40671.NeZ9Cy.rst │ │ ├── 2020-05-18-15-38-25.bpo-25920.PxrLY8.rst │ │ ├── 2020-05-18-17-29-30.bpo-40626.NeZufF.rst │ │ ├── 2020-05-18-22-41-02.bpo-40614.8j3kmq.rst │ │ ├── 2020-05-20-12-53-20.bpo-9216.ps7Yf1.rst │ │ ├── 2020-05-20-13-03-28.bpo-40695.lr4aIS.rst │ │ ├── 2020-05-20-14-38-04.bpo-40698.zwl5Hc.rst │ │ ├── 2020-05-23-00-22-11.bpo-40737.iph-CM.rst │ │ ├── 2020-05-23-04-18-00.bpo-37129.YoYoYo.rst │ │ ├── 2020-05-24-11-06-37.bpo-40756.7ZH83z.rst │ │ ├── 2020-05-24-23-52-35.bpo-40759.DdZdaw.rst │ │ ├── 2020-05-25-11-52-23.bpo-30064.6CICsH.rst │ │ ├── 2020-05-25-22-18-38.bpo-30008.CKC3td.rst │ │ ├── 2020-05-27-17-00-18.bpo-40795.eZSnHA.rst │ │ ├── 2020-05-27-18-04-52.bpo-40791.IzpNor.rst │ │ ├── 2020-05-27-21-27-01.bpo-40767.L5MnVV.rst │ │ ├── 2020-05-27-22-19-42.bpo-40792.87Yx01.rst │ │ ├── 2020-05-28-17-32-29.bpo-40777.1kJU6N.rst │ │ ├── 2020-05-30-18-48-58.bpo-40755.IyOe2J.rst │ │ ├── 2020-05-31-23-32-36.bpo-17005.JlRUGB.rst │ │ ├── 2020-06-02-02-16-02.bpo-39791.StCJlA.rst │ │ ├── 2020-06-02-23-49-07.bpo-32604.ZN4V4l.rst │ │ ├── 2020-06-04-16-25-15.bpo-40807.yYyLWx.rst │ │ ├── 2020-06-05-19-29-10.bpo-39791._CcO3d.rst │ │ ├── 2020-06-05-20-00-18.bpo-40876.zDhiZj.rst │ │ ├── 2020-06-11-11-07-10.bpo-40939.-D5Asl.rst │ │ └── README.rst │ │ ├── Security │ │ └── README.rst │ │ ├── Tests │ │ ├── 2018-08-20-09-38-52.bpo-34401.eGxMPm.rst │ │ ├── 2020-05-26-07-53-31.bpo-17258.X_IKTQ.rst │ │ ├── 2020-06-09-18-48-18.bpo-40927.67ylLg.rst │ │ └── README.rst │ │ ├── Tools-Demos │ │ └── README.rst │ │ ├── Windows │ │ ├── 2020-05-19-04-11-12.bpo-40677.qQbLW8.rst │ │ ├── 2020-05-19-14-43-33.bpo-39631.Z5yXam.rst │ │ └── README.rst │ │ └── macOS │ │ ├── 2020-06-07-20-10-56.bpo-40741.80A2BW.rst │ │ └── README.rst ├── README ├── SpecialBuilds.txt ├── indent.pro ├── python-config.in ├── python-config.sh.in ├── python-embed.pc.in ├── requirements-test.txt └── svnmap.txt ├── Modules ├── README ├── Setup ├── _io │ ├── _iomodule.c │ ├── _iomodule.h │ ├── fileio.c │ └── iobase.c ├── _stat.c ├── config.c.in ├── gc_weakref.txt ├── getbuildinfo.c ├── getpath.c ├── main.c ├── makesetup ├── posixmodule.c ├── posixmodule.h └── readline.c ├── Objects ├── README ├── abstract.c ├── accu.c ├── boolobject.c ├── call.c ├── capsule.c ├── cellobject.c ├── classobject.c ├── codeobject.c ├── descrobject.c ├── dict-common.h ├── dictnotes.txt ├── dictobject.c ├── enumobject.c ├── exceptions.c ├── fileobject.c ├── floatobject.c ├── frameobject.c ├── funcobject.c ├── genobject.c ├── iterobject.c ├── listobject.c ├── listsort.txt ├── lnotab_notes.txt ├── longobject.c ├── methodobject.c ├── moduleobject.c ├── object.c ├── obmalloc.c ├── rangeobject.c ├── setobject.c ├── sliceobject.c ├── stringlib │ ├── README.txt │ ├── clinic │ │ └── transmogrify.h.h │ ├── codecs.h │ ├── count.h │ ├── ctype.h │ ├── eq.h │ ├── fastsearch.h │ ├── find.h │ ├── find_max_char.h │ ├── join.h │ ├── localeutil.h │ ├── partition.h │ ├── replace.h │ ├── split.h │ ├── stringdefs.h │ ├── transmogrify.h │ ├── ucs1lib.h │ ├── undef.h │ ├── unicode_format.h │ └── unicodedefs.h ├── structseq.c ├── tupleobject.c ├── typeobject.c ├── typeslots.inc ├── typeslots.py ├── unicodectype.c ├── unicodeobject.c └── weakrefobject.c ├── Parser ├── Python.asdl ├── asdl.py ├── asdl_c.py ├── myreadline.c ├── node.c ├── parser.c ├── peg_api.c ├── pegen.c ├── pegen.h ├── string_parser.c ├── string_parser.h ├── token.c ├── tokenizer.c └── tokenizer.h ├── Programs ├── README ├── _testembed.c └── python.c ├── Python ├── Python-ast.c ├── README ├── asdl.c ├── ast.c ├── ast_opt.c ├── ast_unparse.c ├── bltinmodule.c ├── ceval.c ├── compile.c ├── errors.c ├── fileutils.c ├── formatter_unicode.c ├── future.c ├── getargs.c ├── getcompiler.c ├── getcopyright.c ├── getopt.c ├── getplatform.c ├── getversion.c ├── graminit.c ├── hashtable.c ├── import.c ├── initconfig.c ├── makeopcodetargets.py ├── modsupport.c ├── mysnprintf.c ├── mystrtoul.c ├── pathconfig.c ├── preconfig.c ├── pyctype.c ├── pyhash.c ├── pylifecycle.c ├── pymath.c ├── pystate.c ├── pystrcmp.c ├── pystrtod.c ├── pythonrun.c ├── structmember.c ├── symtable.c ├── sysmodule.c ├── traceback.c └── wordcode_helpers.h ├── README.rst ├── Tools ├── README ├── c-analyzer │ ├── README │ ├── TODO │ ├── c-globals.py │ ├── c_analyzer │ │ ├── __init__.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ ├── files.py │ │ │ ├── info.py │ │ │ ├── show.py │ │ │ └── util.py │ │ ├── parser │ │ │ ├── __init__.py │ │ │ ├── declarations.py │ │ │ ├── find.py │ │ │ ├── naive.py │ │ │ ├── preprocessor.py │ │ │ └── source.py │ │ ├── symbols │ │ │ ├── __init__.py │ │ │ ├── _nm.py │ │ │ ├── find.py │ │ │ └── info.py │ │ └── variables │ │ │ ├── __init__.py │ │ │ ├── find.py │ │ │ ├── info.py │ │ │ └── known.py │ ├── check-c-globals.py │ ├── cpython │ │ ├── README │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _generate.py │ │ ├── files.py │ │ ├── find.py │ │ ├── known.py │ │ └── supported.py │ ├── ignored-globals.txt │ ├── ignored.tsv │ └── known.tsv ├── freeze │ ├── README │ ├── bkfile.py │ ├── checkextensions.py │ ├── checkextensions_win32.py │ ├── extensions_win32.ini │ ├── flag.py │ ├── freeze.py │ ├── hello.py │ ├── makeconfig.py │ ├── makefreeze.py │ ├── makemakefile.py │ ├── parsesetup.py │ ├── test │ │ ├── Makefile │ │ └── ok.py │ ├── win32.html │ └── winmakemakefile.py ├── peg_generator │ ├── .clang-format │ ├── .gitignore │ ├── Makefile │ ├── data │ │ ├── cprog.py │ │ ├── top-pypi-packages-365-days.json │ │ └── xxl.zip │ ├── mypy.ini │ ├── peg_extension │ │ ├── __init__.py │ │ └── peg_extension.c │ ├── pegen │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── ast_dump.py │ │ ├── build.py │ │ ├── c_generator.py │ │ ├── first_sets.py │ │ ├── grammar.py │ │ ├── grammar_parser.py │ │ ├── grammar_visualizer.py │ │ ├── keywordgen.py │ │ ├── metagrammar.gram │ │ ├── parser.py │ │ ├── parser_generator.py │ │ ├── python_generator.py │ │ ├── sccutils.py │ │ ├── testutil.py │ │ └── tokenizer.py │ ├── pyproject.toml │ ├── requirements.pip │ └── scripts │ │ ├── __init__.py │ │ ├── ast_timings.py │ │ ├── benchmark.py │ │ ├── download_pypi_packages.py │ │ ├── find_max_nesting.py │ │ ├── grammar_grapher.py │ │ ├── joinstats.py │ │ ├── test_parse_directory.py │ │ └── test_pypi_packages.py ├── scripts │ ├── README │ ├── abitype.py │ ├── analyze_dxp.py │ ├── byext.py │ ├── byteyears.py │ ├── combinerefs.py │ ├── copytime.py │ ├── crlf.py │ ├── diff.py │ ├── dutree.doc │ ├── dutree.py │ ├── eptags.py │ ├── find-uname.py │ ├── find_recursionlimit.py │ ├── finddiv.py │ ├── findlinksto.py │ ├── findnocoding.py │ ├── fixcid.py │ ├── fixdiv.py │ ├── fixheader.py │ ├── fixps.py │ ├── generate_opcode_h.py │ ├── generate_symbol_py.py │ ├── generate_token.py │ ├── ifdef.py │ ├── import_diagnostics.py │ ├── lfcr.py │ ├── linktree.py │ ├── lll.py │ ├── make_ctype.py │ ├── md5sum.py │ ├── mkreal.py │ ├── ndiff.py │ ├── nm2def.py │ ├── objgraph.py │ ├── parseentities.py │ ├── patchcheck.py │ ├── pathfix.py │ ├── pdeps.py │ ├── pep384_macrocheck.py │ ├── pickle2db.py │ ├── pindent.py │ ├── ptags.py │ ├── pysource.py │ ├── reindent-rst.py │ ├── reindent.py │ ├── rgrep.py │ ├── serve.py │ ├── smelly.py │ ├── suff.py │ ├── untabify.py │ ├── update_file.py │ ├── var_access_benchmark.py │ └── which.py └── unicode │ ├── Makefile │ ├── comparecodecs.py │ ├── gencjkcodecs.py │ ├── gencodec.py │ ├── genmap_japanese.py │ ├── genmap_korean.py │ ├── genmap_schinese.py │ ├── genmap_support.py │ ├── genwincodec.py │ ├── genwincodecs.bat │ ├── listcodecs.py │ ├── makeunicodedata.py │ ├── mkstringprep.py │ └── python-mappings │ ├── CP1140.TXT │ ├── CP273.TXT │ ├── GB2312.TXT │ ├── KOI8-U.TXT │ ├── TIS-620.TXT │ ├── diff │ ├── jisx0213-2000-std.txt.diff │ └── jisx0213-2004-std.txt.diff │ ├── gb-18030-2000.xml │ └── jisx0213-2004-std.txt ├── aclocal.m4 ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── install-sh ├── m4 ├── ax_c_float_words_bigendian.m4 └── ax_check_openssl.m4 └── pyconfig.h.in /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.github/CONTRIBUTING.rst -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/problem-matchers/gcc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.github/problem-matchers/gcc.json -------------------------------------------------------------------------------- /.github/problem-matchers/sphinx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.github/problem-matchers/sphinx.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/build_msi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.github/workflows/build_msi.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.github/workflows/posix-deps-apt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.github/workflows/posix-deps-apt.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Grammar/Grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Grammar/Grammar -------------------------------------------------------------------------------- /Grammar/Tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Grammar/Tokens -------------------------------------------------------------------------------- /Grammar/python.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Grammar/python.gram -------------------------------------------------------------------------------- /Include/Python-ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/Python-ast.h -------------------------------------------------------------------------------- /Include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/Python.h -------------------------------------------------------------------------------- /Include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/abstract.h -------------------------------------------------------------------------------- /Include/asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/asdl.h -------------------------------------------------------------------------------- /Include/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/ast.h -------------------------------------------------------------------------------- /Include/bltinmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/bltinmodule.h -------------------------------------------------------------------------------- /Include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/boolobject.h -------------------------------------------------------------------------------- /Include/cellobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/cellobject.h -------------------------------------------------------------------------------- /Include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/ceval.h -------------------------------------------------------------------------------- /Include/classobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/classobject.h -------------------------------------------------------------------------------- /Include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/code.h -------------------------------------------------------------------------------- /Include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/compile.h -------------------------------------------------------------------------------- /Include/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/descrobject.h -------------------------------------------------------------------------------- /Include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/dictobject.h -------------------------------------------------------------------------------- /Include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/enumobject.h -------------------------------------------------------------------------------- /Include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/errcode.h -------------------------------------------------------------------------------- /Include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/eval.h -------------------------------------------------------------------------------- /Include/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/exports.h -------------------------------------------------------------------------------- /Include/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/fileobject.h -------------------------------------------------------------------------------- /Include/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/fileutils.h -------------------------------------------------------------------------------- /Include/floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/floatobject.h -------------------------------------------------------------------------------- /Include/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/frameobject.h -------------------------------------------------------------------------------- /Include/funcobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/funcobject.h -------------------------------------------------------------------------------- /Include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/genobject.h -------------------------------------------------------------------------------- /Include/graminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/graminit.h -------------------------------------------------------------------------------- /Include/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/grammar.h -------------------------------------------------------------------------------- /Include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/import.h -------------------------------------------------------------------------------- /Include/initconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/initconfig.h -------------------------------------------------------------------------------- /Include/internal/pegen_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pegen_interface.h -------------------------------------------------------------------------------- /Include/internal/pycore_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_abstract.h -------------------------------------------------------------------------------- /Include/internal/pycore_accu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_accu.h -------------------------------------------------------------------------------- /Include/internal/pycore_bitutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_bitutils.h -------------------------------------------------------------------------------- /Include/internal/pycore_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_call.h -------------------------------------------------------------------------------- /Include/internal/pycore_ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_ceval.h -------------------------------------------------------------------------------- /Include/internal/pycore_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_code.h -------------------------------------------------------------------------------- /Include/internal/pycore_fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_fileutils.h -------------------------------------------------------------------------------- /Include/internal/pycore_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_getopt.h -------------------------------------------------------------------------------- /Include/internal/pycore_hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_hashtable.h -------------------------------------------------------------------------------- /Include/internal/pycore_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_import.h -------------------------------------------------------------------------------- /Include/internal/pycore_initconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_initconfig.h -------------------------------------------------------------------------------- /Include/internal/pycore_interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_interp.h -------------------------------------------------------------------------------- /Include/internal/pycore_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_object.h -------------------------------------------------------------------------------- /Include/internal/pycore_pathconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_pathconfig.h -------------------------------------------------------------------------------- /Include/internal/pycore_pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_pyerrors.h -------------------------------------------------------------------------------- /Include/internal/pycore_pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_pyhash.h -------------------------------------------------------------------------------- /Include/internal/pycore_pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_pylifecycle.h -------------------------------------------------------------------------------- /Include/internal/pycore_pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_pystate.h -------------------------------------------------------------------------------- /Include/internal/pycore_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_runtime.h -------------------------------------------------------------------------------- /Include/internal/pycore_sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_sysmodule.h -------------------------------------------------------------------------------- /Include/internal/pycore_traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/internal/pycore_traceback.h -------------------------------------------------------------------------------- /Include/iterobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/iterobject.h -------------------------------------------------------------------------------- /Include/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/listobject.h -------------------------------------------------------------------------------- /Include/longintrepr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/longintrepr.h -------------------------------------------------------------------------------- /Include/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/longobject.h -------------------------------------------------------------------------------- /Include/methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/methodobject.h -------------------------------------------------------------------------------- /Include/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/modsupport.h -------------------------------------------------------------------------------- /Include/moduleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/moduleobject.h -------------------------------------------------------------------------------- /Include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/node.h -------------------------------------------------------------------------------- /Include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/object.h -------------------------------------------------------------------------------- /Include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/objimpl.h -------------------------------------------------------------------------------- /Include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/opcode.h -------------------------------------------------------------------------------- /Include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/osdefs.h -------------------------------------------------------------------------------- /Include/osmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/osmodule.h -------------------------------------------------------------------------------- /Include/parsetok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/parsetok.h -------------------------------------------------------------------------------- /Include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/patchlevel.h -------------------------------------------------------------------------------- /Include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pycapsule.h -------------------------------------------------------------------------------- /Include/pyctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pyctype.h -------------------------------------------------------------------------------- /Include/pydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pydebug.h -------------------------------------------------------------------------------- /Include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pyerrors.h -------------------------------------------------------------------------------- /Include/pyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pyframe.h -------------------------------------------------------------------------------- /Include/pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pyhash.h -------------------------------------------------------------------------------- /Include/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pylifecycle.h -------------------------------------------------------------------------------- /Include/pymacconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pymacconfig.h -------------------------------------------------------------------------------- /Include/pymacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pymacro.h -------------------------------------------------------------------------------- /Include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pymath.h -------------------------------------------------------------------------------- /Include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pymem.h -------------------------------------------------------------------------------- /Include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pyport.h -------------------------------------------------------------------------------- /Include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pystate.h -------------------------------------------------------------------------------- /Include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pystrcmp.h -------------------------------------------------------------------------------- /Include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pystrtod.h -------------------------------------------------------------------------------- /Include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/pythonrun.h -------------------------------------------------------------------------------- /Include/rangeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/rangeobject.h -------------------------------------------------------------------------------- /Include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/setobject.h -------------------------------------------------------------------------------- /Include/sliceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/sliceobject.h -------------------------------------------------------------------------------- /Include/structmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/structmember.h -------------------------------------------------------------------------------- /Include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/structseq.h -------------------------------------------------------------------------------- /Include/symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/symtable.h -------------------------------------------------------------------------------- /Include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/sysmodule.h -------------------------------------------------------------------------------- /Include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/token.h -------------------------------------------------------------------------------- /Include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/traceback.h -------------------------------------------------------------------------------- /Include/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/tupleobject.h -------------------------------------------------------------------------------- /Include/typeslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/typeslots.h -------------------------------------------------------------------------------- /Include/unicodeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/unicodeobject.h -------------------------------------------------------------------------------- /Include/weakrefobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Include/weakrefobject.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/__phello__.foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Lib/__phello__.foo.py -------------------------------------------------------------------------------- /Lib/genericpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Lib/genericpath.py -------------------------------------------------------------------------------- /Lib/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Lib/io.py -------------------------------------------------------------------------------- /Lib/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Lib/os.py -------------------------------------------------------------------------------- /Lib/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Lib/posixpath.py -------------------------------------------------------------------------------- /Lib/site-packages/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Lib/site-packages/README.txt -------------------------------------------------------------------------------- /Lib/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Lib/site.py -------------------------------------------------------------------------------- /Lib/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Lib/stat.py -------------------------------------------------------------------------------- /Lib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Lib/types.py -------------------------------------------------------------------------------- /Makefile.pre.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Makefile.pre.in -------------------------------------------------------------------------------- /Misc/ACKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/ACKS -------------------------------------------------------------------------------- /Misc/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/HISTORY -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.0.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.0a1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.0a1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.0a2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.0a2.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.0a3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.0a3.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.0a4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.0a4.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.0b1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.0b1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.0b2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.0b2.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.0b3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.0b3.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.0b4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.0b4.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.0rc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.0rc1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.0rc2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.0rc2.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.0rc3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.0rc3.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.0rc4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.0rc4.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.1rc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.1rc1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.2.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.2rc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.2rc1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.3.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.3rc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.3rc1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.4.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.4rc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.4rc1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.5.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.5.5rc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.5.5rc1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.0.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.0a1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.0a1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.0a2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.0a2.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.0a3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.0a3.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.0a4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.0a4.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.0b1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.0b1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.0b2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.0b2.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.0b3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.0b3.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.0b4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.0b4.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.0rc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.0rc1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.0rc2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.0rc2.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.1rc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.1rc1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.2.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.2rc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.2rc1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.2rc2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.2rc2.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.3.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.3rc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.3rc1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.4.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.4rc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.4rc1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.5.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.5rc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.5rc1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.6.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.6.6rc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.6.6rc1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.7.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.7.0.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.7.0a1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.7.0a1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.7.0a2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.7.0a2.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.7.0a3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.7.0a3.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.7.0a4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.7.0a4.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.7.0b1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.7.0b1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.7.0b2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.7.0b2.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.7.0b3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.7.0b3.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.7.0b4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.7.0b4.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.7.0b5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.7.0b5.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.7.0rc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.7.0rc1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.8.0a1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.8.0a1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.8.0a2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.8.0a2.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.8.0a3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.8.0a3.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.8.0a4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.8.0a4.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.8.0b1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.8.0b1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.9.0a1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.9.0a1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.9.0a2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.9.0a2.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.9.0a3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.9.0a3.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.9.0a4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.9.0a4.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.9.0a5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.9.0a5.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.9.0a6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.9.0a6.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/3.9.0b1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/3.9.0b1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Build/2020-05-19-10-54-08.bpo-40683.W8JHrr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Build/2020-05-19-10-54-08.bpo-40683.W8JHrr.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Build/2020-06-08-19-57-05.bpo-40684.WIY2-i.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Build/2020-06-08-19-57-05.bpo-40684.WIY2-i.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Build/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Build/README.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/C API/2020-02-08-08-01-35.bpo-39583.qURKSl.rst: -------------------------------------------------------------------------------- 1 | Remove superfluous "extern C" declarations from ``Include/cpython/*.h``. 2 | -------------------------------------------------------------------------------- /Misc/NEWS.d/next/C API/2020-05-20-19-11-12.bpo-40703.qQXfW8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/C API/2020-05-20-19-11-12.bpo-40703.qQXfW8.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/C API/2020-05-26-16-21-47.bpo-39573.depAgq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/C API/2020-05-26-16-21-47.bpo-39573.depAgq.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/C API/2020-05-27-11-02-15.bpo-40792.pBw2Bb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/C API/2020-05-27-11-02-15.bpo-40792.pBw2Bb.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/C API/2020-06-01-16-12-37.bpo-40826.zQzFoK.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/C API/2020-06-01-16-12-37.bpo-40826.zQzFoK.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/C API/2020-06-01-20-47-49.bpo-40839.bAi52Z.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/C API/2020-06-01-20-47-49.bpo-40839.bAi52Z.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/C API/2020-06-03-17-48-13.bpo-40679.3sgWma.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/C API/2020-06-03-17-48-13.bpo-40679.3sgWma.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/C API/2020-06-04-08-01-23.bpo-40724.qIIdSi.rst: -------------------------------------------------------------------------------- 1 | Allow defining buffer slots in type specs. 2 | -------------------------------------------------------------------------------- /Misc/NEWS.d/next/C API/2020-06-08-15-59-06.bpo-40910.L56oI0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/C API/2020-06-08-15-59-06.bpo-40910.L56oI0.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/C API/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/C API/README.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2019-06-02-11-29-15.bpo-29882.AkRzjb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2019-06-02-11-29-15.bpo-29882.AkRzjb.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2019-09-01-14-26-02.bpo-37999.XPl6dn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2019-09-01-14-26-02.bpo-37999.XPl6dn.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-04-10-23-54-57.bpo-1635741.ZURqoN.rst: -------------------------------------------------------------------------------- 1 | Port :mod:`mmap` to multiphase initialization. 2 | -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-04-11-13-07-49.bpo-4022.Ctpn_F.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-04-11-13-07-49.bpo-4022.Ctpn_F.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-05-19-19-39-49.bpo-40679.SVzz9p.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-05-19-19-39-49.bpo-40679.SVzz9p.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-05-20-01-17-34.bpo-40521.wvAehI.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-05-20-01-17-34.bpo-40521.wvAehI.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-05-21-01-54-00.bpo-40696.u3n8Wx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-05-21-01-54-00.bpo-40696.u3n8Wx.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-05-22-00-34-34.bpo-39573.QO2QHj.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-05-22-00-34-34.bpo-39573.QO2QHj.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-05-23-01-15-51.bpo-40217.jZsHTc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-05-23-01-15-51.bpo-40217.jZsHTc.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-05-24-02-42-26.bpo-40750.ZmO9Ev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-05-24-02-42-26.bpo-40750.ZmO9Ev.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-05-25-21-49-11.bpo-38964.lrml90.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-05-25-21-49-11.bpo-38964.lrml90.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-05-26-17-43-58.bpo-40780.3Ckdgm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-05-26-17-43-58.bpo-40780.3Ckdgm.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-05-27-22-37-58.bpo-40792.WEDqqU.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-05-27-22-37-58.bpo-40792.WEDqqU.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-05-30-23-18-35.bpo-19468.S-TA7p.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-05-30-23-18-35.bpo-19468.S-TA7p.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-05-30-23-23-35.bpo-1635741.0D-laM.rst: -------------------------------------------------------------------------------- 1 | Port :mod:`fcntl` to multiphase initialization. 2 | -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-06-01-20-31-07.bpo-40826.XCI4M2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-06-01-20-31-07.bpo-40826.XCI4M2.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-06-03-13-53-24.bpo-40854.O6vfQU.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-06-03-13-53-24.bpo-40854.O6vfQU.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-06-05-12-48-28.bpo-40870.9cd2sk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-06-05-12-48-28.bpo-40870.9cd2sk.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-06-05-23-25-00.bpo-40883.M6sQ-Q.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-06-05-23-25-00.bpo-40883.M6sQ-Q.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-06-06-00-23-19.bpo-40880.fjdzSh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-06-06-00-23-19.bpo-40880.fjdzSh.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-06-07-22-50-10.bpo-40903.7dWejS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-06-07-22-50-10.bpo-40903.7dWejS.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-06-08-01-08-57.bpo-40904.76qQzo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-06-08-01-08-57.bpo-40904.76qQzo.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-06-08-22-46-33.bpo-40889.vIBl-W.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-06-08-22-46-33.bpo-40889.vIBl-W.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-06-09-23-52-32.bpo-40847.4XAACw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-06-09-23-52-32.bpo-40847.4XAACw.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-06-10-11-27-15.bpo-40939.DO-wAI.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-06-10-11-27-15.bpo-40939.DO-wAI.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-06-11-16-06-49.bpo-40947.72cZcR.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-06-11-16-06-49.bpo-40947.72cZcR.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/2020-06-12-00-12-28.bpo-40950.tzMy7m.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/2020-06-12-00-12-28.bpo-40950.tzMy7m.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Core and Builtins/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Core and Builtins/README.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Documentation/2020-05-09-12-10-31.bpo-40552._0uB73.rst: -------------------------------------------------------------------------------- 1 | Fix in tutorial section 4.2. 2 | Code snippet is now correct. -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Documentation/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Documentation/README.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/IDLE/2020-05-24-06-19-43.bpo-40723.AJLd4U.rst: -------------------------------------------------------------------------------- 1 | Make test_idle pass when run after import. 2 | -------------------------------------------------------------------------------- /Misc/NEWS.d/next/IDLE/2020-05-29-18-21-58.bpo-39885.zB_-bN.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/IDLE/2020-05-29-18-21-58.bpo-39885.zB_-bN.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/IDLE/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/IDLE/README.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2018-08-21-16-20-33.bpo-29620.xxx666.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2018-08-21-16-20-33.bpo-29620.xxx666.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2018-10-27-09-37-03.bpo-35078.kweA3R.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2018-10-27-09-37-03.bpo-35078.kweA3R.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2019-03-01-01-56-23.bpo-33944.-82Pkt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2019-03-01-01-56-23.bpo-33944.-82Pkt.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2019-03-17-19-01-53.bpo-36290.7VXo_K.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2019-03-17-19-01-53.bpo-36290.7VXo_K.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2019-08-11-16-28-03.bpo-26543.X-TJZO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2019-08-11-16-28-03.bpo-26543.X-TJZO.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2019-10-25-23-45-49.bpo-35714.fw3xb7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2019-10-25-23-45-49.bpo-35714.fw3xb7.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2019-12-15-18-47-20.bpo-39040.tKa0Qs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2019-12-15-18-47-20.bpo-39040.tKa0Qs.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-02-23-15-09-47.bpo-39244.aBK5IM.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-02-23-15-09-47.bpo-39244.aBK5IM.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-04-20-22-08-36.bpo-23082.iX90Id.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-04-20-22-08-36.bpo-23082.iX90Id.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-06-02-01-25.bpo-13097.Wh5xSK.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-06-02-01-25.bpo-13097.Wh5xSK.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-07-22-00-12.bpo-39881.E1xsNv.rst: -------------------------------------------------------------------------------- 1 | PEP 554 for use in the test suite. 2 | (Patch By Joannah Nanjekye) -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-13-16-28-33.bpo-40611.ZCk0_c.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-13-16-28-33.bpo-40611.ZCk0_c.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-15-21-14-45.bpo-36543.Jt-eSX.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-15-21-14-45.bpo-36543.Jt-eSX.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-17-02-03-09.bpo-32309.KM9psl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-17-02-03-09.bpo-32309.KM9psl.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-18-15-26-31.bpo-40671.NeZ9Cy.rst: -------------------------------------------------------------------------------- 1 | Prepare ``_hashlib`` for :pep:`489` and use :c:func:`PyModule_AddType`. 2 | -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-18-15-38-25.bpo-25920.PxrLY8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-18-15-38-25.bpo-25920.PxrLY8.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-18-17-29-30.bpo-40626.NeZufF.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-18-17-29-30.bpo-40626.NeZufF.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-18-22-41-02.bpo-40614.8j3kmq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-18-22-41-02.bpo-40614.8j3kmq.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-20-12-53-20.bpo-9216.ps7Yf1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-20-12-53-20.bpo-9216.ps7Yf1.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-20-13-03-28.bpo-40695.lr4aIS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-20-13-03-28.bpo-40695.lr4aIS.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-20-14-38-04.bpo-40698.zwl5Hc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-20-14-38-04.bpo-40698.zwl5Hc.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-23-00-22-11.bpo-40737.iph-CM.rst: -------------------------------------------------------------------------------- 1 | Fix possible reference leak for :mod:`sqlite3` initialization. 2 | -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-23-04-18-00.bpo-37129.YoYoYo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-23-04-18-00.bpo-37129.YoYoYo.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-24-11-06-37.bpo-40756.7ZH83z.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-24-11-06-37.bpo-40756.7ZH83z.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-24-23-52-35.bpo-40759.DdZdaw.rst: -------------------------------------------------------------------------------- 1 | Deprecate the :mod:`symbol` module. 2 | -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-25-11-52-23.bpo-30064.6CICsH.rst: -------------------------------------------------------------------------------- 1 | Fix asyncio ``loop.sock_*`` race condition issue 2 | -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-25-22-18-38.bpo-30008.CKC3td.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-25-22-18-38.bpo-30008.CKC3td.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-27-17-00-18.bpo-40795.eZSnHA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-27-17-00-18.bpo-40795.eZSnHA.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-27-18-04-52.bpo-40791.IzpNor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-27-18-04-52.bpo-40791.IzpNor.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-27-21-27-01.bpo-40767.L5MnVV.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-27-21-27-01.bpo-40767.L5MnVV.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-27-22-19-42.bpo-40792.87Yx01.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-27-22-19-42.bpo-40792.87Yx01.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-28-17-32-29.bpo-40777.1kJU6N.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-28-17-32-29.bpo-40777.1kJU6N.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-30-18-48-58.bpo-40755.IyOe2J.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-30-18-48-58.bpo-40755.IyOe2J.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-05-31-23-32-36.bpo-17005.JlRUGB.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-05-31-23-32-36.bpo-17005.JlRUGB.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-06-02-02-16-02.bpo-39791.StCJlA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-06-02-02-16-02.bpo-39791.StCJlA.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-06-02-23-49-07.bpo-32604.ZN4V4l.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-06-02-23-49-07.bpo-32604.ZN4V4l.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-06-04-16-25-15.bpo-40807.yYyLWx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-06-04-16-25-15.bpo-40807.yYyLWx.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-06-05-19-29-10.bpo-39791._CcO3d.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-06-05-19-29-10.bpo-39791._CcO3d.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-06-05-20-00-18.bpo-40876.zDhiZj.rst: -------------------------------------------------------------------------------- 1 | Clarify error message in the :mod:`csv` module. 2 | -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/2020-06-11-11-07-10.bpo-40939.-D5Asl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/2020-06-11-11-07-10.bpo-40939.-D5Asl.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Library/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Library/README.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Security/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Security/README.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Tests/2018-08-20-09-38-52.bpo-34401.eGxMPm.rst: -------------------------------------------------------------------------------- 1 | Make test_gdb properly run on HP-UX. Patch by Michael Osipov. 2 | -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Tests/2020-05-26-07-53-31.bpo-17258.X_IKTQ.rst: -------------------------------------------------------------------------------- 1 | Skip some :mod:`multiprocessing` tests when MD5 hash digest is blocked. 2 | -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Tests/2020-06-09-18-48-18.bpo-40927.67ylLg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Tests/2020-06-09-18-48-18.bpo-40927.67ylLg.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Tests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Tests/README.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Tools-Demos/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Tools-Demos/README.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Windows/2020-05-19-04-11-12.bpo-40677.qQbLW8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Windows/2020-05-19-04-11-12.bpo-40677.qQbLW8.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Windows/2020-05-19-14-43-33.bpo-39631.Z5yXam.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Windows/2020-05-19-14-43-33.bpo-39631.Z5yXam.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/Windows/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/Windows/README.rst -------------------------------------------------------------------------------- /Misc/NEWS.d/next/macOS/2020-06-07-20-10-56.bpo-40741.80A2BW.rst: -------------------------------------------------------------------------------- 1 | Update macOS installer to use SQLite 3.32.2. 2 | -------------------------------------------------------------------------------- /Misc/NEWS.d/next/macOS/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/NEWS.d/next/macOS/README.rst -------------------------------------------------------------------------------- /Misc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/README -------------------------------------------------------------------------------- /Misc/SpecialBuilds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/SpecialBuilds.txt -------------------------------------------------------------------------------- /Misc/indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/indent.pro -------------------------------------------------------------------------------- /Misc/python-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/python-config.in -------------------------------------------------------------------------------- /Misc/python-config.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/python-config.sh.in -------------------------------------------------------------------------------- /Misc/python-embed.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/python-embed.pc.in -------------------------------------------------------------------------------- /Misc/requirements-test.txt: -------------------------------------------------------------------------------- 1 | tzdata==2020.1rc0 2 | -------------------------------------------------------------------------------- /Misc/svnmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Misc/svnmap.txt -------------------------------------------------------------------------------- /Modules/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/README -------------------------------------------------------------------------------- /Modules/Setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/Setup -------------------------------------------------------------------------------- /Modules/_io/_iomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/_io/_iomodule.c -------------------------------------------------------------------------------- /Modules/_io/_iomodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/_io/_iomodule.h -------------------------------------------------------------------------------- /Modules/_io/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/_io/fileio.c -------------------------------------------------------------------------------- /Modules/_io/iobase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/_io/iobase.c -------------------------------------------------------------------------------- /Modules/_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/_stat.c -------------------------------------------------------------------------------- /Modules/config.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/config.c.in -------------------------------------------------------------------------------- /Modules/gc_weakref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/gc_weakref.txt -------------------------------------------------------------------------------- /Modules/getbuildinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/getbuildinfo.c -------------------------------------------------------------------------------- /Modules/getpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/getpath.c -------------------------------------------------------------------------------- /Modules/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/main.c -------------------------------------------------------------------------------- /Modules/makesetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/makesetup -------------------------------------------------------------------------------- /Modules/posixmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/posixmodule.c -------------------------------------------------------------------------------- /Modules/posixmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/posixmodule.h -------------------------------------------------------------------------------- /Modules/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Modules/readline.c -------------------------------------------------------------------------------- /Objects/README: -------------------------------------------------------------------------------- 1 | Source files for various builtin objects 2 | -------------------------------------------------------------------------------- /Objects/abstract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/abstract.c -------------------------------------------------------------------------------- /Objects/accu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/accu.c -------------------------------------------------------------------------------- /Objects/boolobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/boolobject.c -------------------------------------------------------------------------------- /Objects/call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/call.c -------------------------------------------------------------------------------- /Objects/capsule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/capsule.c -------------------------------------------------------------------------------- /Objects/cellobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/cellobject.c -------------------------------------------------------------------------------- /Objects/classobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/classobject.c -------------------------------------------------------------------------------- /Objects/codeobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/codeobject.c -------------------------------------------------------------------------------- /Objects/descrobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/descrobject.c -------------------------------------------------------------------------------- /Objects/dict-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/dict-common.h -------------------------------------------------------------------------------- /Objects/dictnotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/dictnotes.txt -------------------------------------------------------------------------------- /Objects/dictobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/dictobject.c -------------------------------------------------------------------------------- /Objects/enumobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/enumobject.c -------------------------------------------------------------------------------- /Objects/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/exceptions.c -------------------------------------------------------------------------------- /Objects/fileobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/fileobject.c -------------------------------------------------------------------------------- /Objects/floatobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/floatobject.c -------------------------------------------------------------------------------- /Objects/frameobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/frameobject.c -------------------------------------------------------------------------------- /Objects/funcobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/funcobject.c -------------------------------------------------------------------------------- /Objects/genobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/genobject.c -------------------------------------------------------------------------------- /Objects/iterobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/iterobject.c -------------------------------------------------------------------------------- /Objects/listobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/listobject.c -------------------------------------------------------------------------------- /Objects/listsort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/listsort.txt -------------------------------------------------------------------------------- /Objects/lnotab_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/lnotab_notes.txt -------------------------------------------------------------------------------- /Objects/longobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/longobject.c -------------------------------------------------------------------------------- /Objects/methodobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/methodobject.c -------------------------------------------------------------------------------- /Objects/moduleobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/moduleobject.c -------------------------------------------------------------------------------- /Objects/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/object.c -------------------------------------------------------------------------------- /Objects/obmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/obmalloc.c -------------------------------------------------------------------------------- /Objects/rangeobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/rangeobject.c -------------------------------------------------------------------------------- /Objects/setobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/setobject.c -------------------------------------------------------------------------------- /Objects/sliceobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/sliceobject.c -------------------------------------------------------------------------------- /Objects/stringlib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/README.txt -------------------------------------------------------------------------------- /Objects/stringlib/clinic/transmogrify.h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/clinic/transmogrify.h.h -------------------------------------------------------------------------------- /Objects/stringlib/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/codecs.h -------------------------------------------------------------------------------- /Objects/stringlib/count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/count.h -------------------------------------------------------------------------------- /Objects/stringlib/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/ctype.h -------------------------------------------------------------------------------- /Objects/stringlib/eq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/eq.h -------------------------------------------------------------------------------- /Objects/stringlib/fastsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/fastsearch.h -------------------------------------------------------------------------------- /Objects/stringlib/find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/find.h -------------------------------------------------------------------------------- /Objects/stringlib/find_max_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/find_max_char.h -------------------------------------------------------------------------------- /Objects/stringlib/join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/join.h -------------------------------------------------------------------------------- /Objects/stringlib/localeutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/localeutil.h -------------------------------------------------------------------------------- /Objects/stringlib/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/partition.h -------------------------------------------------------------------------------- /Objects/stringlib/replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/replace.h -------------------------------------------------------------------------------- /Objects/stringlib/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/split.h -------------------------------------------------------------------------------- /Objects/stringlib/stringdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/stringdefs.h -------------------------------------------------------------------------------- /Objects/stringlib/transmogrify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/transmogrify.h -------------------------------------------------------------------------------- /Objects/stringlib/ucs1lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/ucs1lib.h -------------------------------------------------------------------------------- /Objects/stringlib/undef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/undef.h -------------------------------------------------------------------------------- /Objects/stringlib/unicode_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/unicode_format.h -------------------------------------------------------------------------------- /Objects/stringlib/unicodedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/stringlib/unicodedefs.h -------------------------------------------------------------------------------- /Objects/structseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/structseq.c -------------------------------------------------------------------------------- /Objects/tupleobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/tupleobject.c -------------------------------------------------------------------------------- /Objects/typeobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/typeobject.c -------------------------------------------------------------------------------- /Objects/typeslots.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/typeslots.inc -------------------------------------------------------------------------------- /Objects/typeslots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/typeslots.py -------------------------------------------------------------------------------- /Objects/unicodectype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/unicodectype.c -------------------------------------------------------------------------------- /Objects/unicodeobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/unicodeobject.c -------------------------------------------------------------------------------- /Objects/weakrefobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Objects/weakrefobject.c -------------------------------------------------------------------------------- /Parser/Python.asdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Parser/Python.asdl -------------------------------------------------------------------------------- /Parser/asdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Parser/asdl.py -------------------------------------------------------------------------------- /Parser/asdl_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Parser/asdl_c.py -------------------------------------------------------------------------------- /Parser/myreadline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Parser/myreadline.c -------------------------------------------------------------------------------- /Parser/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Parser/node.c -------------------------------------------------------------------------------- /Parser/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Parser/parser.c -------------------------------------------------------------------------------- /Parser/peg_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Parser/peg_api.c -------------------------------------------------------------------------------- /Parser/pegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Parser/pegen.c -------------------------------------------------------------------------------- /Parser/pegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Parser/pegen.h -------------------------------------------------------------------------------- /Parser/string_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Parser/string_parser.c -------------------------------------------------------------------------------- /Parser/string_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Parser/string_parser.h -------------------------------------------------------------------------------- /Parser/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Parser/token.c -------------------------------------------------------------------------------- /Parser/tokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Parser/tokenizer.c -------------------------------------------------------------------------------- /Parser/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Parser/tokenizer.h -------------------------------------------------------------------------------- /Programs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Programs/README -------------------------------------------------------------------------------- /Programs/_testembed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Programs/_testembed.c -------------------------------------------------------------------------------- /Programs/python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Programs/python.c -------------------------------------------------------------------------------- /Python/Python-ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/Python-ast.c -------------------------------------------------------------------------------- /Python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/README -------------------------------------------------------------------------------- /Python/asdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/asdl.c -------------------------------------------------------------------------------- /Python/ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/ast.c -------------------------------------------------------------------------------- /Python/ast_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/ast_opt.c -------------------------------------------------------------------------------- /Python/ast_unparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/ast_unparse.c -------------------------------------------------------------------------------- /Python/bltinmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/bltinmodule.c -------------------------------------------------------------------------------- /Python/ceval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/ceval.c -------------------------------------------------------------------------------- /Python/compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/compile.c -------------------------------------------------------------------------------- /Python/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/errors.c -------------------------------------------------------------------------------- /Python/fileutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/fileutils.c -------------------------------------------------------------------------------- /Python/formatter_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/formatter_unicode.c -------------------------------------------------------------------------------- /Python/future.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/future.c -------------------------------------------------------------------------------- /Python/getargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/getargs.c -------------------------------------------------------------------------------- /Python/getcompiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/getcompiler.c -------------------------------------------------------------------------------- /Python/getcopyright.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/getcopyright.c -------------------------------------------------------------------------------- /Python/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/getopt.c -------------------------------------------------------------------------------- /Python/getplatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/getplatform.c -------------------------------------------------------------------------------- /Python/getversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/getversion.c -------------------------------------------------------------------------------- /Python/graminit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/graminit.c -------------------------------------------------------------------------------- /Python/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/hashtable.c -------------------------------------------------------------------------------- /Python/import.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/import.c -------------------------------------------------------------------------------- /Python/initconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/initconfig.c -------------------------------------------------------------------------------- /Python/makeopcodetargets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/makeopcodetargets.py -------------------------------------------------------------------------------- /Python/modsupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/modsupport.c -------------------------------------------------------------------------------- /Python/mysnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/mysnprintf.c -------------------------------------------------------------------------------- /Python/mystrtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/mystrtoul.c -------------------------------------------------------------------------------- /Python/pathconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/pathconfig.c -------------------------------------------------------------------------------- /Python/preconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/preconfig.c -------------------------------------------------------------------------------- /Python/pyctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/pyctype.c -------------------------------------------------------------------------------- /Python/pyhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/pyhash.c -------------------------------------------------------------------------------- /Python/pylifecycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/pylifecycle.c -------------------------------------------------------------------------------- /Python/pymath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/pymath.c -------------------------------------------------------------------------------- /Python/pystate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/pystate.c -------------------------------------------------------------------------------- /Python/pystrcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/pystrcmp.c -------------------------------------------------------------------------------- /Python/pystrtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/pystrtod.c -------------------------------------------------------------------------------- /Python/pythonrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/pythonrun.c -------------------------------------------------------------------------------- /Python/structmember.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/structmember.c -------------------------------------------------------------------------------- /Python/symtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/symtable.c -------------------------------------------------------------------------------- /Python/sysmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/sysmodule.c -------------------------------------------------------------------------------- /Python/traceback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/traceback.c -------------------------------------------------------------------------------- /Python/wordcode_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Python/wordcode_helpers.h -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/README.rst -------------------------------------------------------------------------------- /Tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/README -------------------------------------------------------------------------------- /Tools/c-analyzer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/README -------------------------------------------------------------------------------- /Tools/c-analyzer/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/TODO -------------------------------------------------------------------------------- /Tools/c-analyzer/c-globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c-globals.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/common/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/common/files.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/common/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/common/info.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/common/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/common/show.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/common/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/common/util.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/parser/declarations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/parser/declarations.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/parser/find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/parser/find.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/parser/naive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/parser/naive.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/parser/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/parser/preprocessor.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/parser/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/parser/source.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/symbols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/symbols/_nm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/symbols/_nm.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/symbols/find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/symbols/find.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/symbols/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/symbols/info.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/variables/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/variables/find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/variables/find.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/variables/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/variables/info.py -------------------------------------------------------------------------------- /Tools/c-analyzer/c_analyzer/variables/known.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/c_analyzer/variables/known.py -------------------------------------------------------------------------------- /Tools/c-analyzer/check-c-globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/check-c-globals.py -------------------------------------------------------------------------------- /Tools/c-analyzer/cpython/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/cpython/README -------------------------------------------------------------------------------- /Tools/c-analyzer/cpython/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/cpython/__init__.py -------------------------------------------------------------------------------- /Tools/c-analyzer/cpython/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/cpython/__main__.py -------------------------------------------------------------------------------- /Tools/c-analyzer/cpython/_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/cpython/_generate.py -------------------------------------------------------------------------------- /Tools/c-analyzer/cpython/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/cpython/files.py -------------------------------------------------------------------------------- /Tools/c-analyzer/cpython/find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/cpython/find.py -------------------------------------------------------------------------------- /Tools/c-analyzer/cpython/known.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/cpython/known.py -------------------------------------------------------------------------------- /Tools/c-analyzer/cpython/supported.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/cpython/supported.py -------------------------------------------------------------------------------- /Tools/c-analyzer/ignored-globals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/ignored-globals.txt -------------------------------------------------------------------------------- /Tools/c-analyzer/ignored.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/ignored.tsv -------------------------------------------------------------------------------- /Tools/c-analyzer/known.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/c-analyzer/known.tsv -------------------------------------------------------------------------------- /Tools/freeze/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/freeze/README -------------------------------------------------------------------------------- /Tools/freeze/bkfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/freeze/bkfile.py -------------------------------------------------------------------------------- /Tools/freeze/checkextensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/freeze/checkextensions.py -------------------------------------------------------------------------------- /Tools/freeze/checkextensions_win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/freeze/checkextensions_win32.py -------------------------------------------------------------------------------- /Tools/freeze/extensions_win32.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/freeze/extensions_win32.ini -------------------------------------------------------------------------------- /Tools/freeze/flag.py: -------------------------------------------------------------------------------- 1 | initialized = True 2 | print("Hello world!") 3 | -------------------------------------------------------------------------------- /Tools/freeze/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/freeze/freeze.py -------------------------------------------------------------------------------- /Tools/freeze/hello.py: -------------------------------------------------------------------------------- 1 | print('Hello world...') 2 | -------------------------------------------------------------------------------- /Tools/freeze/makeconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/freeze/makeconfig.py -------------------------------------------------------------------------------- /Tools/freeze/makefreeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/freeze/makefreeze.py -------------------------------------------------------------------------------- /Tools/freeze/makemakefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/freeze/makemakefile.py -------------------------------------------------------------------------------- /Tools/freeze/parsesetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/freeze/parsesetup.py -------------------------------------------------------------------------------- /Tools/freeze/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/freeze/test/Makefile -------------------------------------------------------------------------------- /Tools/freeze/test/ok.py: -------------------------------------------------------------------------------- 1 | import sys 2 | sys.exit(0) 3 | -------------------------------------------------------------------------------- /Tools/freeze/win32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/freeze/win32.html -------------------------------------------------------------------------------- /Tools/freeze/winmakemakefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/freeze/winmakemakefile.py -------------------------------------------------------------------------------- /Tools/peg_generator/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/.clang-format -------------------------------------------------------------------------------- /Tools/peg_generator/.gitignore: -------------------------------------------------------------------------------- 1 | peg_extension/parse.c 2 | data/xxl.py 3 | venv/ 4 | @data 5 | -------------------------------------------------------------------------------- /Tools/peg_generator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/Makefile -------------------------------------------------------------------------------- /Tools/peg_generator/data/cprog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/data/cprog.py -------------------------------------------------------------------------------- /Tools/peg_generator/data/top-pypi-packages-365-days.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/data/top-pypi-packages-365-days.json -------------------------------------------------------------------------------- /Tools/peg_generator/data/xxl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/data/xxl.zip -------------------------------------------------------------------------------- /Tools/peg_generator/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/mypy.ini -------------------------------------------------------------------------------- /Tools/peg_generator/peg_extension/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/peg_generator/peg_extension/peg_extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/peg_extension/peg_extension.c -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/__main__.py -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/ast_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/ast_dump.py -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/build.py -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/c_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/c_generator.py -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/first_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/first_sets.py -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/grammar.py -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/grammar_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/grammar_parser.py -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/grammar_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/grammar_visualizer.py -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/keywordgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/keywordgen.py -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/metagrammar.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/metagrammar.gram -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/parser.py -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/parser_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/parser_generator.py -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/python_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/python_generator.py -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/sccutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/sccutils.py -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/testutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/testutil.py -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pegen/tokenizer.py -------------------------------------------------------------------------------- /Tools/peg_generator/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/pyproject.toml -------------------------------------------------------------------------------- /Tools/peg_generator/requirements.pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/requirements.pip -------------------------------------------------------------------------------- /Tools/peg_generator/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | # This exists to let mypy find modules here 2 | -------------------------------------------------------------------------------- /Tools/peg_generator/scripts/ast_timings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/scripts/ast_timings.py -------------------------------------------------------------------------------- /Tools/peg_generator/scripts/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/scripts/benchmark.py -------------------------------------------------------------------------------- /Tools/peg_generator/scripts/download_pypi_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/scripts/download_pypi_packages.py -------------------------------------------------------------------------------- /Tools/peg_generator/scripts/find_max_nesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/scripts/find_max_nesting.py -------------------------------------------------------------------------------- /Tools/peg_generator/scripts/grammar_grapher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/scripts/grammar_grapher.py -------------------------------------------------------------------------------- /Tools/peg_generator/scripts/joinstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/scripts/joinstats.py -------------------------------------------------------------------------------- /Tools/peg_generator/scripts/test_parse_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/scripts/test_parse_directory.py -------------------------------------------------------------------------------- /Tools/peg_generator/scripts/test_pypi_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/peg_generator/scripts/test_pypi_packages.py -------------------------------------------------------------------------------- /Tools/scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/README -------------------------------------------------------------------------------- /Tools/scripts/abitype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/abitype.py -------------------------------------------------------------------------------- /Tools/scripts/analyze_dxp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/analyze_dxp.py -------------------------------------------------------------------------------- /Tools/scripts/byext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/byext.py -------------------------------------------------------------------------------- /Tools/scripts/byteyears.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/byteyears.py -------------------------------------------------------------------------------- /Tools/scripts/combinerefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/combinerefs.py -------------------------------------------------------------------------------- /Tools/scripts/copytime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/copytime.py -------------------------------------------------------------------------------- /Tools/scripts/crlf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/crlf.py -------------------------------------------------------------------------------- /Tools/scripts/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/diff.py -------------------------------------------------------------------------------- /Tools/scripts/dutree.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/dutree.doc -------------------------------------------------------------------------------- /Tools/scripts/dutree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/dutree.py -------------------------------------------------------------------------------- /Tools/scripts/eptags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/eptags.py -------------------------------------------------------------------------------- /Tools/scripts/find-uname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/find-uname.py -------------------------------------------------------------------------------- /Tools/scripts/find_recursionlimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/find_recursionlimit.py -------------------------------------------------------------------------------- /Tools/scripts/finddiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/finddiv.py -------------------------------------------------------------------------------- /Tools/scripts/findlinksto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/findlinksto.py -------------------------------------------------------------------------------- /Tools/scripts/findnocoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/findnocoding.py -------------------------------------------------------------------------------- /Tools/scripts/fixcid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/fixcid.py -------------------------------------------------------------------------------- /Tools/scripts/fixdiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/fixdiv.py -------------------------------------------------------------------------------- /Tools/scripts/fixheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/fixheader.py -------------------------------------------------------------------------------- /Tools/scripts/fixps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/fixps.py -------------------------------------------------------------------------------- /Tools/scripts/generate_opcode_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/generate_opcode_h.py -------------------------------------------------------------------------------- /Tools/scripts/generate_symbol_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/generate_symbol_py.py -------------------------------------------------------------------------------- /Tools/scripts/generate_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/generate_token.py -------------------------------------------------------------------------------- /Tools/scripts/ifdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/ifdef.py -------------------------------------------------------------------------------- /Tools/scripts/import_diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/import_diagnostics.py -------------------------------------------------------------------------------- /Tools/scripts/lfcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/lfcr.py -------------------------------------------------------------------------------- /Tools/scripts/linktree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/linktree.py -------------------------------------------------------------------------------- /Tools/scripts/lll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/lll.py -------------------------------------------------------------------------------- /Tools/scripts/make_ctype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/make_ctype.py -------------------------------------------------------------------------------- /Tools/scripts/md5sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/md5sum.py -------------------------------------------------------------------------------- /Tools/scripts/mkreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/mkreal.py -------------------------------------------------------------------------------- /Tools/scripts/ndiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/ndiff.py -------------------------------------------------------------------------------- /Tools/scripts/nm2def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/nm2def.py -------------------------------------------------------------------------------- /Tools/scripts/objgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/objgraph.py -------------------------------------------------------------------------------- /Tools/scripts/parseentities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/parseentities.py -------------------------------------------------------------------------------- /Tools/scripts/patchcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/patchcheck.py -------------------------------------------------------------------------------- /Tools/scripts/pathfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/pathfix.py -------------------------------------------------------------------------------- /Tools/scripts/pdeps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/pdeps.py -------------------------------------------------------------------------------- /Tools/scripts/pep384_macrocheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/pep384_macrocheck.py -------------------------------------------------------------------------------- /Tools/scripts/pickle2db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/pickle2db.py -------------------------------------------------------------------------------- /Tools/scripts/pindent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/pindent.py -------------------------------------------------------------------------------- /Tools/scripts/ptags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/ptags.py -------------------------------------------------------------------------------- /Tools/scripts/pysource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/pysource.py -------------------------------------------------------------------------------- /Tools/scripts/reindent-rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/reindent-rst.py -------------------------------------------------------------------------------- /Tools/scripts/reindent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/reindent.py -------------------------------------------------------------------------------- /Tools/scripts/rgrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/rgrep.py -------------------------------------------------------------------------------- /Tools/scripts/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/serve.py -------------------------------------------------------------------------------- /Tools/scripts/smelly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/smelly.py -------------------------------------------------------------------------------- /Tools/scripts/suff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/suff.py -------------------------------------------------------------------------------- /Tools/scripts/untabify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/untabify.py -------------------------------------------------------------------------------- /Tools/scripts/update_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/update_file.py -------------------------------------------------------------------------------- /Tools/scripts/var_access_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/var_access_benchmark.py -------------------------------------------------------------------------------- /Tools/scripts/which.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/scripts/which.py -------------------------------------------------------------------------------- /Tools/unicode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/Makefile -------------------------------------------------------------------------------- /Tools/unicode/comparecodecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/comparecodecs.py -------------------------------------------------------------------------------- /Tools/unicode/gencjkcodecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/gencjkcodecs.py -------------------------------------------------------------------------------- /Tools/unicode/gencodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/gencodec.py -------------------------------------------------------------------------------- /Tools/unicode/genmap_japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/genmap_japanese.py -------------------------------------------------------------------------------- /Tools/unicode/genmap_korean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/genmap_korean.py -------------------------------------------------------------------------------- /Tools/unicode/genmap_schinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/genmap_schinese.py -------------------------------------------------------------------------------- /Tools/unicode/genmap_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/genmap_support.py -------------------------------------------------------------------------------- /Tools/unicode/genwincodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/genwincodec.py -------------------------------------------------------------------------------- /Tools/unicode/genwincodecs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/genwincodecs.bat -------------------------------------------------------------------------------- /Tools/unicode/listcodecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/listcodecs.py -------------------------------------------------------------------------------- /Tools/unicode/makeunicodedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/makeunicodedata.py -------------------------------------------------------------------------------- /Tools/unicode/mkstringprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/mkstringprep.py -------------------------------------------------------------------------------- /Tools/unicode/python-mappings/CP1140.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/python-mappings/CP1140.TXT -------------------------------------------------------------------------------- /Tools/unicode/python-mappings/CP273.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/python-mappings/CP273.TXT -------------------------------------------------------------------------------- /Tools/unicode/python-mappings/GB2312.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/python-mappings/GB2312.TXT -------------------------------------------------------------------------------- /Tools/unicode/python-mappings/KOI8-U.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/python-mappings/KOI8-U.TXT -------------------------------------------------------------------------------- /Tools/unicode/python-mappings/TIS-620.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/python-mappings/TIS-620.TXT -------------------------------------------------------------------------------- /Tools/unicode/python-mappings/diff/jisx0213-2000-std.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/python-mappings/diff/jisx0213-2000-std.txt.diff -------------------------------------------------------------------------------- /Tools/unicode/python-mappings/diff/jisx0213-2004-std.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/python-mappings/diff/jisx0213-2004-std.txt.diff -------------------------------------------------------------------------------- /Tools/unicode/python-mappings/gb-18030-2000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/python-mappings/gb-18030-2000.xml -------------------------------------------------------------------------------- /Tools/unicode/python-mappings/jisx0213-2004-std.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/Tools/unicode/python-mappings/jisx0213-2004-std.txt -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/configure.ac -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/install-sh -------------------------------------------------------------------------------- /m4/ax_c_float_words_bigendian.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/m4/ax_c_float_words_bigendian.m4 -------------------------------------------------------------------------------- /m4/ax_check_openssl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/m4/ax_check_openssl.m4 -------------------------------------------------------------------------------- /pyconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabeaz/cpython_hack/HEAD/pyconfig.h.in --------------------------------------------------------------------------------