├── .azure-pipelines ├── ci.yml ├── docs-steps.yml ├── macos-steps.yml ├── posix-deps-apt.sh ├── posix-steps.yml ├── pr.yml ├── prebuild-checks.yml ├── windows-layout-steps.yml ├── windows-release.yml ├── windows-release │ ├── build-steps.yml │ ├── checkout.yml │ ├── find-sdk.yml │ ├── gpg-sign.yml │ ├── layout-command.yml │ ├── mingw-lib.yml │ ├── msi-steps.yml │ ├── stage-build.yml │ ├── stage-layout-embed.yml │ ├── stage-layout-full.yml │ ├── stage-layout-msix.yml │ ├── stage-layout-nuget.yml │ ├── stage-msi.yml │ ├── stage-pack-msix.yml │ ├── stage-pack-nuget.yml │ ├── stage-publish-nugetorg.yml │ ├── stage-publish-pythonorg.yml │ ├── stage-publish-store.yml │ ├── stage-sign.yml │ ├── stage-test-embed.yml │ ├── stage-test-msi.yml │ └── stage-test-nuget.yml └── windows-steps.yml ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── CONTRIBUTING.rst ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── dependabot.yml ├── problem-matchers │ ├── gcc.json │ ├── msvc.json │ └── sphinx.json └── workflows │ ├── build.yml │ ├── build_msi.yml │ ├── doc.yml │ ├── posix-deps-apt.sh │ ├── regen-abidump.sh │ ├── stale.yml │ └── verify-ensurepip-wheels.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Doc ├── Makefile ├── README.rst ├── about.rst ├── bugs.rst ├── c-api │ ├── abstract.rst │ ├── allocation.rst │ ├── apiabiversion.rst │ ├── arg.rst │ ├── bool.rst │ ├── buffer.rst │ ├── bytearray.rst │ ├── bytes.rst │ ├── call.rst │ ├── capsule.rst │ ├── cell.rst │ ├── code.rst │ ├── codec.rst │ ├── complex.rst │ ├── concrete.rst │ ├── contextvars.rst │ ├── conversion.rst │ ├── coro.rst │ ├── datetime.rst │ ├── descriptor.rst │ ├── dict.rst │ ├── exceptions.rst │ ├── file.rst │ ├── float.rst │ ├── function.rst │ ├── gcsupport.rst │ ├── gen.rst │ ├── import.rst │ ├── index.rst │ ├── init.rst │ ├── init_config.rst │ ├── intro.rst │ ├── iter.rst │ ├── iterator.rst │ ├── list.rst │ ├── long.rst │ ├── mapping.rst │ ├── marshal.rst │ ├── memory.rst │ ├── memoryview.rst │ ├── method.rst │ ├── module.rst │ ├── none.rst │ ├── number.rst │ ├── objbuffer.rst │ ├── object.rst │ ├── objimpl.rst │ ├── refcounting.rst │ ├── reflection.rst │ ├── sequence.rst │ ├── set.rst │ ├── slice.rst │ ├── stable.rst │ ├── structures.rst │ ├── sys.rst │ ├── tuple.rst │ ├── type.rst │ ├── typehints.rst │ ├── typeobj.rst │ ├── unicode.rst │ ├── utilities.rst │ ├── veryhigh.rst │ └── weakref.rst ├── conf.py ├── contents.rst ├── copyright.rst ├── data │ ├── python3.10.abi │ ├── refcounts.dat │ └── stable_abi.dat ├── distributing │ └── index.rst ├── distutils │ ├── _setuptools_disclaimer.rst │ ├── apiref.rst │ ├── builtdist.rst │ ├── commandref.rst │ ├── configfile.rst │ ├── examples.rst │ ├── extending.rst │ ├── index.rst │ ├── introduction.rst │ ├── packageindex.rst │ ├── setupscript.rst │ ├── sourcedist.rst │ └── uploading.rst ├── docutils.conf ├── extending │ ├── building.rst │ ├── embedding.rst │ ├── extending.rst │ ├── index.rst │ ├── newtypes.rst │ ├── newtypes_tutorial.rst │ └── windows.rst ├── faq │ ├── design.rst │ ├── extending.rst │ ├── general.rst │ ├── gui.rst │ ├── index.rst │ ├── installed.rst │ ├── library.rst │ ├── programming.rst │ ├── python-video-icon.png │ └── windows.rst ├── glossary.rst ├── howto │ ├── annotations.rst │ ├── argparse.rst │ ├── clinic.rst │ ├── cporting.rst │ ├── curses.rst │ ├── descriptor.rst │ ├── functional.rst │ ├── index.rst │ ├── instrumentation.rst │ ├── ipaddress.rst │ ├── logging-cookbook.rst │ ├── logging.rst │ ├── logging_flow.png │ ├── pyporting.rst │ ├── regex.rst │ ├── sockets.rst │ ├── sorting.rst │ ├── unicode.rst │ └── urllib2.rst ├── includes │ ├── custom.c │ ├── custom2.c │ ├── custom3.c │ ├── custom4.c │ ├── dbpickle.py │ ├── email-alternative.py │ ├── email-dir.py │ ├── email-headers.py │ ├── email-mime.py │ ├── email-read-alternative.py │ ├── email-simple.py │ ├── email-unpack.py │ ├── minidom-example.py │ ├── mp_newtype.py │ ├── mp_pool.py │ ├── mp_workers.py │ ├── run-func.c │ ├── setup.py │ ├── sqlite3 │ │ └── pysqlite_datetime.py │ ├── sublist.c │ ├── test.py │ ├── turtle-star.py │ ├── typestruct.h │ └── tzinfo_examples.py ├── install │ └── index.rst ├── installing │ └── index.rst ├── library │ ├── 2to3.rst │ ├── __future__.rst │ ├── __main__.rst │ ├── _thread.rst │ ├── abc.rst │ ├── aifc.rst │ ├── allos.rst │ ├── archiving.rst │ ├── argparse.rst │ ├── array.rst │ ├── ast.rst │ ├── asynchat.rst │ ├── asyncio-api-index.rst │ ├── asyncio-dev.rst │ ├── asyncio-eventloop.rst │ ├── asyncio-exceptions.rst │ ├── asyncio-future.rst │ ├── asyncio-llapi-index.rst │ ├── asyncio-platforms.rst │ ├── asyncio-policy.rst │ ├── asyncio-protocol.rst │ ├── asyncio-queue.rst │ ├── asyncio-stream.rst │ ├── asyncio-subprocess.rst │ ├── asyncio-sync.rst │ ├── asyncio-task.rst │ ├── asyncio.rst │ ├── asyncore.rst │ ├── atexit.rst │ ├── audioop.rst │ ├── audit_events.rst │ ├── base64.rst │ ├── bdb.rst │ ├── binary.rst │ ├── binascii.rst │ ├── binhex.rst │ ├── bisect.rst │ ├── builtins.rst │ ├── bz2.rst │ ├── calendar.rst │ ├── cgi.rst │ ├── cgitb.rst │ ├── chunk.rst │ ├── cmath.rst │ ├── cmd.rst │ ├── code.rst │ ├── codecs.rst │ ├── codeop.rst │ ├── collections.abc.rst │ ├── collections.rst │ ├── colorsys.rst │ ├── compileall.rst │ ├── concurrency.rst │ ├── concurrent.futures.rst │ ├── concurrent.rst │ ├── configparser.rst │ ├── constants.rst │ ├── contextlib.rst │ ├── contextvars.rst │ ├── copy.rst │ ├── copyreg.rst │ ├── crypt.rst │ ├── crypto.rst │ ├── csv.rst │ ├── ctypes.rst │ ├── curses.ascii.rst │ ├── curses.panel.rst │ ├── curses.rst │ ├── custominterp.rst │ ├── dataclasses.rst │ ├── datatypes.rst │ ├── datetime.rst │ ├── dbm.rst │ ├── debug.rst │ ├── decimal.rst │ ├── development.rst │ ├── devmode.rst │ ├── dialog.rst │ ├── difflib.rst │ ├── dis.rst │ ├── distribution.rst │ ├── distutils.rst │ ├── doctest.rst │ ├── email.charset.rst │ ├── email.compat32-message.rst │ ├── email.contentmanager.rst │ ├── email.encoders.rst │ ├── email.errors.rst │ ├── email.examples.rst │ ├── email.generator.rst │ ├── email.header.rst │ ├── email.headerregistry.rst │ ├── email.iterators.rst │ ├── email.message.rst │ ├── email.mime.rst │ ├── email.parser.rst │ ├── email.policy.rst │ ├── email.rst │ ├── email.utils.rst │ ├── ensurepip.rst │ ├── enum.rst │ ├── errno.rst │ ├── exceptions.rst │ ├── faulthandler.rst │ ├── fcntl.rst │ ├── filecmp.rst │ ├── fileformats.rst │ ├── fileinput.rst │ ├── filesys.rst │ ├── fnmatch.rst │ ├── fractions.rst │ ├── frameworks.rst │ ├── ftplib.rst │ ├── functional.rst │ ├── functions.rst │ ├── functools.rst │ ├── gc.rst │ ├── getopt.rst │ ├── getpass.rst │ ├── gettext.rst │ ├── glob.rst │ ├── graphlib.rst │ ├── grp.rst │ ├── gzip.rst │ ├── hashlib-blake2-tree.png │ ├── hashlib.rst │ ├── heapq.rst │ ├── hmac.rst │ ├── html.entities.rst │ ├── html.parser.rst │ ├── html.rst │ ├── http.client.rst │ ├── http.cookiejar.rst │ ├── http.cookies.rst │ ├── http.rst │ ├── http.server.rst │ ├── i18n.rst │ ├── idle.rst │ ├── imaplib.rst │ ├── imghdr.rst │ ├── imp.rst │ ├── importlib.metadata.rst │ ├── importlib.rst │ ├── index.rst │ ├── inspect.rst │ ├── internet.rst │ ├── intro.rst │ ├── io.rst │ ├── ipaddress.rst │ ├── ipc.rst │ ├── itertools.rst │ ├── json.rst │ ├── keyword.rst │ ├── language.rst │ ├── linecache.rst │ ├── locale.rst │ ├── logging.config.rst │ ├── logging.handlers.rst │ ├── logging.rst │ ├── lzma.rst │ ├── mailbox.rst │ ├── mailcap.rst │ ├── markup.rst │ ├── marshal.rst │ ├── math.rst │ ├── mimetypes.rst │ ├── mm.rst │ ├── mmap.rst │ ├── modulefinder.rst │ ├── modules.rst │ ├── msilib.rst │ ├── msvcrt.rst │ ├── multiprocessing.rst │ ├── multiprocessing.shared_memory.rst │ ├── netdata.rst │ ├── netrc.rst │ ├── nis.rst │ ├── nntplib.rst │ ├── numbers.rst │ ├── numeric.rst │ ├── operator.rst │ ├── optparse.rst │ ├── os.path.rst │ ├── os.rst │ ├── ossaudiodev.rst │ ├── pathlib-inheritance.png │ ├── pathlib-inheritance.svg │ ├── pathlib.rst │ ├── pdb.rst │ ├── persistence.rst │ ├── pickle.rst │ ├── pickletools.rst │ ├── pipes.rst │ ├── pkgutil.rst │ ├── platform.rst │ ├── plistlib.rst │ ├── poplib.rst │ ├── posix.rst │ ├── pprint.rst │ ├── profile.rst │ ├── pty.rst │ ├── pwd.rst │ ├── py_compile.rst │ ├── pyclbr.rst │ ├── pydoc.rst │ ├── pyexpat.rst │ ├── python.rst │ ├── queue.rst │ ├── quopri.rst │ ├── random.rst │ ├── re.rst │ ├── readline.rst │ ├── reprlib.rst │ ├── resource.rst │ ├── rlcompleter.rst │ ├── runpy.rst │ ├── sched.rst │ ├── secrets.rst │ ├── security_warnings.rst │ ├── select.rst │ ├── selectors.rst │ ├── shelve.rst │ ├── shlex.rst │ ├── shutil.rst │ ├── signal.rst │ ├── site.rst │ ├── smtpd.rst │ ├── smtplib.rst │ ├── sndhdr.rst │ ├── socket.rst │ ├── socketserver.rst │ ├── spwd.rst │ ├── sqlite3.rst │ ├── ssl.rst │ ├── stat.rst │ ├── statistics.rst │ ├── stdtypes.rst │ ├── string.rst │ ├── stringprep.rst │ ├── struct.rst │ ├── subprocess.rst │ ├── sunau.rst │ ├── superseded.rst │ ├── symtable.rst │ ├── sys.rst │ ├── sysconfig.rst │ ├── syslog.rst │ ├── tabnanny.rst │ ├── tarfile.rst │ ├── telnetlib.rst │ ├── tempfile.rst │ ├── termios.rst │ ├── test.rst │ ├── text.rst │ ├── textwrap.rst │ ├── threading.rst │ ├── time.rst │ ├── timeit.rst │ ├── tk.rst │ ├── tk_msg.png │ ├── tkinter.colorchooser.rst │ ├── tkinter.dnd.rst │ ├── tkinter.font.rst │ ├── tkinter.messagebox.rst │ ├── tkinter.rst │ ├── tkinter.scrolledtext.rst │ ├── tkinter.tix.rst │ ├── tkinter.ttk.rst │ ├── token-list.inc │ ├── token.rst │ ├── tokenize.rst │ ├── trace.rst │ ├── traceback.rst │ ├── tracemalloc.rst │ ├── tty.rst │ ├── tulip_coro.dia │ ├── tulip_coro.png │ ├── turtle-star.pdf │ ├── turtle-star.png │ ├── turtle-star.ps │ ├── turtle.rst │ ├── types.rst │ ├── typing.rst │ ├── unicodedata.rst │ ├── unittest.mock-examples.rst │ ├── unittest.mock.rst │ ├── unittest.rst │ ├── unix.rst │ ├── urllib.error.rst │ ├── urllib.parse.rst │ ├── urllib.request.rst │ ├── urllib.robotparser.rst │ ├── urllib.rst │ ├── uu.rst │ ├── uuid.rst │ ├── venv.rst │ ├── warnings.rst │ ├── wave.rst │ ├── weakref.rst │ ├── webbrowser.rst │ ├── windows.rst │ ├── winreg.rst │ ├── winsound.rst │ ├── wsgiref.rst │ ├── xdrlib.rst │ ├── xml.dom.minidom.rst │ ├── xml.dom.pulldom.rst │ ├── xml.dom.rst │ ├── xml.etree.elementtree.rst │ ├── xml.rst │ ├── xml.sax.handler.rst │ ├── xml.sax.reader.rst │ ├── xml.sax.rst │ ├── xml.sax.utils.rst │ ├── xmlrpc.client.rst │ ├── xmlrpc.rst │ ├── xmlrpc.server.rst │ ├── zipapp.rst │ ├── zipfile.rst │ ├── zipimport.rst │ ├── zlib.rst │ └── zoneinfo.rst ├── license.rst ├── make.bat ├── reference │ ├── compound_stmts.rst │ ├── datamodel.rst │ ├── executionmodel.rst │ ├── expressions.rst │ ├── grammar.rst │ ├── import.rst │ ├── index.rst │ ├── introduction.rst │ ├── lexical_analysis.rst │ ├── simple_stmts.rst │ └── toplevel_components.rst ├── requirements.txt ├── runtime.txt ├── tools │ ├── extensions │ │ ├── asdl_highlight.py │ │ ├── c_annotations.py │ │ ├── escape4chm.py │ │ ├── glossary_search.py │ │ ├── patchlevel.py │ │ ├── peg_highlight.py │ │ ├── pyspecific.py │ │ └── suspicious.py │ ├── rstlint.py │ ├── static │ │ └── changelog_search.js │ ├── susp-ignored.csv │ └── templates │ │ ├── customsourcelink.html │ │ ├── download.html │ │ ├── dummy.html │ │ ├── indexcontent.html │ │ ├── indexsidebar.html │ │ ├── layout.html │ │ ├── opensearch.xml │ │ └── search.html ├── tutorial │ ├── appendix.rst │ ├── appetite.rst │ ├── classes.rst │ ├── controlflow.rst │ ├── datastructures.rst │ ├── errors.rst │ ├── floatingpoint.rst │ ├── index.rst │ ├── inputoutput.rst │ ├── interactive.rst │ ├── interpreter.rst │ ├── introduction.rst │ ├── modules.rst │ ├── stdlib.rst │ ├── stdlib2.rst │ ├── venv.rst │ └── whatnow.rst ├── using │ ├── cmdline.rst │ ├── configure.rst │ ├── editors.rst │ ├── index.rst │ ├── mac.rst │ ├── unix.rst │ ├── venv-create.inc │ ├── win_installer.png │ └── windows.rst └── whatsnew │ ├── 2.0.rst │ ├── 2.1.rst │ ├── 2.2.rst │ ├── 2.3.rst │ ├── 2.4.rst │ ├── 2.5.rst │ ├── 2.6.rst │ ├── 2.7.rst │ ├── 3.0.rst │ ├── 3.1.rst │ ├── 3.10.rst │ ├── 3.2.rst │ ├── 3.3.rst │ ├── 3.4.rst │ ├── 3.5.rst │ ├── 3.6.rst │ ├── 3.7.rst │ ├── 3.8.rst │ ├── 3.9.rst │ ├── changelog.rst │ └── index.rst ├── Grammar ├── Tokens └── python.gram ├── Include ├── Python.h ├── README.rst ├── abstract.h ├── bltinmodule.h ├── boolobject.h ├── bytearrayobject.h ├── bytesobject.h ├── cellobject.h ├── ceval.h ├── classobject.h ├── code.h ├── codecs.h ├── compile.h ├── complexobject.h ├── context.h ├── cpython │ ├── abstract.h │ ├── bytearrayobject.h │ ├── bytesobject.h │ ├── ceval.h │ ├── code.h │ ├── compile.h │ ├── dictobject.h │ ├── fileobject.h │ ├── fileutils.h │ ├── frameobject.h │ ├── import.h │ ├── initconfig.h │ ├── interpreteridobject.h │ ├── listobject.h │ ├── methodobject.h │ ├── object.h │ ├── objimpl.h │ ├── odictobject.h │ ├── picklebufobject.h │ ├── pyctype.h │ ├── pydebug.h │ ├── pyerrors.h │ ├── pyfpe.h │ ├── pylifecycle.h │ ├── pymem.h │ ├── pystate.h │ ├── pythonrun.h │ ├── pytime.h │ ├── sysmodule.h │ ├── traceback.h │ ├── tupleobject.h │ └── unicodeobject.h ├── datetime.h ├── descrobject.h ├── dictobject.h ├── dynamic_annotations.h ├── enumobject.h ├── errcode.h ├── eval.h ├── exports.h ├── fileobject.h ├── fileutils.h ├── floatobject.h ├── frameobject.h ├── funcobject.h ├── genericaliasobject.h ├── genobject.h ├── import.h ├── internal │ ├── pycore_abstract.h │ ├── pycore_accu.h │ ├── pycore_asdl.h │ ├── pycore_ast.h │ ├── pycore_ast_state.h │ ├── pycore_atomic.h │ ├── pycore_atomic_funcs.h │ ├── pycore_bitutils.h │ ├── pycore_blocks_output_buffer.h │ ├── pycore_bytes_methods.h │ ├── pycore_call.h │ ├── pycore_ceval.h │ ├── pycore_code.h │ ├── pycore_compile.h │ ├── pycore_condvar.h │ ├── pycore_context.h │ ├── pycore_dtoa.h │ ├── pycore_fileutils.h │ ├── pycore_format.h │ ├── pycore_gc.h │ ├── pycore_getopt.h │ ├── pycore_gil.h │ ├── pycore_hamt.h │ ├── pycore_hashtable.h │ ├── pycore_import.h │ ├── pycore_initconfig.h │ ├── pycore_interp.h │ ├── pycore_list.h │ ├── pycore_long.h │ ├── pycore_moduleobject.h │ ├── pycore_object.h │ ├── pycore_parser.h │ ├── pycore_pathconfig.h │ ├── pycore_pyarena.h │ ├── pycore_pyerrors.h │ ├── pycore_pyhash.h │ ├── pycore_pylifecycle.h │ ├── pycore_pymem.h │ ├── pycore_pystate.h │ ├── pycore_runtime.h │ ├── pycore_structseq.h │ ├── pycore_symtable.h │ ├── pycore_sysmodule.h │ ├── pycore_traceback.h │ ├── pycore_tuple.h │ ├── pycore_ucnhash.h │ ├── pycore_unionobject.h │ └── pycore_warnings.h ├── interpreteridobject.h ├── intrcheck.h ├── iterobject.h ├── listobject.h ├── longintrepr.h ├── longobject.h ├── marshal.h ├── memoryobject.h ├── methodobject.h ├── modsupport.h ├── moduleobject.h ├── namespaceobject.h ├── object.h ├── objimpl.h ├── opcode.h ├── osdefs.h ├── osmodule.h ├── patchlevel.h ├── py_curses.h ├── pycapsule.h ├── pydtrace.d ├── pydtrace.h ├── pyerrors.h ├── pyexpat.h ├── pyframe.h ├── pyhash.h ├── pylifecycle.h ├── pymacconfig.h ├── pymacro.h ├── pymath.h ├── pymem.h ├── pyport.h ├── pystate.h ├── pystrcmp.h ├── pystrhex.h ├── pystrtod.h ├── pythonrun.h ├── pythread.h ├── rangeobject.h ├── setobject.h ├── sliceobject.h ├── structmember.h ├── structseq.h ├── sysmodule.h ├── token.h ├── traceback.h ├── tracemalloc.h ├── tupleobject.h ├── typeslots.h ├── unicodeobject.h ├── warnings.h └── weakrefobject.h ├── LICENSE ├── Lib ├── __future__.py ├── __phello__.foo.py ├── _aix_support.py ├── _bootsubprocess.py ├── _collections_abc.py ├── _compat_pickle.py ├── _compression.py ├── _markupbase.py ├── _osx_support.py ├── _py_abc.py ├── _pydecimal.py ├── _pyio.py ├── _sitebuiltins.py ├── _strptime.py ├── _threading_local.py ├── _weakrefset.py ├── abc.py ├── aifc.py ├── antigravity.py ├── argparse.py ├── ast.py ├── asynchat.py ├── asyncio │ ├── __init__.py │ ├── __main__.py │ ├── base_events.py │ ├── base_futures.py │ ├── base_subprocess.py │ ├── base_tasks.py │ ├── constants.py │ ├── coroutines.py │ ├── events.py │ ├── exceptions.py │ ├── format_helpers.py │ ├── futures.py │ ├── locks.py │ ├── log.py │ ├── mixins.py │ ├── proactor_events.py │ ├── protocols.py │ ├── queues.py │ ├── runners.py │ ├── selector_events.py │ ├── sslproto.py │ ├── staggered.py │ ├── streams.py │ ├── subprocess.py │ ├── tasks.py │ ├── threads.py │ ├── transports.py │ ├── trsock.py │ ├── unix_events.py │ ├── windows_events.py │ └── windows_utils.py ├── asyncore.py ├── base64.py ├── bdb.py ├── binhex.py ├── bisect.py ├── bz2.py ├── cProfile.py ├── calendar.py ├── cgi.py ├── cgitb.py ├── chunk.py ├── cmd.py ├── code.py ├── codecs.py ├── codeop.py ├── collections │ ├── __init__.py │ └── abc.py ├── colorsys.py ├── compileall.py ├── concurrent │ ├── __init__.py │ └── futures │ │ ├── __init__.py │ │ ├── _base.py │ │ ├── process.py │ │ └── thread.py ├── configparser.py ├── contextlib.py ├── contextvars.py ├── copy.py ├── copyreg.py ├── crypt.py ├── csv.py ├── ctypes │ ├── __init__.py │ ├── _aix.py │ ├── _endian.py │ ├── macholib │ │ ├── README.ctypes │ │ ├── __init__.py │ │ ├── dyld.py │ │ ├── dylib.py │ │ ├── fetch_macholib │ │ ├── fetch_macholib.bat │ │ └── framework.py │ ├── test │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── test_anon.py │ │ ├── test_array_in_pointer.py │ │ ├── test_arrays.py │ │ ├── test_as_parameter.py │ │ ├── test_bitfields.py │ │ ├── test_buffers.py │ │ ├── test_bytes.py │ │ ├── test_byteswap.py │ │ ├── test_callbacks.py │ │ ├── test_cast.py │ │ ├── test_cfuncs.py │ │ ├── test_checkretval.py │ │ ├── test_delattr.py │ │ ├── test_errno.py │ │ ├── test_find.py │ │ ├── test_frombuffer.py │ │ ├── test_funcptr.py │ │ ├── test_functions.py │ │ ├── test_incomplete.py │ │ ├── test_init.py │ │ ├── test_internals.py │ │ ├── test_keeprefs.py │ │ ├── test_libc.py │ │ ├── test_loading.py │ │ ├── test_macholib.py │ │ ├── test_memfunctions.py │ │ ├── test_numbers.py │ │ ├── test_objects.py │ │ ├── test_parameters.py │ │ ├── test_pep3118.py │ │ ├── test_pickling.py │ │ ├── test_pointers.py │ │ ├── test_prototypes.py │ │ ├── test_python_api.py │ │ ├── test_random_things.py │ │ ├── test_refcounts.py │ │ ├── test_repr.py │ │ ├── test_returnfuncptrs.py │ │ ├── test_simplesubclasses.py │ │ ├── test_sizes.py │ │ ├── test_slicing.py │ │ ├── test_stringptr.py │ │ ├── test_strings.py │ │ ├── test_struct_fields.py │ │ ├── test_structures.py │ │ ├── test_unaligned_structures.py │ │ ├── test_unicode.py │ │ ├── test_values.py │ │ ├── test_varsize_struct.py │ │ ├── test_win32.py │ │ └── test_wintypes.py │ ├── util.py │ └── wintypes.py ├── curses │ ├── __init__.py │ ├── ascii.py │ ├── has_key.py │ ├── panel.py │ └── textpad.py ├── dataclasses.py ├── datetime.py ├── dbm │ ├── __init__.py │ ├── dumb.py │ ├── gnu.py │ └── ndbm.py ├── decimal.py ├── difflib.py ├── dis.py ├── distutils │ ├── README │ ├── __init__.py │ ├── _msvccompiler.py │ ├── archive_util.py │ ├── bcppcompiler.py │ ├── ccompiler.py │ ├── cmd.py │ ├── command │ │ ├── __init__.py │ │ ├── bdist.py │ │ ├── bdist_dumb.py │ │ ├── bdist_msi.py │ │ ├── bdist_rpm.py │ │ ├── build.py │ │ ├── build_clib.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── build_scripts.py │ │ ├── check.py │ │ ├── clean.py │ │ ├── command_template │ │ ├── config.py │ │ ├── install.py │ │ ├── install_data.py │ │ ├── install_egg_info.py │ │ ├── install_headers.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── register.py │ │ ├── sdist.py │ │ └── upload.py │ ├── config.py │ ├── core.py │ ├── cygwinccompiler.py │ ├── debug.py │ ├── dep_util.py │ ├── dir_util.py │ ├── dist.py │ ├── errors.py │ ├── extension.py │ ├── fancy_getopt.py │ ├── file_util.py │ ├── filelist.py │ ├── log.py │ ├── msvc9compiler.py │ ├── msvccompiler.py │ ├── spawn.py │ ├── sysconfig.py │ ├── tests │ │ ├── Setup.sample │ │ ├── __init__.py │ │ ├── includetest.rst │ │ ├── support.py │ │ ├── test_archive_util.py │ │ ├── test_bdist.py │ │ ├── test_bdist_dumb.py │ │ ├── test_bdist_msi.py │ │ ├── test_bdist_rpm.py │ │ ├── test_build.py │ │ ├── test_build_clib.py │ │ ├── test_build_ext.py │ │ ├── test_build_py.py │ │ ├── test_build_scripts.py │ │ ├── test_check.py │ │ ├── test_clean.py │ │ ├── test_cmd.py │ │ ├── test_config.py │ │ ├── test_config_cmd.py │ │ ├── test_core.py │ │ ├── test_cygwinccompiler.py │ │ ├── test_dep_util.py │ │ ├── test_dir_util.py │ │ ├── test_dist.py │ │ ├── test_extension.py │ │ ├── test_file_util.py │ │ ├── test_filelist.py │ │ ├── test_install.py │ │ ├── test_install_data.py │ │ ├── test_install_headers.py │ │ ├── test_install_lib.py │ │ ├── test_install_scripts.py │ │ ├── test_log.py │ │ ├── test_msvc9compiler.py │ │ ├── test_msvccompiler.py │ │ ├── test_register.py │ │ ├── test_sdist.py │ │ ├── test_spawn.py │ │ ├── test_sysconfig.py │ │ ├── test_text_file.py │ │ ├── test_unixccompiler.py │ │ ├── test_upload.py │ │ ├── test_util.py │ │ ├── test_version.py │ │ └── test_versionpredicate.py │ ├── text_file.py │ ├── unixccompiler.py │ ├── util.py │ ├── version.py │ └── versionpredicate.py ├── doctest.py ├── email │ ├── __init__.py │ ├── _encoded_words.py │ ├── _header_value_parser.py │ ├── _parseaddr.py │ ├── _policybase.py │ ├── architecture.rst │ ├── base64mime.py │ ├── charset.py │ ├── contentmanager.py │ ├── encoders.py │ ├── errors.py │ ├── feedparser.py │ ├── generator.py │ ├── header.py │ ├── headerregistry.py │ ├── iterators.py │ ├── message.py │ ├── mime │ │ ├── __init__.py │ │ ├── application.py │ │ ├── audio.py │ │ ├── base.py │ │ ├── image.py │ │ ├── message.py │ │ ├── multipart.py │ │ ├── nonmultipart.py │ │ └── text.py │ ├── parser.py │ ├── policy.py │ ├── quoprimime.py │ └── utils.py ├── encodings │ ├── __init__.py │ ├── aliases.py │ ├── ascii.py │ ├── base64_codec.py │ ├── big5.py │ ├── big5hkscs.py │ ├── bz2_codec.py │ ├── charmap.py │ ├── cp037.py │ ├── cp1006.py │ ├── cp1026.py │ ├── cp1125.py │ ├── cp1140.py │ ├── cp1250.py │ ├── cp1251.py │ ├── cp1252.py │ ├── cp1253.py │ ├── cp1254.py │ ├── cp1255.py │ ├── cp1256.py │ ├── cp1257.py │ ├── cp1258.py │ ├── cp273.py │ ├── cp424.py │ ├── cp437.py │ ├── cp500.py │ ├── cp720.py │ ├── cp737.py │ ├── cp775.py │ ├── cp850.py │ ├── cp852.py │ ├── cp855.py │ ├── cp856.py │ ├── cp857.py │ ├── cp858.py │ ├── cp860.py │ ├── cp861.py │ ├── cp862.py │ ├── cp863.py │ ├── cp864.py │ ├── cp865.py │ ├── cp866.py │ ├── cp869.py │ ├── cp874.py │ ├── cp875.py │ ├── cp932.py │ ├── cp949.py │ ├── cp950.py │ ├── euc_jis_2004.py │ ├── euc_jisx0213.py │ ├── euc_jp.py │ ├── euc_kr.py │ ├── gb18030.py │ ├── gb2312.py │ ├── gbk.py │ ├── hex_codec.py │ ├── hp_roman8.py │ ├── hz.py │ ├── idna.py │ ├── iso2022_jp.py │ ├── iso2022_jp_1.py │ ├── iso2022_jp_2.py │ ├── iso2022_jp_2004.py │ ├── iso2022_jp_3.py │ ├── iso2022_jp_ext.py │ ├── iso2022_kr.py │ ├── iso8859_1.py │ ├── iso8859_10.py │ ├── iso8859_11.py │ ├── iso8859_13.py │ ├── iso8859_14.py │ ├── iso8859_15.py │ ├── iso8859_16.py │ ├── iso8859_2.py │ ├── iso8859_3.py │ ├── iso8859_4.py │ ├── iso8859_5.py │ ├── iso8859_6.py │ ├── iso8859_7.py │ ├── iso8859_8.py │ ├── iso8859_9.py │ ├── johab.py │ ├── koi8_r.py │ ├── koi8_t.py │ ├── koi8_u.py │ ├── kz1048.py │ ├── latin_1.py │ ├── mac_arabic.py │ ├── mac_croatian.py │ ├── mac_cyrillic.py │ ├── mac_farsi.py │ ├── mac_greek.py │ ├── mac_iceland.py │ ├── mac_latin2.py │ ├── mac_roman.py │ ├── mac_romanian.py │ ├── mac_turkish.py │ ├── mbcs.py │ ├── oem.py │ ├── palmos.py │ ├── ptcp154.py │ ├── punycode.py │ ├── quopri_codec.py │ ├── raw_unicode_escape.py │ ├── rot_13.py │ ├── shift_jis.py │ ├── shift_jis_2004.py │ ├── shift_jisx0213.py │ ├── tis_620.py │ ├── undefined.py │ ├── unicode_escape.py │ ├── utf_16.py │ ├── utf_16_be.py │ ├── utf_16_le.py │ ├── utf_32.py │ ├── utf_32_be.py │ ├── utf_32_le.py │ ├── utf_7.py │ ├── utf_8.py │ ├── utf_8_sig.py │ ├── uu_codec.py │ └── zlib_codec.py ├── ensurepip │ ├── __init__.py │ ├── __main__.py │ ├── _bundled │ │ ├── __init__.py │ │ ├── pip-23.0.1-py3-none-any.whl │ │ └── setuptools-65.5.0-py3-none-any.whl │ └── _uninstall.py ├── enum.py ├── filecmp.py ├── fileinput.py ├── fnmatch.py ├── fractions.py ├── ftplib.py ├── functools.py ├── genericpath.py ├── getopt.py ├── getpass.py ├── gettext.py ├── glob.py ├── graphlib.py ├── gzip.py ├── hashlib.py ├── heapq.py ├── hmac.py ├── html │ ├── __init__.py │ ├── entities.py │ └── parser.py ├── http │ ├── __init__.py │ ├── client.py │ ├── cookiejar.py │ ├── cookies.py │ └── server.py ├── idlelib │ ├── CREDITS.txt │ ├── ChangeLog │ ├── HISTORY.txt │ ├── Icons │ │ ├── README.txt │ │ ├── folder.gif │ │ ├── idle.ico │ │ ├── idle_16.gif │ │ ├── idle_16.png │ │ ├── idle_256.png │ │ ├── idle_32.gif │ │ ├── idle_32.png │ │ ├── idle_48.gif │ │ ├── idle_48.png │ │ ├── minusnode.gif │ │ ├── openfolder.gif │ │ ├── plusnode.gif │ │ ├── python.gif │ │ └── tk.gif │ ├── NEWS.txt │ ├── NEWS2x.txt │ ├── README.txt │ ├── TODO.txt │ ├── __init__.py │ ├── __main__.py │ ├── autocomplete.py │ ├── autocomplete_w.py │ ├── autoexpand.py │ ├── browser.py │ ├── calltip.py │ ├── calltip_w.py │ ├── codecontext.py │ ├── colorizer.py │ ├── config-extensions.def │ ├── config-highlight.def │ ├── config-keys.def │ ├── config-main.def │ ├── config.py │ ├── config_key.py │ ├── configdialog.py │ ├── debugger.py │ ├── debugger_r.py │ ├── debugobj.py │ ├── debugobj_r.py │ ├── delegator.py │ ├── dynoption.py │ ├── editor.py │ ├── extend.txt │ ├── filelist.py │ ├── format.py │ ├── grep.py │ ├── help.html │ ├── help.py │ ├── help_about.py │ ├── history.py │ ├── hyperparser.py │ ├── idle.bat │ ├── idle.py │ ├── idle.pyw │ ├── idle_test │ │ ├── README.txt │ │ ├── __init__.py │ │ ├── example_noext │ │ ├── example_stub.pyi │ │ ├── htest.py │ │ ├── mock_idle.py │ │ ├── mock_tk.py │ │ ├── template.py │ │ ├── test_autocomplete.py │ │ ├── test_autocomplete_w.py │ │ ├── test_autoexpand.py │ │ ├── test_browser.py │ │ ├── test_calltip.py │ │ ├── test_calltip_w.py │ │ ├── test_codecontext.py │ │ ├── test_colorizer.py │ │ ├── test_config.py │ │ ├── test_config_key.py │ │ ├── test_configdialog.py │ │ ├── test_debugger.py │ │ ├── test_debugger_r.py │ │ ├── test_debugobj.py │ │ ├── test_debugobj_r.py │ │ ├── test_delegator.py │ │ ├── test_editmenu.py │ │ ├── test_editor.py │ │ ├── test_filelist.py │ │ ├── test_format.py │ │ ├── test_grep.py │ │ ├── test_help.py │ │ ├── test_help_about.py │ │ ├── test_history.py │ │ ├── test_hyperparser.py │ │ ├── test_iomenu.py │ │ ├── test_macosx.py │ │ ├── test_mainmenu.py │ │ ├── test_multicall.py │ │ ├── test_outwin.py │ │ ├── test_parenmatch.py │ │ ├── test_pathbrowser.py │ │ ├── test_percolator.py │ │ ├── test_pyparse.py │ │ ├── test_pyshell.py │ │ ├── test_query.py │ │ ├── test_redirector.py │ │ ├── test_replace.py │ │ ├── test_rpc.py │ │ ├── test_run.py │ │ ├── test_runscript.py │ │ ├── test_scrolledlist.py │ │ ├── test_search.py │ │ ├── test_searchbase.py │ │ ├── test_searchengine.py │ │ ├── test_sidebar.py │ │ ├── test_squeezer.py │ │ ├── test_stackviewer.py │ │ ├── test_statusbar.py │ │ ├── test_text.py │ │ ├── test_textview.py │ │ ├── test_tooltip.py │ │ ├── test_tree.py │ │ ├── test_undo.py │ │ ├── test_util.py │ │ ├── test_warning.py │ │ ├── test_window.py │ │ ├── test_zoomheight.py │ │ ├── test_zzdummy.py │ │ └── tkinter_testing_utils.py │ ├── iomenu.py │ ├── macosx.py │ ├── mainmenu.py │ ├── multicall.py │ ├── outwin.py │ ├── parenmatch.py │ ├── pathbrowser.py │ ├── percolator.py │ ├── pyparse.py │ ├── pyshell.py │ ├── query.py │ ├── redirector.py │ ├── replace.py │ ├── rpc.py │ ├── run.py │ ├── runscript.py │ ├── scrolledlist.py │ ├── search.py │ ├── searchbase.py │ ├── searchengine.py │ ├── sidebar.py │ ├── squeezer.py │ ├── stackviewer.py │ ├── statusbar.py │ ├── textview.py │ ├── tooltip.py │ ├── tree.py │ ├── undo.py │ ├── util.py │ ├── window.py │ ├── zoomheight.py │ └── zzdummy.py ├── imaplib.py ├── imghdr.py ├── imp.py ├── importlib │ ├── __init__.py │ ├── _abc.py │ ├── _adapters.py │ ├── _bootstrap.py │ ├── _bootstrap_external.py │ ├── _common.py │ ├── abc.py │ ├── machinery.py │ ├── metadata │ │ ├── __init__.py │ │ ├── _adapters.py │ │ ├── _collections.py │ │ ├── _functools.py │ │ ├── _itertools.py │ │ ├── _meta.py │ │ └── _text.py │ ├── readers.py │ ├── resources.py │ └── util.py ├── inspect.py ├── io.py ├── ipaddress.py ├── json │ ├── __init__.py │ ├── decoder.py │ ├── encoder.py │ ├── scanner.py │ └── tool.py ├── keyword.py ├── lib2to3 │ ├── Grammar.txt │ ├── PatternGrammar.txt │ ├── __init__.py │ ├── __main__.py │ ├── btm_matcher.py │ ├── btm_utils.py │ ├── fixer_base.py │ ├── fixer_util.py │ ├── fixes │ │ ├── __init__.py │ │ ├── fix_apply.py │ │ ├── fix_asserts.py │ │ ├── fix_basestring.py │ │ ├── fix_buffer.py │ │ ├── fix_dict.py │ │ ├── fix_except.py │ │ ├── fix_exec.py │ │ ├── fix_execfile.py │ │ ├── fix_exitfunc.py │ │ ├── fix_filter.py │ │ ├── fix_funcattrs.py │ │ ├── fix_future.py │ │ ├── fix_getcwdu.py │ │ ├── fix_has_key.py │ │ ├── fix_idioms.py │ │ ├── fix_import.py │ │ ├── fix_imports.py │ │ ├── fix_imports2.py │ │ ├── fix_input.py │ │ ├── fix_intern.py │ │ ├── fix_isinstance.py │ │ ├── fix_itertools.py │ │ ├── fix_itertools_imports.py │ │ ├── fix_long.py │ │ ├── fix_map.py │ │ ├── fix_metaclass.py │ │ ├── fix_methodattrs.py │ │ ├── fix_ne.py │ │ ├── fix_next.py │ │ ├── fix_nonzero.py │ │ ├── fix_numliterals.py │ │ ├── fix_operator.py │ │ ├── fix_paren.py │ │ ├── fix_print.py │ │ ├── fix_raise.py │ │ ├── fix_raw_input.py │ │ ├── fix_reduce.py │ │ ├── fix_reload.py │ │ ├── fix_renames.py │ │ ├── fix_repr.py │ │ ├── fix_set_literal.py │ │ ├── fix_standarderror.py │ │ ├── fix_sys_exc.py │ │ ├── fix_throw.py │ │ ├── fix_tuple_params.py │ │ ├── fix_types.py │ │ ├── fix_unicode.py │ │ ├── fix_urllib.py │ │ ├── fix_ws_comma.py │ │ ├── fix_xrange.py │ │ ├── fix_xreadlines.py │ │ └── fix_zip.py │ ├── main.py │ ├── patcomp.py │ ├── pgen2 │ │ ├── __init__.py │ │ ├── conv.py │ │ ├── driver.py │ │ ├── grammar.py │ │ ├── literals.py │ │ ├── parse.py │ │ ├── pgen.py │ │ ├── token.py │ │ └── tokenize.py │ ├── pygram.py │ ├── pytree.py │ ├── refactor.py │ └── tests │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── data │ │ ├── README │ │ ├── bom.py │ │ ├── crlf.py │ │ ├── different_encoding.py │ │ ├── false_encoding.py │ │ ├── fixers │ │ │ ├── bad_order.py │ │ │ ├── myfixes │ │ │ │ ├── __init__.py │ │ │ │ ├── fix_explicit.py │ │ │ │ ├── fix_first.py │ │ │ │ ├── fix_last.py │ │ │ │ ├── fix_parrot.py │ │ │ │ └── fix_preorder.py │ │ │ ├── no_fixer_cls.py │ │ │ └── parrot_example.py │ │ ├── infinite_recursion.py │ │ ├── py2_test_grammar.py │ │ └── py3_test_grammar.py │ │ ├── pytree_idempotency.py │ │ ├── support.py │ │ ├── test_all_fixers.py │ │ ├── test_fixers.py │ │ ├── test_main.py │ │ ├── test_parser.py │ │ ├── test_pytree.py │ │ ├── test_refactor.py │ │ └── test_util.py ├── linecache.py ├── locale.py ├── logging │ ├── __init__.py │ ├── config.py │ └── handlers.py ├── lzma.py ├── mailbox.py ├── mailcap.py ├── mimetypes.py ├── modulefinder.py ├── msilib │ ├── __init__.py │ ├── schema.py │ ├── sequence.py │ └── text.py ├── multiprocessing │ ├── __init__.py │ ├── connection.py │ ├── context.py │ ├── dummy │ │ ├── __init__.py │ │ └── connection.py │ ├── forkserver.py │ ├── heap.py │ ├── managers.py │ ├── pool.py │ ├── popen_fork.py │ ├── popen_forkserver.py │ ├── popen_spawn_posix.py │ ├── popen_spawn_win32.py │ ├── process.py │ ├── queues.py │ ├── reduction.py │ ├── resource_sharer.py │ ├── resource_tracker.py │ ├── shared_memory.py │ ├── sharedctypes.py │ ├── spawn.py │ ├── synchronize.py │ └── util.py ├── netrc.py ├── nntplib.py ├── ntpath.py ├── nturl2path.py ├── numbers.py ├── operator.py ├── optparse.py ├── os.py ├── pathlib.py ├── pdb.py ├── pickle.py ├── pickletools.py ├── pipes.py ├── pkgutil.py ├── platform.py ├── plistlib.py ├── poplib.py ├── posixpath.py ├── pprint.py ├── profile.py ├── pstats.py ├── pty.py ├── py_compile.py ├── pyclbr.py ├── pydoc.py ├── pydoc_data │ ├── __init__.py │ ├── _pydoc.css │ └── topics.py ├── queue.py ├── quopri.py ├── random.py ├── re.py ├── reprlib.py ├── rlcompleter.py ├── runpy.py ├── sched.py ├── secrets.py ├── selectors.py ├── shelve.py ├── shlex.py ├── shutil.py ├── signal.py ├── site-packages │ └── README.txt ├── site.py ├── smtpd.py ├── smtplib.py ├── sndhdr.py ├── socket.py ├── socketserver.py ├── sqlite3 │ ├── __init__.py │ ├── dbapi2.py │ ├── dump.py │ └── test │ │ ├── __init__.py │ │ ├── backup.py │ │ ├── dbapi.py │ │ ├── dump.py │ │ ├── factory.py │ │ ├── hooks.py │ │ ├── regression.py │ │ ├── transactions.py │ │ ├── types.py │ │ └── userfunctions.py ├── sre_compile.py ├── sre_constants.py ├── sre_parse.py ├── ssl.py ├── stat.py ├── statistics.py ├── string.py ├── stringprep.py ├── struct.py ├── subprocess.py ├── sunau.py ├── symtable.py ├── sysconfig.py ├── tabnanny.py ├── tarfile.py ├── telnetlib.py ├── tempfile.py ├── test │ ├── Sine-1000Hz-300ms.aif │ ├── __init__.py │ ├── __main__.py │ ├── _test_atexit.py │ ├── _test_eintr.py │ ├── _test_embed_set_config.py │ ├── _test_multiprocessing.py │ ├── _typed_dict_helper.py │ ├── allsans.pem │ ├── ann_module.py │ ├── ann_module2.py │ ├── ann_module3.py │ ├── ann_module4.py │ ├── ann_module5.py │ ├── ann_module6.py │ ├── ann_module7.py │ ├── audiodata │ │ ├── pluck-alaw.aifc │ │ ├── pluck-pcm16.aiff │ │ ├── pluck-pcm16.au │ │ ├── pluck-pcm16.wav │ │ ├── pluck-pcm24.aiff │ │ ├── pluck-pcm24.au │ │ ├── pluck-pcm24.wav │ │ ├── pluck-pcm32.aiff │ │ ├── pluck-pcm32.au │ │ ├── pluck-pcm32.wav │ │ ├── pluck-pcm8.aiff │ │ ├── pluck-pcm8.au │ │ ├── pluck-pcm8.wav │ │ ├── pluck-ulaw.aifc │ │ └── pluck-ulaw.au │ ├── audiotest.au │ ├── audiotests.py │ ├── audit-tests.py │ ├── autotest.py │ ├── bad_coding.py │ ├── bad_coding2.py │ ├── bad_getattr.py │ ├── bad_getattr2.py │ ├── bad_getattr3.py │ ├── badcert.pem │ ├── badkey.pem │ ├── badsyntax_3131.py │ ├── badsyntax_future10.py │ ├── badsyntax_future3.py │ ├── badsyntax_future4.py │ ├── badsyntax_future5.py │ ├── badsyntax_future6.py │ ├── badsyntax_future7.py │ ├── badsyntax_future8.py │ ├── badsyntax_future9.py │ ├── badsyntax_pep3120.py │ ├── bisect_cmd.py │ ├── capath │ │ ├── 4e1295a3.0 │ │ ├── 5ed36f99.0 │ │ ├── 6e88d7b8.0 │ │ ├── 99d0fa06.0 │ │ ├── b1930218.0 │ │ └── ceff1710.0 │ ├── cfgparser.1 │ ├── cfgparser.2 │ ├── cfgparser.3 │ ├── cjkencodings │ │ ├── big5-utf8.txt │ │ ├── big5.txt │ │ ├── big5hkscs-utf8.txt │ │ ├── big5hkscs.txt │ │ ├── cp949-utf8.txt │ │ ├── cp949.txt │ │ ├── euc_jisx0213-utf8.txt │ │ ├── euc_jisx0213.txt │ │ ├── euc_jp-utf8.txt │ │ ├── euc_jp.txt │ │ ├── euc_kr-utf8.txt │ │ ├── euc_kr.txt │ │ ├── gb18030-utf8.txt │ │ ├── gb18030.txt │ │ ├── gb2312-utf8.txt │ │ ├── gb2312.txt │ │ ├── gbk-utf8.txt │ │ ├── gbk.txt │ │ ├── hz-utf8.txt │ │ ├── hz.txt │ │ ├── iso2022_jp-utf8.txt │ │ ├── iso2022_jp.txt │ │ ├── iso2022_kr-utf8.txt │ │ ├── iso2022_kr.txt │ │ ├── johab-utf8.txt │ │ ├── johab.txt │ │ ├── shift_jis-utf8.txt │ │ ├── shift_jis.txt │ │ ├── shift_jisx0213-utf8.txt │ │ └── shift_jisx0213.txt │ ├── clinic.test │ ├── cmath_testcases.txt │ ├── coding20731.py │ ├── crashers │ │ ├── README │ │ ├── bogus_code_obj.py │ │ ├── gc_inspection.py │ │ ├── infinite_loop_re.py │ │ ├── mutation_inside_cyclegc.py │ │ ├── recursive_call.py │ │ ├── trace_at_recursion_limit.py │ │ └── underlying_dict.py │ ├── curses_tests.py │ ├── data │ │ └── README │ ├── dataclass_module_1.py │ ├── dataclass_module_1_str.py │ ├── dataclass_module_2.py │ ├── dataclass_module_2_str.py │ ├── dataclass_textanno.py │ ├── datetimetester.py │ ├── decimaltestdata │ │ ├── abs.decTest │ │ ├── add.decTest │ │ ├── and.decTest │ │ ├── base.decTest │ │ ├── clamp.decTest │ │ ├── class.decTest │ │ ├── compare.decTest │ │ ├── comparetotal.decTest │ │ ├── comparetotmag.decTest │ │ ├── copy.decTest │ │ ├── copyabs.decTest │ │ ├── copynegate.decTest │ │ ├── copysign.decTest │ │ ├── ddAbs.decTest │ │ ├── ddAdd.decTest │ │ ├── ddAnd.decTest │ │ ├── ddBase.decTest │ │ ├── ddCanonical.decTest │ │ ├── ddClass.decTest │ │ ├── ddCompare.decTest │ │ ├── ddCompareSig.decTest │ │ ├── ddCompareTotal.decTest │ │ ├── ddCompareTotalMag.decTest │ │ ├── ddCopy.decTest │ │ ├── ddCopyAbs.decTest │ │ ├── ddCopyNegate.decTest │ │ ├── ddCopySign.decTest │ │ ├── ddDivide.decTest │ │ ├── ddDivideInt.decTest │ │ ├── ddEncode.decTest │ │ ├── ddFMA.decTest │ │ ├── ddInvert.decTest │ │ ├── ddLogB.decTest │ │ ├── ddMax.decTest │ │ ├── ddMaxMag.decTest │ │ ├── ddMin.decTest │ │ ├── ddMinMag.decTest │ │ ├── ddMinus.decTest │ │ ├── ddMultiply.decTest │ │ ├── ddNextMinus.decTest │ │ ├── ddNextPlus.decTest │ │ ├── ddNextToward.decTest │ │ ├── ddOr.decTest │ │ ├── ddPlus.decTest │ │ ├── ddQuantize.decTest │ │ ├── ddReduce.decTest │ │ ├── ddRemainder.decTest │ │ ├── ddRemainderNear.decTest │ │ ├── ddRotate.decTest │ │ ├── ddSameQuantum.decTest │ │ ├── ddScaleB.decTest │ │ ├── ddShift.decTest │ │ ├── ddSubtract.decTest │ │ ├── ddToIntegral.decTest │ │ ├── ddXor.decTest │ │ ├── decDouble.decTest │ │ ├── decQuad.decTest │ │ ├── decSingle.decTest │ │ ├── divide.decTest │ │ ├── divideint.decTest │ │ ├── dqAbs.decTest │ │ ├── dqAdd.decTest │ │ ├── dqAnd.decTest │ │ ├── dqBase.decTest │ │ ├── dqCanonical.decTest │ │ ├── dqClass.decTest │ │ ├── dqCompare.decTest │ │ ├── dqCompareSig.decTest │ │ ├── dqCompareTotal.decTest │ │ ├── dqCompareTotalMag.decTest │ │ ├── dqCopy.decTest │ │ ├── dqCopyAbs.decTest │ │ ├── dqCopyNegate.decTest │ │ ├── dqCopySign.decTest │ │ ├── dqDivide.decTest │ │ ├── dqDivideInt.decTest │ │ ├── dqEncode.decTest │ │ ├── dqFMA.decTest │ │ ├── dqInvert.decTest │ │ ├── dqLogB.decTest │ │ ├── dqMax.decTest │ │ ├── dqMaxMag.decTest │ │ ├── dqMin.decTest │ │ ├── dqMinMag.decTest │ │ ├── dqMinus.decTest │ │ ├── dqMultiply.decTest │ │ ├── dqNextMinus.decTest │ │ ├── dqNextPlus.decTest │ │ ├── dqNextToward.decTest │ │ ├── dqOr.decTest │ │ ├── dqPlus.decTest │ │ ├── dqQuantize.decTest │ │ ├── dqReduce.decTest │ │ ├── dqRemainder.decTest │ │ ├── dqRemainderNear.decTest │ │ ├── dqRotate.decTest │ │ ├── dqSameQuantum.decTest │ │ ├── dqScaleB.decTest │ │ ├── dqShift.decTest │ │ ├── dqSubtract.decTest │ │ ├── dqToIntegral.decTest │ │ ├── dqXor.decTest │ │ ├── dsBase.decTest │ │ ├── dsEncode.decTest │ │ ├── exp.decTest │ │ ├── extra.decTest │ │ ├── fma.decTest │ │ ├── inexact.decTest │ │ ├── invert.decTest │ │ ├── ln.decTest │ │ ├── log10.decTest │ │ ├── logb.decTest │ │ ├── max.decTest │ │ ├── maxmag.decTest │ │ ├── min.decTest │ │ ├── minmag.decTest │ │ ├── minus.decTest │ │ ├── multiply.decTest │ │ ├── nextminus.decTest │ │ ├── nextplus.decTest │ │ ├── nexttoward.decTest │ │ ├── or.decTest │ │ ├── plus.decTest │ │ ├── power.decTest │ │ ├── powersqrt.decTest │ │ ├── quantize.decTest │ │ ├── randomBound32.decTest │ │ ├── randoms.decTest │ │ ├── reduce.decTest │ │ ├── remainder.decTest │ │ ├── remainderNear.decTest │ │ ├── rescale.decTest │ │ ├── rotate.decTest │ │ ├── rounding.decTest │ │ ├── samequantum.decTest │ │ ├── scaleb.decTest │ │ ├── shift.decTest │ │ ├── squareroot.decTest │ │ ├── subtract.decTest │ │ ├── testall.decTest │ │ ├── tointegral.decTest │ │ ├── tointegralx.decTest │ │ └── xor.decTest │ ├── dis_module.py │ ├── doctest_aliases.py │ ├── doctest_lineno.py │ ├── double_const.py │ ├── dtracedata │ │ ├── assert_usable.d │ │ ├── assert_usable.stp │ │ ├── call_stack.d │ │ ├── call_stack.d.expected │ │ ├── call_stack.py │ │ ├── call_stack.stp │ │ ├── call_stack.stp.expected │ │ ├── gc.d │ │ ├── gc.d.expected │ │ ├── gc.py │ │ ├── gc.stp │ │ ├── gc.stp.expected │ │ ├── instance.py │ │ ├── line.d │ │ ├── line.d.expected │ │ └── line.py │ ├── empty.vbs │ ├── encoded_modules │ │ ├── __init__.py │ │ ├── module_iso_8859_1.py │ │ └── module_koi8_r.py │ ├── exception_hierarchy.txt │ ├── ffdh3072.pem │ ├── final_a.py │ ├── final_b.py │ ├── floating_points.txt │ ├── fork_wait.py │ ├── formatfloat_testcases.txt │ ├── future_test1.py │ ├── future_test2.py │ ├── gdb_sample.py │ ├── good_getattr.py │ ├── idnsans.pem │ ├── ieee754.txt │ ├── imghdrdata │ │ ├── python.bmp │ │ ├── python.exr │ │ ├── python.gif │ │ ├── python.jpg │ │ ├── python.pbm │ │ ├── python.pgm │ │ ├── python.png │ │ ├── python.ppm │ │ ├── python.ras │ │ ├── python.sgi │ │ ├── python.tiff │ │ ├── python.webp │ │ └── python.xbm │ ├── imp_dummy.py │ ├── inspect_fodder.py │ ├── inspect_fodder2.py │ ├── inspect_stock_annotations.py │ ├── inspect_stringized_annotations.py │ ├── inspect_stringized_annotations_2.py │ ├── keycert.passwd.pem │ ├── keycert.pem │ ├── keycert2.pem │ ├── keycert3.pem │ ├── keycert4.pem │ ├── keycertecc.pem │ ├── leakers │ │ ├── README.txt │ │ ├── __init__.py │ │ ├── test_ctypes.py │ │ └── test_selftype.py │ ├── libregrtest │ │ ├── __init__.py │ │ ├── cmdline.py │ │ ├── main.py │ │ ├── pgo.py │ │ ├── refleak.py │ │ ├── runtest.py │ │ ├── runtest_mp.py │ │ ├── save_env.py │ │ ├── setup.py │ │ ├── utils.py │ │ └── win_utils.py │ ├── list_tests.py │ ├── lock_tests.py │ ├── mailcap.txt │ ├── make_ssl_certs.py │ ├── mapping_tests.py │ ├── math_testcases.txt │ ├── memory_watchdog.py │ ├── mime.types │ ├── mock_socket.py │ ├── mod_generics_cache.py │ ├── mp_fork_bomb.py │ ├── mp_preload.py │ ├── multibytecodec_support.py │ ├── nokia.pem │ ├── nosan.pem │ ├── nullbytecert.pem │ ├── nullcert.pem │ ├── pickletester.py │ ├── profilee.py │ ├── pstats.pck │ ├── pycacert.pem │ ├── pycakey.pem │ ├── pyclbr_input.py │ ├── pydoc_mod.py │ ├── pydocfodder.py │ ├── pythoninfo.py │ ├── randv2_32.pck │ ├── randv2_64.pck │ ├── randv3.pck │ ├── re_tests.py │ ├── recursion.tar │ ├── regrtest.py │ ├── relimport.py │ ├── reperf.py │ ├── revocation.crl │ ├── sample_doctest.py │ ├── sample_doctest_no_docstrings.py │ ├── sample_doctest_no_doctests.py │ ├── secp384r1.pem │ ├── selfsigned_pythontestdotnet.pem │ ├── seq_tests.py │ ├── sgml_input.html │ ├── signalinterproctester.py │ ├── sndhdrdata │ │ ├── README │ │ ├── sndhdr.8svx │ │ ├── sndhdr.aifc │ │ ├── sndhdr.aiff │ │ ├── sndhdr.au │ │ ├── sndhdr.hcom │ │ ├── sndhdr.sndt │ │ ├── sndhdr.voc │ │ └── sndhdr.wav │ ├── sortperf.py │ ├── ssl_cert.pem │ ├── ssl_key.passwd.pem │ ├── ssl_key.pem │ ├── ssl_servers.py │ ├── ssltests.py │ ├── string_tests.py │ ├── subprocessdata │ │ ├── fd_status.py │ │ ├── input_reader.py │ │ ├── qcat.py │ │ ├── qgrep.py │ │ └── sigchild_ignore.py │ ├── support │ │ ├── __init__.py │ │ ├── bytecode_helper.py │ │ ├── hashlib_helper.py │ │ ├── import_helper.py │ │ ├── interpreters.py │ │ ├── logging_helper.py │ │ ├── os_helper.py │ │ ├── script_helper.py │ │ ├── socket_helper.py │ │ ├── testresult.py │ │ ├── threading_helper.py │ │ └── warnings_helper.py │ ├── talos-2019-0758.pem │ ├── test___all__.py │ ├── test___future__.py │ ├── test__locale.py │ ├── test__opcode.py │ ├── test__osx_support.py │ ├── test__xxsubinterpreters.py │ ├── test_abc.py │ ├── test_abstract_numbers.py │ ├── test_aifc.py │ ├── test_argparse.py │ ├── test_array.py │ ├── test_asdl_parser.py │ ├── test_ast.py │ ├── test_asyncgen.py │ ├── test_asynchat.py │ ├── test_asyncio │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── echo.py │ │ ├── echo2.py │ │ ├── echo3.py │ │ ├── functional.py │ │ ├── test_base_events.py │ │ ├── test_buffered_proto.py │ │ ├── test_context.py │ │ ├── test_events.py │ │ ├── test_futures.py │ │ ├── test_futures2.py │ │ ├── test_locks.py │ │ ├── test_pep492.py │ │ ├── test_proactor_events.py │ │ ├── test_protocols.py │ │ ├── test_queues.py │ │ ├── test_runners.py │ │ ├── test_selector_events.py │ │ ├── test_sendfile.py │ │ ├── test_server.py │ │ ├── test_sock_lowlevel.py │ │ ├── test_sslproto.py │ │ ├── test_streams.py │ │ ├── test_subprocess.py │ │ ├── test_tasks.py │ │ ├── test_threads.py │ │ ├── test_transports.py │ │ ├── test_unix_events.py │ │ ├── test_waitfor.py │ │ ├── test_windows_events.py │ │ ├── test_windows_utils.py │ │ └── utils.py │ ├── test_asyncore.py │ ├── test_atexit.py │ ├── test_audioop.py │ ├── test_audit.py │ ├── test_augassign.py │ ├── test_base64.py │ ├── test_baseexception.py │ ├── test_bdb.py │ ├── test_bigaddrspace.py │ ├── test_bigmem.py │ ├── test_binascii.py │ ├── test_binhex.py │ ├── test_binop.py │ ├── test_bisect.py │ ├── test_bool.py │ ├── test_buffer.py │ ├── test_bufio.py │ ├── test_builtin.py │ ├── test_bytes.py │ ├── test_bz2.py │ ├── test_c_locale_coercion.py │ ├── test_calendar.py │ ├── test_call.py │ ├── test_capi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── test_getargs.py │ │ ├── test_misc.py │ │ ├── test_structmembers.py │ │ └── test_unicode.py │ ├── test_cgi.py │ ├── test_cgitb.py │ ├── test_charmapcodec.py │ ├── test_check_c_globals.py │ ├── test_class.py │ ├── test_clinic.py │ ├── test_cmath.py │ ├── test_cmd.py │ ├── test_cmd_line.py │ ├── test_cmd_line_script.py │ ├── test_code.py │ ├── test_code_module.py │ ├── test_codeccallbacks.py │ ├── test_codecencodings_cn.py │ ├── test_codecencodings_hk.py │ ├── test_codecencodings_iso2022.py │ ├── test_codecencodings_jp.py │ ├── test_codecencodings_kr.py │ ├── test_codecencodings_tw.py │ ├── test_codecmaps_cn.py │ ├── test_codecmaps_hk.py │ ├── test_codecmaps_jp.py │ ├── test_codecmaps_kr.py │ ├── test_codecmaps_tw.py │ ├── test_codecs.py │ ├── test_codeop.py │ ├── test_collections.py │ ├── test_colorsys.py │ ├── test_compare.py │ ├── test_compile.py │ ├── test_compileall.py │ ├── test_complex.py │ ├── test_concurrent_futures.py │ ├── test_configparser.py │ ├── test_contains.py │ ├── test_context.py │ ├── test_contextlib.py │ ├── test_contextlib_async.py │ ├── test_copy.py │ ├── test_copyreg.py │ ├── test_coroutines.py │ ├── test_cprofile.py │ ├── test_crashers.py │ ├── test_crypt.py │ ├── test_csv.py │ ├── test_ctypes.py │ ├── test_curses.py │ ├── test_dataclasses.py │ ├── test_datetime.py │ ├── test_dbm.py │ ├── test_dbm_dumb.py │ ├── test_dbm_gnu.py │ ├── test_dbm_ndbm.py │ ├── test_decimal.py │ ├── test_decorators.py │ ├── test_defaultdict.py │ ├── test_deque.py │ ├── test_descr.py │ ├── test_descrtut.py │ ├── test_devpoll.py │ ├── test_dict.py │ ├── test_dict_version.py │ ├── test_dictcomps.py │ ├── test_dictviews.py │ ├── test_difflib.py │ ├── test_difflib_expect.html │ ├── test_dis.py │ ├── test_distutils.py │ ├── test_doctest.py │ ├── test_doctest.txt │ ├── test_doctest2.py │ ├── test_doctest2.txt │ ├── test_doctest3.txt │ ├── test_doctest4.txt │ ├── test_docxmlrpc.py │ ├── test_dtrace.py │ ├── test_dynamic.py │ ├── test_dynamicclassattribute.py │ ├── test_eintr.py │ ├── test_email │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── data │ │ │ ├── PyBanner048.gif │ │ │ ├── audiotest.au │ │ │ ├── msg_01.txt │ │ │ ├── msg_02.txt │ │ │ ├── msg_03.txt │ │ │ ├── msg_04.txt │ │ │ ├── msg_05.txt │ │ │ ├── msg_06.txt │ │ │ ├── msg_07.txt │ │ │ ├── msg_08.txt │ │ │ ├── msg_09.txt │ │ │ ├── msg_10.txt │ │ │ ├── msg_11.txt │ │ │ ├── msg_12.txt │ │ │ ├── msg_12a.txt │ │ │ ├── msg_13.txt │ │ │ ├── msg_14.txt │ │ │ ├── msg_15.txt │ │ │ ├── msg_16.txt │ │ │ ├── msg_17.txt │ │ │ ├── msg_18.txt │ │ │ ├── msg_19.txt │ │ │ ├── msg_20.txt │ │ │ ├── msg_21.txt │ │ │ ├── msg_22.txt │ │ │ ├── msg_23.txt │ │ │ ├── msg_24.txt │ │ │ ├── msg_25.txt │ │ │ ├── msg_26.txt │ │ │ ├── msg_27.txt │ │ │ ├── msg_28.txt │ │ │ ├── msg_29.txt │ │ │ ├── msg_30.txt │ │ │ ├── msg_31.txt │ │ │ ├── msg_32.txt │ │ │ ├── msg_33.txt │ │ │ ├── msg_34.txt │ │ │ ├── msg_35.txt │ │ │ ├── msg_36.txt │ │ │ ├── msg_37.txt │ │ │ ├── msg_38.txt │ │ │ ├── msg_39.txt │ │ │ ├── msg_40.txt │ │ │ ├── msg_41.txt │ │ │ ├── msg_42.txt │ │ │ ├── msg_43.txt │ │ │ ├── msg_44.txt │ │ │ ├── msg_45.txt │ │ │ └── msg_46.txt │ │ ├── test__encoded_words.py │ │ ├── test__header_value_parser.py │ │ ├── test_asian_codecs.py │ │ ├── test_contentmanager.py │ │ ├── test_defect_handling.py │ │ ├── test_email.py │ │ ├── test_generator.py │ │ ├── test_headerregistry.py │ │ ├── test_inversion.py │ │ ├── test_message.py │ │ ├── test_parser.py │ │ ├── test_pickleable.py │ │ ├── test_policy.py │ │ ├── test_utils.py │ │ └── torture_test.py │ ├── test_embed.py │ ├── test_ensurepip.py │ ├── test_enum.py │ ├── test_enumerate.py │ ├── test_eof.py │ ├── test_epoll.py │ ├── test_errno.py │ ├── test_exception_hierarchy.py │ ├── test_exception_variations.py │ ├── test_exceptions.py │ ├── test_extcall.py │ ├── test_faulthandler.py │ ├── test_fcntl.py │ ├── test_file.py │ ├── test_file_eintr.py │ ├── test_filecmp.py │ ├── test_fileinput.py │ ├── test_fileio.py │ ├── test_finalization.py │ ├── test_float.py │ ├── test_flufl.py │ ├── test_fnmatch.py │ ├── test_fork1.py │ ├── test_format.py │ ├── test_fractions.py │ ├── test_frame.py │ ├── test_frozen.py │ ├── test_fstring.py │ ├── test_ftplib.py │ ├── test_funcattrs.py │ ├── test_functools.py │ ├── test_future.py │ ├── test_future3.py │ ├── test_future4.py │ ├── test_future5.py │ ├── test_gc.py │ ├── test_gdb.py │ ├── test_generator_stop.py │ ├── test_generators.py │ ├── test_genericalias.py │ ├── test_genericclass.py │ ├── test_genericpath.py │ ├── test_genexps.py │ ├── test_getopt.py │ ├── test_getpass.py │ ├── test_gettext.py │ ├── test_glob.py │ ├── test_global.py │ ├── test_grammar.py │ ├── test_graphlib.py │ ├── test_grp.py │ ├── test_gzip.py │ ├── test_hash.py │ ├── test_hashlib.py │ ├── test_heapq.py │ ├── test_hmac.py │ ├── test_html.py │ ├── test_htmlparser.py │ ├── test_http_cookiejar.py │ ├── test_http_cookies.py │ ├── test_httplib.py │ ├── test_httpservers.py │ ├── test_idle.py │ ├── test_imaplib.py │ ├── test_imghdr.py │ ├── test_imp.py │ ├── test_import │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── data │ │ │ ├── circular_imports │ │ │ ├── basic.py │ │ │ ├── basic2.py │ │ │ ├── binding.py │ │ │ ├── binding2.py │ │ │ ├── from_cycle1.py │ │ │ ├── from_cycle2.py │ │ │ ├── indirect.py │ │ │ ├── rebinding.py │ │ │ ├── rebinding2.py │ │ │ ├── source.py │ │ │ ├── subpackage.py │ │ │ ├── subpkg │ │ │ │ ├── subpackage2.py │ │ │ │ └── util.py │ │ │ ├── use.py │ │ │ └── util.py │ │ │ ├── package │ │ │ ├── __init__.py │ │ │ └── submodule.py │ │ │ ├── package2 │ │ │ ├── submodule1.py │ │ │ └── submodule2.py │ │ │ └── unwritable │ │ │ ├── __init__.py │ │ │ └── x.py │ ├── test_importlib │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── abc.py │ │ ├── builtin │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test_finder.py │ │ │ └── test_loader.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── example-21.12-py3-none-any.whl │ │ │ └── example-21.12-py3.6.egg │ │ ├── data01 │ │ │ ├── __init__.py │ │ │ ├── binary.file │ │ │ ├── subdirectory │ │ │ │ ├── __init__.py │ │ │ │ └── binary.file │ │ │ ├── utf-16.file │ │ │ └── utf-8.file │ │ ├── data02 │ │ │ ├── __init__.py │ │ │ ├── one │ │ │ │ ├── __init__.py │ │ │ │ └── resource1.txt │ │ │ └── two │ │ │ │ ├── __init__.py │ │ │ │ └── resource2.txt │ │ ├── data03 │ │ │ ├── __init__.py │ │ │ └── namespace │ │ │ │ ├── portion1 │ │ │ │ └── __init__.py │ │ │ │ ├── portion2 │ │ │ │ └── __init__.py │ │ │ │ └── resource1.txt │ │ ├── extension │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test_case_sensitivity.py │ │ │ ├── test_finder.py │ │ │ ├── test_loader.py │ │ │ └── test_path_hook.py │ │ ├── fixtures.py │ │ ├── frozen │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test_finder.py │ │ │ └── test_loader.py │ │ ├── import_ │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test___loader__.py │ │ │ ├── test___package__.py │ │ │ ├── test_api.py │ │ │ ├── test_caching.py │ │ │ ├── test_fromlist.py │ │ │ ├── test_meta_path.py │ │ │ ├── test_packages.py │ │ │ ├── test_path.py │ │ │ └── test_relative_imports.py │ │ ├── namespace_pkgs │ │ │ ├── both_portions │ │ │ │ └── foo │ │ │ │ │ ├── one.py │ │ │ │ │ └── two.py │ │ │ ├── missing_directory.zip │ │ │ ├── module_and_namespace_package │ │ │ │ ├── a_test.py │ │ │ │ └── a_test │ │ │ │ │ └── empty │ │ │ ├── nested_portion1.zip │ │ │ ├── not_a_namespace_pkg │ │ │ │ └── foo │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── one.py │ │ │ ├── portion1 │ │ │ │ └── foo │ │ │ │ │ └── one.py │ │ │ ├── portion2 │ │ │ │ └── foo │ │ │ │ │ └── two.py │ │ │ ├── project1 │ │ │ │ └── parent │ │ │ │ │ └── child │ │ │ │ │ └── one.py │ │ │ ├── project2 │ │ │ │ └── parent │ │ │ │ │ └── child │ │ │ │ │ └── two.py │ │ │ ├── project3 │ │ │ │ └── parent │ │ │ │ │ └── child │ │ │ │ │ └── three.py │ │ │ └── top_level_portion1.zip │ │ ├── namespacedata01 │ │ │ ├── binary.file │ │ │ ├── utf-16.file │ │ │ └── utf-8.file │ │ ├── partial │ │ │ ├── cfimport.py │ │ │ └── pool_in_threads.py │ │ ├── source │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test_case_sensitivity.py │ │ │ ├── test_file_loader.py │ │ │ ├── test_finder.py │ │ │ ├── test_path_hook.py │ │ │ └── test_source_encoding.py │ │ ├── stubs.py │ │ ├── test_abc.py │ │ ├── test_api.py │ │ ├── test_files.py │ │ ├── test_lazy.py │ │ ├── test_locks.py │ │ ├── test_main.py │ │ ├── test_metadata_api.py │ │ ├── test_namespace_pkgs.py │ │ ├── test_open.py │ │ ├── test_path.py │ │ ├── test_pkg_import.py │ │ ├── test_read.py │ │ ├── test_reader.py │ │ ├── test_resource.py │ │ ├── test_spec.py │ │ ├── test_threaded_import.py │ │ ├── test_util.py │ │ ├── test_windows.py │ │ ├── test_zip.py │ │ ├── threaded_import_hangers.py │ │ ├── update-zips.py │ │ ├── util.py │ │ ├── zipdata01 │ │ │ ├── __init__.py │ │ │ └── ziptestdata.zip │ │ └── zipdata02 │ │ │ ├── __init__.py │ │ │ └── ziptestdata.zip │ ├── test_index.py │ ├── test_inspect.py │ ├── test_int.py │ ├── test_int_literal.py │ ├── test_interpreters.py │ ├── test_io.py │ ├── test_ioctl.py │ ├── test_ipaddress.py │ ├── test_isinstance.py │ ├── test_iter.py │ ├── test_iterlen.py │ ├── test_itertools.py │ ├── test_json │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── test_decode.py │ │ ├── test_default.py │ │ ├── test_dump.py │ │ ├── test_encode_basestring_ascii.py │ │ ├── test_enum.py │ │ ├── test_fail.py │ │ ├── test_float.py │ │ ├── test_indent.py │ │ ├── test_pass1.py │ │ ├── test_pass2.py │ │ ├── test_pass3.py │ │ ├── test_recursion.py │ │ ├── test_scanstring.py │ │ ├── test_separators.py │ │ ├── test_speedups.py │ │ ├── test_tool.py │ │ └── test_unicode.py │ ├── test_keyword.py │ ├── test_keywordonlyarg.py │ ├── test_kqueue.py │ ├── test_largefile.py │ ├── test_lib2to3.py │ ├── test_linecache.py │ ├── test_list.py │ ├── test_listcomps.py │ ├── test_lltrace.py │ ├── test_locale.py │ ├── test_logging.py │ ├── test_long.py │ ├── test_longexp.py │ ├── test_lzma.py │ ├── test_mailbox.py │ ├── test_mailcap.py │ ├── test_marshal.py │ ├── test_math.py │ ├── test_memoryio.py │ ├── test_memoryview.py │ ├── test_metaclass.py │ ├── test_mimetypes.py │ ├── test_minidom.py │ ├── test_mmap.py │ ├── test_module.py │ ├── test_modulefinder.py │ ├── test_msilib.py │ ├── test_multibytecodec.py │ ├── test_multiprocessing_fork.py │ ├── test_multiprocessing_forkserver.py │ ├── test_multiprocessing_main_handling.py │ ├── test_multiprocessing_spawn.py │ ├── test_named_expressions.py │ ├── test_netrc.py │ ├── test_nis.py │ ├── test_nntplib.py │ ├── test_ntpath.py │ ├── test_numeric_tower.py │ ├── test_opcache.py │ ├── test_opcodes.py │ ├── test_openpty.py │ ├── test_operator.py │ ├── test_optparse.py │ ├── test_ordered_dict.py │ ├── test_os.py │ ├── test_ossaudiodev.py │ ├── test_osx_env.py │ ├── test_pathlib.py │ ├── test_patma.py │ ├── test_pdb.py │ ├── test_peepholer.py │ ├── test_peg_generator │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── test_c_parser.py │ │ ├── test_first_sets.py │ │ ├── test_grammar_validator.py │ │ └── test_pegen.py │ ├── test_pickle.py │ ├── test_picklebuffer.py │ ├── test_pickletools.py │ ├── test_pipes.py │ ├── test_pkg.py │ ├── test_pkgutil.py │ ├── test_platform.py │ ├── test_plistlib.py │ ├── test_poll.py │ ├── test_popen.py │ ├── test_poplib.py │ ├── test_positional_only_arg.py │ ├── test_posix.py │ ├── test_posixpath.py │ ├── test_pow.py │ ├── test_pprint.py │ ├── test_print.py │ ├── test_profile.py │ ├── test_property.py │ ├── test_pstats.py │ ├── test_pty.py │ ├── test_pulldom.py │ ├── test_pwd.py │ ├── test_py_compile.py │ ├── test_pyclbr.py │ ├── test_pydoc.py │ ├── test_pyexpat.py │ ├── test_queue.py │ ├── test_quopri.py │ ├── test_raise.py │ ├── test_random.py │ ├── test_range.py │ ├── test_re.py │ ├── test_readline.py │ ├── test_regrtest.py │ ├── test_repl.py │ ├── test_reprlib.py │ ├── test_resource.py │ ├── test_richcmp.py │ ├── test_rlcompleter.py │ ├── test_robotparser.py │ ├── test_runpy.py │ ├── test_sax.py │ ├── test_sched.py │ ├── test_scope.py │ ├── test_script_helper.py │ ├── test_secrets.py │ ├── test_select.py │ ├── test_selectors.py │ ├── test_set.py │ ├── test_setcomps.py │ ├── test_shelve.py │ ├── test_shlex.py │ ├── test_shutil.py │ ├── test_signal.py │ ├── test_site.py │ ├── test_slice.py │ ├── test_smtpd.py │ ├── test_smtplib.py │ ├── test_smtpnet.py │ ├── test_sndhdr.py │ ├── test_socket.py │ ├── test_socketserver.py │ ├── test_sort.py │ ├── test_source_encoding.py │ ├── test_spwd.py │ ├── test_sqlite.py │ ├── test_ssl.py │ ├── test_startfile.py │ ├── test_stat.py │ ├── test_statistics.py │ ├── test_strftime.py │ ├── test_string.py │ ├── test_string_literals.py │ ├── test_stringprep.py │ ├── test_strptime.py │ ├── test_strtod.py │ ├── test_struct.py │ ├── test_structseq.py │ ├── test_subclassinit.py │ ├── test_subprocess.py │ ├── test_sunau.py │ ├── test_sundry.py │ ├── test_super.py │ ├── test_support.py │ ├── test_symtable.py │ ├── test_syntax.py │ ├── test_sys.py │ ├── test_sys_setprofile.py │ ├── test_sys_settrace.py │ ├── test_sysconfig.py │ ├── test_syslog.py │ ├── test_tabnanny.py │ ├── test_tarfile.py │ ├── test_tcl.py │ ├── test_telnetlib.py │ ├── test_tempfile.py │ ├── test_textwrap.py │ ├── test_thread.py │ ├── test_threadedtempfile.py │ ├── test_threading.py │ ├── test_threading_local.py │ ├── test_threadsignals.py │ ├── test_time.py │ ├── test_timeit.py │ ├── test_timeout.py │ ├── test_tix.py │ ├── test_tk.py │ ├── test_tokenize.py │ ├── test_tools │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── test_fixcid.py │ │ ├── test_gprof2html.py │ │ ├── test_i18n.py │ │ ├── test_lll.py │ │ ├── test_md5sum.py │ │ ├── test_pathfix.py │ │ ├── test_pdeps.py │ │ ├── test_pindent.py │ │ ├── test_reindent.py │ │ └── test_sundry.py │ ├── test_trace.py │ ├── test_traceback.py │ ├── test_tracemalloc.py │ ├── test_ttk_guionly.py │ ├── test_ttk_textonly.py │ ├── test_tuple.py │ ├── test_turtle.py │ ├── test_type_annotations.py │ ├── test_type_comments.py │ ├── test_typechecks.py │ ├── test_types.py │ ├── test_typing.py │ ├── test_ucn.py │ ├── test_unary.py │ ├── test_unicode.py │ ├── test_unicode_file.py │ ├── test_unicode_file_functions.py │ ├── test_unicode_identifiers.py │ ├── test_unicodedata.py │ ├── test_unittest.py │ ├── test_univnewlines.py │ ├── test_unpack.py │ ├── test_unpack_ex.py │ ├── test_unparse.py │ ├── test_urllib.py │ ├── test_urllib2.py │ ├── test_urllib2_localnet.py │ ├── test_urllib2net.py │ ├── test_urllib_response.py │ ├── test_urllibnet.py │ ├── test_urlparse.py │ ├── test_userdict.py │ ├── test_userlist.py │ ├── test_userstring.py │ ├── test_utf8_mode.py │ ├── test_utf8source.py │ ├── test_uu.py │ ├── test_uuid.py │ ├── test_venv.py │ ├── test_wait3.py │ ├── test_wait4.py │ ├── test_warnings │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── data │ │ │ ├── import_warning.py │ │ │ └── stacklevel.py │ ├── test_wave.py │ ├── test_weakref.py │ ├── test_weakset.py │ ├── test_webbrowser.py │ ├── test_winconsoleio.py │ ├── test_winreg.py │ ├── test_winsound.py │ ├── test_with.py │ ├── test_wsgiref.py │ ├── test_xdrlib.py │ ├── test_xml_dom_minicompat.py │ ├── test_xml_etree.py │ ├── test_xml_etree_c.py │ ├── test_xmlrpc.py │ ├── test_xmlrpc_net.py │ ├── test_xxlimited.py │ ├── test_xxtestfuzz.py │ ├── test_yield_from.py │ ├── test_zipapp.py │ ├── test_zipfile.py │ ├── test_zipfile64.py │ ├── test_zipimport.py │ ├── test_zipimport_support.py │ ├── test_zlib.py │ ├── test_zoneinfo │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _support.py │ │ ├── data │ │ │ ├── update_test_data.py │ │ │ └── zoneinfo_data.json │ │ └── test_zoneinfo.py │ ├── testcodec.py │ ├── testtar.tar │ ├── testtar.tar.xz │ ├── tf_inherit_check.py │ ├── time_hashlib.py │ ├── tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt │ ├── tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt │ ├── tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt │ ├── tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt │ ├── tokenize_tests.txt │ ├── tracedmodules │ │ ├── __init__.py │ │ └── testmod.py │ ├── typinganndata │ │ ├── __init__.py │ │ └── ann_module9.py │ ├── win_console_handler.py │ ├── xmltestdata │ │ ├── c14n-20 │ │ │ ├── README │ │ │ ├── c14nComment.xml │ │ │ ├── c14nDefault.xml │ │ │ ├── c14nPrefix.xml │ │ │ ├── c14nPrefixQname.xml │ │ │ ├── c14nPrefixQnameXpathElem.xml │ │ │ ├── c14nQname.xml │ │ │ ├── c14nQnameElem.xml │ │ │ ├── c14nQnameXpathElem.xml │ │ │ ├── c14nTrim.xml │ │ │ ├── doc.dtd │ │ │ ├── doc.xsl │ │ │ ├── inC14N1.xml │ │ │ ├── inC14N2.xml │ │ │ ├── inC14N3.xml │ │ │ ├── inC14N4.xml │ │ │ ├── inC14N5.xml │ │ │ ├── inC14N6.xml │ │ │ ├── inNsContent.xml │ │ │ ├── inNsDefault.xml │ │ │ ├── inNsPushdown.xml │ │ │ ├── inNsRedecl.xml │ │ │ ├── inNsSort.xml │ │ │ ├── inNsSuperfluous.xml │ │ │ ├── inNsXml.xml │ │ │ ├── out_inC14N1_c14nComment.xml │ │ │ ├── out_inC14N1_c14nDefault.xml │ │ │ ├── out_inC14N2_c14nDefault.xml │ │ │ ├── out_inC14N2_c14nTrim.xml │ │ │ ├── out_inC14N3_c14nDefault.xml │ │ │ ├── out_inC14N3_c14nPrefix.xml │ │ │ ├── out_inC14N3_c14nTrim.xml │ │ │ ├── out_inC14N4_c14nDefault.xml │ │ │ ├── out_inC14N4_c14nTrim.xml │ │ │ ├── out_inC14N5_c14nDefault.xml │ │ │ ├── out_inC14N5_c14nTrim.xml │ │ │ ├── out_inC14N6_c14nDefault.xml │ │ │ ├── out_inNsContent_c14nDefault.xml │ │ │ ├── out_inNsContent_c14nPrefixQnameXpathElem.xml │ │ │ ├── out_inNsContent_c14nQnameElem.xml │ │ │ ├── out_inNsContent_c14nQnameXpathElem.xml │ │ │ ├── out_inNsDefault_c14nDefault.xml │ │ │ ├── out_inNsDefault_c14nPrefix.xml │ │ │ ├── out_inNsPushdown_c14nDefault.xml │ │ │ ├── out_inNsPushdown_c14nPrefix.xml │ │ │ ├── out_inNsRedecl_c14nDefault.xml │ │ │ ├── out_inNsRedecl_c14nPrefix.xml │ │ │ ├── out_inNsSort_c14nDefault.xml │ │ │ ├── out_inNsSort_c14nPrefix.xml │ │ │ ├── out_inNsSuperfluous_c14nDefault.xml │ │ │ ├── out_inNsSuperfluous_c14nPrefix.xml │ │ │ ├── out_inNsXml_c14nDefault.xml │ │ │ ├── out_inNsXml_c14nPrefix.xml │ │ │ ├── out_inNsXml_c14nPrefixQname.xml │ │ │ ├── out_inNsXml_c14nQname.xml │ │ │ └── world.txt │ │ ├── expat224_utf8_bug.xml │ │ ├── simple-ns.xml │ │ ├── simple.xml │ │ ├── test.xml │ │ └── test.xml.out │ ├── xmltests.py │ ├── zip_cp437_header.zip │ ├── zipdir.zip │ └── ziptestdata │ │ ├── README.md │ │ ├── exe_with_z64 │ │ ├── exe_with_zip │ │ ├── header.sh │ │ └── testdata_module_inside_zip.py ├── textwrap.py ├── this.py ├── threading.py ├── timeit.py ├── tkinter │ ├── __init__.py │ ├── __main__.py │ ├── colorchooser.py │ ├── commondialog.py │ ├── constants.py │ ├── dialog.py │ ├── dnd.py │ ├── filedialog.py │ ├── font.py │ ├── messagebox.py │ ├── scrolledtext.py │ ├── simpledialog.py │ ├── test │ │ ├── README │ │ ├── __init__.py │ │ ├── support.py │ │ ├── test_tkinter │ │ │ ├── __init__.py │ │ │ ├── test_colorchooser.py │ │ │ ├── test_font.py │ │ │ ├── test_geometry_managers.py │ │ │ ├── test_images.py │ │ │ ├── test_loadtk.py │ │ │ ├── test_messagebox.py │ │ │ ├── test_misc.py │ │ │ ├── test_simpledialog.py │ │ │ ├── test_text.py │ │ │ ├── test_variables.py │ │ │ └── test_widgets.py │ │ ├── test_ttk │ │ │ ├── __init__.py │ │ │ ├── test_extensions.py │ │ │ ├── test_style.py │ │ │ └── test_widgets.py │ │ └── widget_tests.py │ ├── tix.py │ └── ttk.py ├── token.py ├── tokenize.py ├── trace.py ├── traceback.py ├── tracemalloc.py ├── tty.py ├── turtle.py ├── turtledemo │ ├── __init__.py │ ├── __main__.py │ ├── bytedesign.py │ ├── chaos.py │ ├── clock.py │ ├── colormixer.py │ ├── forest.py │ ├── fractalcurves.py │ ├── lindenmayer.py │ ├── minimal_hanoi.py │ ├── nim.py │ ├── paint.py │ ├── peace.py │ ├── penrose.py │ ├── planet_and_moon.py │ ├── rosette.py │ ├── round_dance.py │ ├── sorting_animate.py │ ├── tree.py │ ├── turtle.cfg │ ├── two_canvases.py │ └── yinyang.py ├── types.py ├── typing.py ├── unittest │ ├── __init__.py │ ├── __main__.py │ ├── _log.py │ ├── async_case.py │ ├── case.py │ ├── loader.py │ ├── main.py │ ├── mock.py │ ├── result.py │ ├── runner.py │ ├── signals.py │ ├── suite.py │ ├── test │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _test_warnings.py │ │ ├── dummy.py │ │ ├── support.py │ │ ├── test_assertions.py │ │ ├── test_async_case.py │ │ ├── test_break.py │ │ ├── test_case.py │ │ ├── test_discovery.py │ │ ├── test_functiontestcase.py │ │ ├── test_loader.py │ │ ├── test_program.py │ │ ├── test_result.py │ │ ├── test_runner.py │ │ ├── test_setups.py │ │ ├── test_skipping.py │ │ ├── test_suite.py │ │ └── testmock │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── support.py │ │ │ ├── testasync.py │ │ │ ├── testcallable.py │ │ │ ├── testhelpers.py │ │ │ ├── testmagicmethods.py │ │ │ ├── testmock.py │ │ │ ├── testpatch.py │ │ │ ├── testsealable.py │ │ │ ├── testsentinel.py │ │ │ └── testwith.py │ └── util.py ├── urllib │ ├── __init__.py │ ├── error.py │ ├── parse.py │ ├── request.py │ ├── response.py │ └── robotparser.py ├── uu.py ├── uuid.py ├── venv │ ├── __init__.py │ ├── __main__.py │ └── scripts │ │ ├── common │ │ ├── Activate.ps1 │ │ └── activate │ │ ├── nt │ │ ├── activate.bat │ │ └── deactivate.bat │ │ └── posix │ │ ├── activate.csh │ │ └── activate.fish ├── warnings.py ├── wave.py ├── weakref.py ├── webbrowser.py ├── wsgiref │ ├── __init__.py │ ├── handlers.py │ ├── headers.py │ ├── simple_server.py │ ├── util.py │ └── validate.py ├── xdrlib.py ├── xml │ ├── __init__.py │ ├── dom │ │ ├── NodeFilter.py │ │ ├── __init__.py │ │ ├── domreg.py │ │ ├── expatbuilder.py │ │ ├── minicompat.py │ │ ├── minidom.py │ │ ├── pulldom.py │ │ └── xmlbuilder.py │ ├── etree │ │ ├── ElementInclude.py │ │ ├── ElementPath.py │ │ ├── ElementTree.py │ │ ├── __init__.py │ │ └── cElementTree.py │ ├── parsers │ │ ├── __init__.py │ │ └── expat.py │ └── sax │ │ ├── __init__.py │ │ ├── _exceptions.py │ │ ├── expatreader.py │ │ ├── handler.py │ │ ├── saxutils.py │ │ └── xmlreader.py ├── xmlrpc │ ├── __init__.py │ ├── client.py │ └── server.py ├── zipapp.py ├── zipfile.py ├── zipimport.py └── zoneinfo │ ├── __init__.py │ ├── _common.py │ ├── _tzpath.py │ └── _zoneinfo.py ├── Mac ├── BuildScript │ ├── README.rst │ ├── build-installer.py │ ├── resources │ │ ├── Conclusion.rtf │ │ ├── License.rtf │ │ ├── ReadMe.rtf │ │ ├── Welcome.rtf │ │ ├── background.jpg │ │ └── install_certificates.command │ ├── scripts │ │ ├── postflight.documentation │ │ ├── postflight.ensurepip │ │ ├── postflight.framework │ │ └── postflight.patch-profile │ ├── seticon.m │ └── tk868_on_10_8_10_9.patch ├── Extras.install.py ├── IDLE │ └── IDLE.app │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── IDLE │ │ ├── PkgInfo │ │ └── Resources │ │ ├── IDLE.icns │ │ ├── PythonCompiled.icns │ │ ├── PythonSource.icns │ │ └── idlemain.py ├── Icons │ ├── Disk Image.icns │ ├── IDLE.icns │ ├── Python Folder.icns │ ├── PythonCompiled.icns │ ├── PythonLauncher.icns │ ├── PythonSource.icns │ └── ReadMe.txt ├── Makefile.in ├── PythonLauncher │ ├── English.lproj │ │ ├── Credits.rtf │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── objects.nib │ │ ├── MyDocument.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── objects.nib │ │ └── PreferenceWindow.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── objects.nib │ ├── FileSettings.h │ ├── FileSettings.m │ ├── Info.plist.in │ ├── Makefile.in │ ├── MyAppDelegate.h │ ├── MyAppDelegate.m │ ├── MyDocument.h │ ├── MyDocument.m │ ├── PreferencesWindowController.h │ ├── PreferencesWindowController.m │ ├── doscript.h │ ├── doscript.m │ ├── factorySettings.plist │ └── main.m ├── README.rst ├── Resources │ ├── app │ │ ├── Info.plist.in │ │ ├── PkgInfo │ │ └── Resources │ │ │ ├── PythonApplet.icns │ │ │ └── PythonInterpreter.icns │ ├── framework │ │ └── Info.plist.in │ └── iconsrc │ │ ├── IDE.psd │ │ ├── PackageManager.psd │ │ ├── PythonApplet.psd │ │ ├── PythonCompiled.psd │ │ ├── PythonIcon.psd │ │ ├── PythonSource.psd │ │ └── PythonWSource.psd └── Tools │ ├── plistlib_generate_testdata.py │ └── pythonw.c ├── Makefile.pre.in ├── Misc ├── ACKS ├── HISTORY ├── NEWS.d │ ├── 3.10.0.rst │ ├── 3.10.0a1.rst │ ├── 3.10.0a2.rst │ ├── 3.10.0a3.rst │ ├── 3.10.0a4.rst │ ├── 3.10.0a5.rst │ ├── 3.10.0a6.rst │ ├── 3.10.0a7.rst │ ├── 3.10.0b1.rst │ ├── 3.10.0b2.rst │ ├── 3.10.0b3.rst │ ├── 3.10.0b4.rst │ ├── 3.10.0rc1.rst │ ├── 3.10.0rc2.rst │ ├── 3.10.1.rst │ ├── 3.10.10.rst │ ├── 3.10.11.rst │ ├── 3.10.2.rst │ ├── 3.10.3.rst │ ├── 3.10.4.rst │ ├── 3.10.5.rst │ ├── 3.10.6.rst │ ├── 3.10.7.rst │ ├── 3.10.8.rst │ ├── 3.10.9.rst │ ├── 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 │ │ └── README.rst │ │ ├── C API │ │ └── README.rst │ │ ├── Core and Builtins │ │ └── README.rst │ │ ├── Documentation │ │ └── README.rst │ │ ├── IDLE │ │ └── README.rst │ │ ├── Library │ │ └── README.rst │ │ ├── Security │ │ └── README.rst │ │ ├── Tests │ │ └── README.rst │ │ ├── Tools-Demos │ │ └── README.rst │ │ ├── Windows │ │ └── README.rst │ │ └── macOS │ │ └── README.rst ├── Porting ├── README ├── README.AIX ├── README.coverity ├── README.valgrind ├── SpecialBuilds.txt ├── coverity_model.c ├── gdbinit ├── indent.pro ├── python-config.in ├── python-config.sh.in ├── python-embed.pc.in ├── python-wing3.wpr ├── python-wing4.wpr ├── python-wing5.wpr ├── python.man ├── python.pc.in ├── requirements-test.txt ├── stable_abi.txt ├── svnmap.txt ├── valgrind-python.supp └── vgrindefs ├── Modules ├── README ├── Setup ├── _abc.c ├── _asynciomodule.c ├── _bisectmodule.c ├── _blake2 │ ├── blake2b2s.py │ ├── blake2b_impl.c │ ├── blake2module.c │ ├── blake2ns.h │ ├── blake2s_impl.c │ ├── clinic │ │ ├── blake2b_impl.c.h │ │ └── blake2s_impl.c.h │ └── impl │ │ ├── blake2-config.h │ │ ├── blake2-dispatch.c │ │ ├── blake2-impl.h │ │ ├── blake2-kat.h │ │ ├── blake2.h │ │ ├── blake2b-load-sse2.h │ │ ├── blake2b-load-sse41.h │ │ ├── blake2b-ref.c │ │ ├── blake2b-round.h │ │ ├── blake2b-test.c │ │ ├── blake2b.c │ │ ├── blake2bp-test.c │ │ ├── blake2bp.c │ │ ├── blake2s-load-sse2.h │ │ ├── blake2s-load-sse41.h │ │ ├── blake2s-load-xop.h │ │ ├── blake2s-ref.c │ │ ├── blake2s-round.h │ │ ├── blake2s-test.c │ │ ├── blake2s.c │ │ ├── blake2sp-test.c │ │ └── blake2sp.c ├── _bz2module.c ├── _codecsmodule.c ├── _collectionsmodule.c ├── _contextvarsmodule.c ├── _cryptmodule.c ├── _csv.c ├── _ctypes │ ├── _ctypes.c │ ├── _ctypes_test.c │ ├── _ctypes_test.h │ ├── callbacks.c │ ├── callproc.c │ ├── cfield.c │ ├── ctypes.h │ ├── ctypes_dlfcn.h │ ├── darwin │ │ ├── LICENSE │ │ ├── README │ │ ├── README.ctypes │ │ ├── dlfcn.h │ │ └── dlfcn_simple.c │ ├── libffi_osx │ │ ├── LICENSE │ │ ├── README │ │ ├── README.pyobjc │ │ ├── ffi.c │ │ ├── include │ │ │ ├── ffi.h │ │ │ ├── ffi_common.h │ │ │ ├── fficonfig.h │ │ │ ├── ffitarget.h │ │ │ ├── ppc-ffitarget.h │ │ │ └── x86-ffitarget.h │ │ ├── powerpc │ │ │ ├── ppc-darwin.S │ │ │ ├── ppc-darwin.h │ │ │ ├── ppc-darwin_closure.S │ │ │ ├── ppc-ffi_darwin.c │ │ │ └── ppc64-darwin_closure.S │ │ ├── types.c │ │ └── x86 │ │ │ ├── darwin64.S │ │ │ ├── x86-darwin.S │ │ │ ├── x86-ffi64.c │ │ │ └── x86-ffi_darwin.c │ ├── malloc_closure.c │ └── stgdict.c ├── _curses_panel.c ├── _cursesmodule.c ├── _datetimemodule.c ├── _dbmmodule.c ├── _decimal │ ├── README.txt │ ├── _decimal.c │ ├── docstrings.h │ ├── libmpdec │ │ ├── README.txt │ │ ├── basearith.c │ │ ├── basearith.h │ │ ├── bench.c │ │ ├── bench_full.c │ │ ├── bits.h │ │ ├── constants.c │ │ ├── constants.h │ │ ├── context.c │ │ ├── convolute.c │ │ ├── convolute.h │ │ ├── crt.c │ │ ├── crt.h │ │ ├── difradix2.c │ │ ├── difradix2.h │ │ ├── examples │ │ │ ├── README.txt │ │ │ ├── compare.c │ │ │ ├── div.c │ │ │ ├── divmod.c │ │ │ ├── multiply.c │ │ │ ├── pow.c │ │ │ ├── powmod.c │ │ │ ├── shift.c │ │ │ └── sqrt.c │ │ ├── fnt.c │ │ ├── fnt.h │ │ ├── fourstep.c │ │ ├── fourstep.h │ │ ├── io.c │ │ ├── io.h │ │ ├── literature │ │ │ ├── REFERENCES.txt │ │ │ ├── bignum.txt │ │ │ ├── fnt.py │ │ │ ├── matrix-transform.txt │ │ │ ├── mulmod-64.txt │ │ │ ├── mulmod-ppro.txt │ │ │ ├── six-step.txt │ │ │ └── umodarith.lisp │ │ ├── mpalloc.c │ │ ├── mpalloc.h │ │ ├── mpdecimal.c │ │ ├── mpdecimal.h │ │ ├── mpsignal.c │ │ ├── numbertheory.c │ │ ├── numbertheory.h │ │ ├── sixstep.c │ │ ├── sixstep.h │ │ ├── transpose.c │ │ ├── transpose.h │ │ ├── typearith.h │ │ ├── umodarith.h │ │ └── vcdiv64.asm │ └── tests │ │ ├── README.txt │ │ ├── bench.py │ │ ├── bignum.py │ │ ├── deccheck.py │ │ ├── formathelper.py │ │ ├── randdec.py │ │ ├── randfloat.py │ │ ├── runall-memorydebugger.sh │ │ └── runall.bat ├── _elementtree.c ├── _functoolsmodule.c ├── _gdbmmodule.c ├── _hashopenssl.c ├── _heapqmodule.c ├── _io │ ├── _iomodule.c │ ├── _iomodule.h │ ├── bufferedio.c │ ├── bytesio.c │ ├── clinic │ │ ├── _iomodule.c.h │ │ ├── bufferedio.c.h │ │ ├── bytesio.c.h │ │ ├── fileio.c.h │ │ ├── iobase.c.h │ │ ├── stringio.c.h │ │ ├── textio.c.h │ │ └── winconsoleio.c.h │ ├── fileio.c │ ├── iobase.c │ ├── stringio.c │ ├── textio.c │ └── winconsoleio.c ├── _json.c ├── _localemodule.c ├── _lsprof.c ├── _lzmamodule.c ├── _math.c ├── _math.h ├── _multiprocessing │ ├── clinic │ │ ├── multiprocessing.c.h │ │ ├── posixshmem.c.h │ │ └── semaphore.c.h │ ├── multiprocessing.c │ ├── multiprocessing.h │ ├── posixshmem.c │ └── semaphore.c ├── _operator.c ├── _pickle.c ├── _posixsubprocess.c ├── _queuemodule.c ├── _randommodule.c ├── _scproxy.c ├── _sha3 │ ├── README.txt │ ├── cleanup.py │ ├── clinic │ │ └── sha3module.c.h │ ├── kcp │ │ ├── KeccakHash.c │ │ ├── KeccakHash.h │ │ ├── KeccakP-1600-64.macros │ │ ├── KeccakP-1600-SnP-opt32.h │ │ ├── KeccakP-1600-SnP-opt64.h │ │ ├── KeccakP-1600-SnP.h │ │ ├── KeccakP-1600-inplace32BI.c │ │ ├── KeccakP-1600-opt64-config.h │ │ ├── KeccakP-1600-opt64.c │ │ ├── KeccakP-1600-unrolling.macros │ │ ├── KeccakSponge.c │ │ ├── KeccakSponge.h │ │ ├── KeccakSponge.inc │ │ ├── PlSnP-Fallback.inc │ │ ├── SnP-Relaned.h │ │ └── align.h │ └── sha3module.c ├── _sqlite │ ├── cache.c │ ├── cache.h │ ├── clinic │ │ ├── connection.c.h │ │ ├── cursor.c.h │ │ ├── module.c.h │ │ └── row.c.h │ ├── connection.c │ ├── connection.h │ ├── cursor.c │ ├── cursor.h │ ├── microprotocols.c │ ├── microprotocols.h │ ├── module.c │ ├── module.h │ ├── prepare_protocol.c │ ├── prepare_protocol.h │ ├── row.c │ ├── row.h │ ├── statement.c │ ├── statement.h │ ├── util.c │ └── util.h ├── _sre.c ├── _ssl.c ├── _ssl.h ├── _ssl │ ├── cert.c │ ├── clinic │ │ └── cert.c.h │ ├── debughelpers.c │ └── misc.c ├── _ssl_data.h ├── _ssl_data_111.h ├── _ssl_data_300.h ├── _stat.c ├── _statisticsmodule.c ├── _struct.c ├── _testbuffer.c ├── _testcapimodule.c ├── _testclinic.c ├── _testimportmultiple.c ├── _testinternalcapi.c ├── _testmultiphase.c ├── _threadmodule.c ├── _tkinter.c ├── _tracemalloc.c ├── _uuidmodule.c ├── _weakref.c ├── _winapi.c ├── _xxsubinterpretersmodule.c ├── _xxtestfuzz │ ├── README.rst │ ├── _xxtestfuzz.c │ ├── dictionaries │ │ ├── fuzz_json_loads.dict │ │ └── fuzz_sre_compile.dict │ ├── fuzz_csv_reader_corpus │ │ └── test.csv │ ├── fuzz_json_loads_corpus │ │ ├── empty_array.json │ │ ├── empty_object.json │ │ ├── pass1.json │ │ ├── pass2.json │ │ ├── pass3.json │ │ └── simple_array.json │ ├── fuzz_sre_compile_corpus │ │ ├── anchor_links │ │ ├── characters │ │ ├── isbn │ │ └── phone_number │ ├── fuzz_struct_unpack_corpus │ │ ├── hello_string │ │ ├── long_zero │ │ └── varied_format_string │ ├── fuzz_tests.txt │ └── fuzzer.c ├── _zoneinfo.c ├── addrinfo.h ├── arraymodule.c ├── atexitmodule.c ├── audioop.c ├── binascii.c ├── cjkcodecs │ ├── README │ ├── _codecs_cn.c │ ├── _codecs_hk.c │ ├── _codecs_iso2022.c │ ├── _codecs_jp.c │ ├── _codecs_kr.c │ ├── _codecs_tw.c │ ├── alg_jisx0201.h │ ├── cjkcodecs.h │ ├── clinic │ │ └── multibytecodec.c.h │ ├── emu_jisx0213_2000.h │ ├── mappings_cn.h │ ├── mappings_hk.h │ ├── mappings_jisx0213_pair.h │ ├── mappings_jp.h │ ├── mappings_kr.h │ ├── mappings_tw.h │ ├── multibytecodec.c │ └── multibytecodec.h ├── clinic │ ├── _abc.c.h │ ├── _asynciomodule.c.h │ ├── _bisectmodule.c.h │ ├── _bz2module.c.h │ ├── _codecsmodule.c.h │ ├── _collectionsmodule.c.h │ ├── _contextvarsmodule.c.h │ ├── _cryptmodule.c.h │ ├── _curses_panel.c.h │ ├── _cursesmodule.c.h │ ├── _datetimemodule.c.h │ ├── _dbmmodule.c.h │ ├── _elementtree.c.h │ ├── _gdbmmodule.c.h │ ├── _hashopenssl.c.h │ ├── _heapqmodule.c.h │ ├── _localemodule.c.h │ ├── _lsprof.c.h │ ├── _lzmamodule.c.h │ ├── _opcode.c.h │ ├── _operator.c.h │ ├── _pickle.c.h │ ├── _queuemodule.c.h │ ├── _randommodule.c.h │ ├── _sre.c.h │ ├── _ssl.c.h │ ├── _statisticsmodule.c.h │ ├── _struct.c.h │ ├── _testclinic.c.h │ ├── _testmultiphase.c.h │ ├── _tkinter.c.h │ ├── _tracemalloc.c.h │ ├── _weakref.c.h │ ├── _winapi.c.h │ ├── arraymodule.c.h │ ├── audioop.c.h │ ├── binascii.c.h │ ├── cmathmodule.c.h │ ├── fcntlmodule.c.h │ ├── gcmodule.c.h │ ├── grpmodule.c.h │ ├── itertoolsmodule.c.h │ ├── mathmodule.c.h │ ├── md5module.c.h │ ├── overlapped.c.h │ ├── posixmodule.c.h │ ├── pwdmodule.c.h │ ├── pyexpat.c.h │ ├── readline.c.h │ ├── resource.c.h │ ├── selectmodule.c.h │ ├── sha1module.c.h │ ├── sha256module.c.h │ ├── sha512module.c.h │ ├── signalmodule.c.h │ ├── spwdmodule.c.h │ ├── symtablemodule.c.h │ ├── termios.c.h │ ├── unicodedata.c.h │ └── zlibmodule.c.h ├── cmathmodule.c ├── config.c.in ├── errnomodule.c ├── expat │ ├── COPYING │ ├── ascii.h │ ├── asciitab.h │ ├── expat.h │ ├── expat_config.h │ ├── expat_external.h │ ├── iasciitab.h │ ├── internal.h │ ├── latin1tab.h │ ├── nametab.h │ ├── pyexpatns.h │ ├── siphash.h │ ├── utf8tab.h │ ├── winconfig.h │ ├── xmlparse.c │ ├── xmlrole.c │ ├── xmlrole.h │ ├── xmltok.c │ ├── xmltok.h │ ├── xmltok_impl.c │ ├── xmltok_impl.h │ └── xmltok_ns.c ├── faulthandler.c ├── fcntlmodule.c ├── gc_weakref.txt ├── gcmodule.c ├── getaddrinfo.c ├── getbuildinfo.c ├── getnameinfo.c ├── getpath.c ├── grpmodule.c ├── hashlib.h ├── itertoolsmodule.c ├── ld_so_aix.in ├── main.c ├── makesetup ├── makexp_aix ├── mathmodule.c ├── md5module.c ├── mmapmodule.c ├── nismodule.c ├── opcode.c ├── ossaudiodev.c ├── overlapped.c ├── posixmodule.c ├── posixmodule.h ├── pwdmodule.c ├── pyexpat.c ├── readline.c ├── resource.c ├── rotatingtree.c ├── rotatingtree.h ├── selectmodule.c ├── sha1module.c ├── sha256module.c ├── sha512module.c ├── signalmodule.c ├── socketmodule.c ├── socketmodule.h ├── spwdmodule.c ├── sre.h ├── sre_constants.h ├── sre_lib.h ├── symtablemodule.c ├── syslogmodule.c ├── termios.c ├── testcapi_long.h ├── timemodule.c ├── tkappinit.c ├── tkinter.h ├── unicodedata.c ├── unicodedata_db.h ├── unicodename_db.h ├── winreparse.h ├── xxlimited.c ├── xxlimited_35.c ├── xxmodule.c ├── xxsubtype.c └── zlibmodule.c ├── Objects ├── README ├── abstract.c ├── accu.c ├── boolobject.c ├── bytearrayobject.c ├── bytes_methods.c ├── bytesobject.c ├── call.c ├── capsule.c ├── cellobject.c ├── classobject.c ├── clinic │ ├── bytearrayobject.c.h │ ├── bytesobject.c.h │ ├── codeobject.c.h │ ├── complexobject.c.h │ ├── descrobject.c.h │ ├── dictobject.c.h │ ├── enumobject.c.h │ ├── floatobject.c.h │ ├── funcobject.c.h │ ├── listobject.c.h │ ├── longobject.c.h │ ├── memoryobject.c.h │ ├── moduleobject.c.h │ ├── odictobject.c.h │ ├── structseq.c.h │ ├── tupleobject.c.h │ ├── typeobject.c.h │ └── unicodeobject.c.h ├── codeobject.c ├── complexobject.c ├── descrobject.c ├── dict-common.h ├── dictnotes.txt ├── dictobject.c ├── enumobject.c ├── exceptions.c ├── fileobject.c ├── floatobject.c ├── frameobject.c ├── funcobject.c ├── genericaliasobject.c ├── genobject.c ├── interpreteridobject.c ├── iterobject.c ├── listobject.c ├── listsort.txt ├── lnotab_notes.txt ├── longobject.c ├── memoryobject.c ├── methodobject.c ├── moduleobject.c ├── namespaceobject.c ├── object.c ├── obmalloc.c ├── odictobject.c ├── picklebufobject.c ├── rangeobject.c ├── setobject.c ├── sliceobject.c ├── stringlib │ ├── README.txt │ ├── asciilib.h │ ├── 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 │ ├── stringlib_find_two_way_notes.txt │ ├── transmogrify.h │ ├── ucs1lib.h │ ├── ucs2lib.h │ ├── ucs4lib.h │ ├── undef.h │ ├── unicode_format.h │ └── unicodedefs.h ├── structseq.c ├── tupleobject.c ├── typeobject.c ├── typeslots.inc ├── typeslots.py ├── unicodectype.c ├── unicodeobject.c ├── unicodetype_db.h ├── unionobject.c └── weakrefobject.c ├── PC ├── WinMain.c ├── _msi.c ├── _testconsole.c ├── classicAppCompat.can.xml ├── classicAppCompat.cat ├── classicAppCompat.sccd ├── clinic │ ├── _msi.c.h │ ├── _testconsole.c.h │ ├── msvcrtmodule.c.h │ ├── winreg.c.h │ └── winsound.c.h ├── config.c ├── crtlicense.txt ├── dl_nt.c ├── empty.c ├── errmap.h ├── errmap.mak ├── frozen_dllmain.c ├── getpathp.c ├── icons │ ├── idlex150.png │ ├── idlex44.png │ ├── launcher.icns │ ├── launcher.ico │ ├── launcher.svg │ ├── logo.svg │ ├── logox128.png │ ├── py.icns │ ├── py.ico │ ├── py.png │ ├── py.svg │ ├── pyc.icns │ ├── pyc.ico │ ├── pyc.svg │ ├── pyd.icns │ ├── pyd.ico │ ├── pyd.svg │ ├── python.icns │ ├── python.ico │ ├── python.svg │ ├── pythonw.icns │ ├── pythonw.ico │ ├── pythonw.svg │ ├── pythonwx150.png │ ├── pythonwx44.png │ ├── pythonx150.png │ ├── pythonx44.png │ ├── pythonx50.png │ ├── setup.icns │ ├── setup.ico │ └── setup.svg ├── invalid_parameter_handler.c ├── launcher.c ├── layout │ ├── __init__.py │ ├── __main__.py │ ├── main.py │ └── support │ │ ├── __init__.py │ │ ├── appxmanifest.py │ │ ├── catalog.py │ │ ├── constants.py │ │ ├── filesets.py │ │ ├── logging.py │ │ ├── nuspec.py │ │ ├── options.py │ │ ├── pip.py │ │ ├── props.py │ │ └── python.props ├── msvcrtmodule.c ├── pyconfig.h ├── pylauncher.rc ├── pyshellext.cpp ├── pyshellext.def ├── pyshellext.rc ├── python.manifest ├── python3dll.c ├── python_exe.rc ├── python_nt.rc ├── python_uwp.cpp ├── python_ver_rc.h ├── pythonw_exe.rc ├── readme.txt ├── sqlite3.rc ├── store_info.txt ├── testpy.py ├── validate_ucrtbase.py ├── winreg.c └── winsound.c ├── PCbuild ├── Directory.Build.props ├── Directory.Build.targets ├── _asyncio.vcxproj ├── _asyncio.vcxproj.filters ├── _bz2.vcxproj ├── _bz2.vcxproj.filters ├── _ctypes.vcxproj ├── _ctypes.vcxproj.filters ├── _ctypes_test.vcxproj ├── _ctypes_test.vcxproj.filters ├── _decimal.vcxproj ├── _decimal.vcxproj.filters ├── _elementtree.vcxproj ├── _elementtree.vcxproj.filters ├── _freeze_importlib.vcxproj ├── _freeze_importlib.vcxproj.filters ├── _hashlib.vcxproj ├── _hashlib.vcxproj.filters ├── _lzma.vcxproj ├── _lzma.vcxproj.filters ├── _msi.vcxproj ├── _msi.vcxproj.filters ├── _multiprocessing.vcxproj ├── _multiprocessing.vcxproj.filters ├── _overlapped.vcxproj ├── _overlapped.vcxproj.filters ├── _queue.vcxproj ├── _queue.vcxproj.filters ├── _socket.vcxproj ├── _socket.vcxproj.filters ├── _sqlite3.vcxproj ├── _sqlite3.vcxproj.filters ├── _ssl.vcxproj ├── _ssl.vcxproj.filters ├── _testbuffer.vcxproj ├── _testbuffer.vcxproj.filters ├── _testcapi.vcxproj ├── _testcapi.vcxproj.filters ├── _testconsole.vcxproj ├── _testconsole.vcxproj.filters ├── _testembed.vcxproj ├── _testembed.vcxproj.filters ├── _testimportmultiple.vcxproj ├── _testimportmultiple.vcxproj.filters ├── _testinternalcapi.vcxproj ├── _testinternalcapi.vcxproj.filters ├── _testmultiphase.vcxproj ├── _testmultiphase.vcxproj.filters ├── _tkinter.vcxproj ├── _tkinter.vcxproj.filters ├── _uuid.vcxproj ├── _uuid.vcxproj.filters ├── _zoneinfo.vcxproj ├── _zoneinfo.vcxproj.filters ├── blurb.bat ├── build.bat ├── build_env.bat ├── clean.bat ├── env.bat ├── env.ps1 ├── field3.py ├── find_msbuild.bat ├── find_python.bat ├── fix_encoding.py ├── get_external.py ├── get_externals.bat ├── idle.bat ├── lib.pyproj ├── libffi.props ├── liblzma.vcxproj ├── liblzma.vcxproj.filters ├── openssl.props ├── openssl.vcxproj ├── pcbuild.proj ├── pcbuild.sln ├── prepare_libffi.bat ├── prepare_ssl.bat ├── prepare_ssl.py ├── prepare_tcltk.bat ├── pyexpat.vcxproj ├── pyexpat.vcxproj.filters ├── pylauncher.vcxproj ├── pylauncher.vcxproj.filters ├── pyproject.props ├── pyshellext.vcxproj ├── pyshellext.vcxproj.filters ├── python.props ├── python.vcxproj ├── python.vcxproj.filters ├── python3dll.vcxproj ├── python3dll.vcxproj.filters ├── python_uwp.vcxproj ├── python_uwp.vcxproj.filters ├── pythoncore.vcxproj ├── pythoncore.vcxproj.filters ├── pythonw.vcxproj ├── pythonw.vcxproj.filters ├── pythonw_uwp.vcxproj ├── pythonw_uwp.vcxproj.filters ├── pywlauncher.vcxproj ├── pywlauncher.vcxproj.filters ├── readme.txt ├── regen.targets ├── rmpyc.py ├── rt.bat ├── select.vcxproj ├── select.vcxproj.filters ├── sqlite3.vcxproj ├── sqlite3.vcxproj.filters ├── tcl.vcxproj ├── tcltk.props ├── tix.vcxproj ├── tk.vcxproj ├── unicodedata.vcxproj ├── unicodedata.vcxproj.filters ├── urlretrieve.py ├── venvlauncher.vcxproj ├── venvlauncher.vcxproj.filters ├── venvwlauncher.vcxproj ├── venvwlauncher.vcxproj.filters ├── winsound.vcxproj ├── winsound.vcxproj.filters ├── xxlimited.vcxproj ├── xxlimited.vcxproj.filters ├── xxlimited_35.vcxproj └── xxlimited_35.vcxproj.filters ├── Parser ├── Python.asdl ├── asdl.py ├── asdl_c.py ├── myreadline.c ├── parser.c ├── peg_api.c ├── pegen.c ├── pegen.h ├── string_parser.c ├── string_parser.h ├── token.c ├── tokenizer.c └── tokenizer.h ├── Programs ├── README ├── _freeze_importlib.c ├── _testembed.c └── python.c ├── Python ├── Python-ast.c ├── README ├── _warnings.c ├── asdl.c ├── ast.c ├── ast_opt.c ├── ast_unparse.c ├── bltinmodule.c ├── bootstrap_hash.c ├── ceval.c ├── ceval_gil.h ├── clinic │ ├── _warnings.c.h │ ├── bltinmodule.c.h │ ├── context.c.h │ ├── import.c.h │ ├── marshal.c.h │ ├── sysmodule.c.h │ └── traceback.c.h ├── codecs.c ├── compile.c ├── condvar.h ├── context.c ├── dtoa.c ├── dup2.c ├── dynamic_annotations.c ├── dynload_hpux.c ├── dynload_shlib.c ├── dynload_stub.c ├── dynload_win.c ├── errors.c ├── fileutils.c ├── formatter_unicode.c ├── frozen.c ├── frozen_hello.h ├── frozenmain.c ├── future.c ├── getargs.c ├── getcompiler.c ├── getcopyright.c ├── getopt.c ├── getplatform.c ├── getversion.c ├── hamt.c ├── hashtable.c ├── import.c ├── importdl.c ├── importdl.h ├── importlib.h ├── importlib_external.h ├── importlib_zipimport.h ├── initconfig.c ├── marshal.c ├── modsupport.c ├── mysnprintf.c ├── mystrtoul.c ├── pathconfig.c ├── preconfig.c ├── pyarena.c ├── pyctype.c ├── pyfpe.c ├── pyhash.c ├── pylifecycle.c ├── pymath.c ├── pystate.c ├── pystrcmp.c ├── pystrhex.c ├── pystrtod.c ├── pythonrun.c ├── pytime.c ├── stdlib_module_names.h ├── structmember.c ├── suggestions.c ├── symtable.c ├── sysmodule.c ├── thread.c ├── thread_nt.h ├── thread_pthread.h ├── traceback.c └── wordcode_helpers.h ├── README.md ├── README.rst ├── Tools ├── README ├── buildbot │ ├── build.bat │ ├── buildmsi.bat │ ├── clean.bat │ ├── remoteDeploy.bat │ ├── remotePythonInfo.bat │ └── test.bat ├── c-analyzer │ ├── README │ ├── TODO │ ├── c-analyzer.py │ ├── c_analyzer │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── analyze.py │ │ ├── datafiles.py │ │ ├── info.py │ │ └── match.py │ ├── c_common │ │ ├── __init__.py │ │ ├── clsutil.py │ │ ├── fsutil.py │ │ ├── info.py │ │ ├── iterutil.py │ │ ├── logging.py │ │ ├── misc.py │ │ ├── scriptutil.py │ │ ├── show.py │ │ ├── strutil.py │ │ └── tables.py │ ├── c_parser │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _state_machine.py │ │ ├── datafiles.py │ │ ├── info.py │ │ ├── match.py │ │ ├── parser │ │ │ ├── __init__.py │ │ │ ├── _alt.py │ │ │ ├── _common.py │ │ │ ├── _compound_decl_body.py │ │ │ ├── _delim.py │ │ │ ├── _func_body.py │ │ │ ├── _global.py │ │ │ ├── _info.py │ │ │ └── _regexes.py │ │ ├── preprocessor │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── common.py │ │ │ ├── errors.py │ │ │ ├── gcc.py │ │ │ └── pure.py │ │ └── source.py │ ├── check-c-globals.py │ ├── cpython │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _analyzer.py │ │ ├── _capi.py │ │ ├── _files.py │ │ ├── _parser.py │ │ ├── ignored.tsv │ │ └── known.tsv │ └── must-resolve.sh ├── ccbench │ └── ccbench.py ├── clinic │ ├── clinic.py │ └── cpp.py ├── demo │ ├── README │ ├── beer.py │ ├── eiffel.py │ ├── hanoi.py │ ├── life.py │ ├── markov.py │ ├── mcast.py │ ├── queens.py │ ├── redemo.py │ ├── rpython.py │ ├── rpythond.py │ ├── sortvisu.py │ ├── spreadsheet.py │ └── vector.py ├── 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 │ ├── regen_frozen.py │ ├── test │ │ ├── Makefile │ │ └── ok.py │ ├── win32.html │ └── winmakemakefile.py ├── gdb │ └── libpython.py ├── i18n │ ├── makelocalealias.py │ ├── msgfmt.py │ └── pygettext.py ├── importbench │ ├── README │ └── importbench.py ├── iobench │ └── iobench.py ├── msi │ ├── README.txt │ ├── build.bat │ ├── buildrelease.bat │ ├── bundle │ │ ├── Default.thm │ │ ├── Default.wxl │ │ ├── SideBar.png │ │ ├── bootstrap │ │ │ ├── LICENSE.txt │ │ │ ├── PythonBootstrapperApplication.cpp │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── pythonba.cpp │ │ │ ├── pythonba.def │ │ │ ├── pythonba.sln │ │ │ ├── pythonba.vcxproj │ │ │ └── resource.h │ │ ├── bundle.targets │ │ ├── bundle.wxl │ │ ├── bundle.wxs │ │ ├── full.wixproj │ │ ├── packagegroups │ │ │ ├── core.wxs │ │ │ ├── crt.wxs │ │ │ ├── dev.wxs │ │ │ ├── doc.wxs │ │ │ ├── exe.wxs │ │ │ ├── launcher.wxs │ │ │ ├── lib.wxs │ │ │ ├── packageinstall.wxs │ │ │ ├── pip.wxs │ │ │ ├── postinstall.wxs │ │ │ ├── tcltk.wxs │ │ │ ├── test.wxs │ │ │ └── tools.wxs │ │ ├── releaselocal.wixproj │ │ ├── releaseweb.wixproj │ │ └── snapshot.wixproj │ ├── common.wxs │ ├── common_en-US.wxl_template │ ├── core │ │ ├── core.wixproj │ │ ├── core.wxs │ │ ├── core_d.wixproj │ │ ├── core_d.wxs │ │ ├── core_en-US.wxl │ │ ├── core_files.wxs │ │ ├── core_pdb.wixproj │ │ └── core_pdb.wxs │ ├── csv_to_wxs.py │ ├── dev │ │ ├── dev.wixproj │ │ ├── dev.wxs │ │ ├── dev_d.wixproj │ │ ├── dev_d.wxs │ │ ├── dev_en-US.wxl │ │ └── dev_files.wxs │ ├── doc │ │ ├── doc.wixproj │ │ ├── doc.wxs │ │ ├── doc_en-US.wxl_template │ │ ├── doc_files.wxs │ │ └── doc_no_files.wxs │ ├── exe │ │ ├── exe.wixproj │ │ ├── exe.wxs │ │ ├── exe_d.wixproj │ │ ├── exe_d.wxs │ │ ├── exe_en-US.wxl_template │ │ ├── exe_files.wxs │ │ ├── exe_pdb.wixproj │ │ ├── exe_pdb.wxs │ │ └── exe_reg.wxs │ ├── generate_md5.py │ ├── get_externals.bat │ ├── launcher │ │ ├── launcher.wixproj │ │ ├── launcher.wxs │ │ ├── launcher_en-US.wxl │ │ ├── launcher_files.wxs │ │ └── launcher_reg.wxs │ ├── lib │ │ ├── lib.wixproj │ │ ├── lib.wxs │ │ ├── lib_d.wixproj │ │ ├── lib_d.wxs │ │ ├── lib_en-US.wxl │ │ ├── lib_files.wxs │ │ ├── lib_pdb.wixproj │ │ └── lib_pdb.wxs │ ├── make_appx.ps1 │ ├── make_cat.ps1 │ ├── make_zip.proj │ ├── msi.props │ ├── msi.targets │ ├── path │ │ ├── path.wixproj │ │ ├── path.wxs │ │ └── path_en-US.wxl │ ├── pip │ │ ├── pip.wixproj │ │ ├── pip.wxs │ │ └── pip_en-US.wxl │ ├── purge.py │ ├── sdktools.psm1 │ ├── sign_build.ps1 │ ├── tcltk │ │ ├── tcltk.wixproj │ │ ├── tcltk.wxs │ │ ├── tcltk_d.wixproj │ │ ├── tcltk_d.wxs │ │ ├── tcltk_en-US.wxl_template │ │ ├── tcltk_files.wxs │ │ ├── tcltk_pdb.wixproj │ │ ├── tcltk_pdb.wxs │ │ └── tcltk_reg.wxs │ ├── test │ │ ├── test.wixproj │ │ ├── test.wxs │ │ ├── test_d.wixproj │ │ ├── test_d.wxs │ │ ├── test_en-US.wxl │ │ ├── test_files.wxs │ │ ├── test_pdb.wixproj │ │ └── test_pdb.wxs │ ├── testrelease.bat │ ├── tools │ │ ├── tools.wixproj │ │ ├── tools.wxs │ │ ├── tools_en-US.wxl │ │ └── tools_files.wxs │ ├── ucrt │ │ ├── ucrt.wixproj │ │ ├── ucrt.wxs │ │ └── ucrt_en-US.wxl │ ├── uploadrelease.bat │ ├── uploadrelease.proj │ ├── uploadrelease.ps1 │ └── wix.props ├── nuget │ ├── build.bat │ ├── make_pkg.proj │ ├── python.nuspec │ ├── pythonarm32.nuspec │ ├── pythondaily.nuspec │ ├── pythondaily.symbols.nuspec │ └── pythonx86.nuspec ├── 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 │ │ └── validator.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 ├── pynche │ ├── ChipViewer.py │ ├── ColorDB.py │ ├── DetailsViewer.py │ ├── ListViewer.py │ ├── Main.py │ ├── PyncheWidget.py │ ├── README │ ├── StripViewer.py │ ├── Switchboard.py │ ├── TextViewer.py │ ├── TypeinViewer.py │ ├── X │ │ ├── rgb.txt │ │ └── xlicense.txt │ ├── __init__.py │ ├── html40colors.txt │ ├── namedcolors.txt │ ├── pyColorChooser.py │ ├── pynche │ ├── pynche.pyw │ ├── webcolors.txt │ └── websafe.txt ├── scripts │ ├── 2to3 │ ├── README │ ├── abitype.py │ ├── analyze_dxp.py │ ├── byext.py │ ├── byteyears.py │ ├── checkpip.py │ ├── cleanfuture.py │ ├── combinerefs.py │ ├── copytime.py │ ├── crlf.py │ ├── db2pickle.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 │ ├── fixnotice.py │ ├── fixps.py │ ├── generate_stdlib_module_names.py │ ├── generate_token.py │ ├── get-remote-certificate.py │ ├── google.py │ ├── gprof2html.py │ ├── highlight.py │ ├── idle3 │ ├── ifdef.py │ ├── import_diagnostics.py │ ├── lfcr.py │ ├── linktree.py │ ├── lll.py │ ├── mailerdaemon.py │ ├── make_ctype.py │ ├── md5sum.py │ ├── mkreal.py │ ├── ndiff.py │ ├── nm2def.py │ ├── objgraph.py │ ├── parse_html5_entities.py │ ├── parseentities.py │ ├── patchcheck.py │ ├── pathfix.py │ ├── pdeps.py │ ├── pep384_macrocheck.py │ ├── pickle2db.py │ ├── pindent.py │ ├── ptags.py │ ├── pydoc3 │ ├── pysource.py │ ├── reindent-rst.py │ ├── reindent.py │ ├── rgrep.py │ ├── run_tests.py │ ├── serve.py │ ├── smelly.py │ ├── stable_abi.py │ ├── suff.py │ ├── texi2html.py │ ├── untabify.py │ ├── update_file.py │ ├── var_access_benchmark.py │ ├── verify_ensurepip_wheels.py │ ├── which.py │ └── win_add2path.py ├── ssl │ ├── make_ssl_data.py │ └── multissltests.py ├── stringbench │ ├── README │ └── stringbench.py ├── test2to3 │ ├── README │ ├── maintest.py │ ├── setup.py │ ├── test │ │ ├── runtests.py │ │ └── test_foo.py │ └── test2to3 │ │ ├── __init__.py │ │ └── hello.py ├── tz │ └── zdump.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 └── unittestgui │ ├── README.txt │ └── unittestgui.py ├── aclocal.m4 ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── install-sh ├── netlify.toml ├── pyconfig.h.in └── setup.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/Makefile -------------------------------------------------------------------------------- /Doc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/README.rst -------------------------------------------------------------------------------- /Doc/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/about.rst -------------------------------------------------------------------------------- /Doc/bugs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/bugs.rst -------------------------------------------------------------------------------- /Doc/c-api/abstract.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/abstract.rst -------------------------------------------------------------------------------- /Doc/c-api/arg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/arg.rst -------------------------------------------------------------------------------- /Doc/c-api/bool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/bool.rst -------------------------------------------------------------------------------- /Doc/c-api/buffer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/buffer.rst -------------------------------------------------------------------------------- /Doc/c-api/bytes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/bytes.rst -------------------------------------------------------------------------------- /Doc/c-api/call.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/call.rst -------------------------------------------------------------------------------- /Doc/c-api/capsule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/capsule.rst -------------------------------------------------------------------------------- /Doc/c-api/cell.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/cell.rst -------------------------------------------------------------------------------- /Doc/c-api/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/code.rst -------------------------------------------------------------------------------- /Doc/c-api/codec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/codec.rst -------------------------------------------------------------------------------- /Doc/c-api/complex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/complex.rst -------------------------------------------------------------------------------- /Doc/c-api/concrete.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/concrete.rst -------------------------------------------------------------------------------- /Doc/c-api/coro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/coro.rst -------------------------------------------------------------------------------- /Doc/c-api/datetime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/datetime.rst -------------------------------------------------------------------------------- /Doc/c-api/dict.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/dict.rst -------------------------------------------------------------------------------- /Doc/c-api/file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/file.rst -------------------------------------------------------------------------------- /Doc/c-api/float.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/float.rst -------------------------------------------------------------------------------- /Doc/c-api/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/function.rst -------------------------------------------------------------------------------- /Doc/c-api/gen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/gen.rst -------------------------------------------------------------------------------- /Doc/c-api/import.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/import.rst -------------------------------------------------------------------------------- /Doc/c-api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/index.rst -------------------------------------------------------------------------------- /Doc/c-api/init.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/init.rst -------------------------------------------------------------------------------- /Doc/c-api/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/intro.rst -------------------------------------------------------------------------------- /Doc/c-api/iter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/iter.rst -------------------------------------------------------------------------------- /Doc/c-api/iterator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/iterator.rst -------------------------------------------------------------------------------- /Doc/c-api/list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/list.rst -------------------------------------------------------------------------------- /Doc/c-api/long.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/long.rst -------------------------------------------------------------------------------- /Doc/c-api/mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/mapping.rst -------------------------------------------------------------------------------- /Doc/c-api/marshal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/marshal.rst -------------------------------------------------------------------------------- /Doc/c-api/memory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/memory.rst -------------------------------------------------------------------------------- /Doc/c-api/method.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/method.rst -------------------------------------------------------------------------------- /Doc/c-api/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/module.rst -------------------------------------------------------------------------------- /Doc/c-api/none.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/none.rst -------------------------------------------------------------------------------- /Doc/c-api/number.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/number.rst -------------------------------------------------------------------------------- /Doc/c-api/object.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/object.rst -------------------------------------------------------------------------------- /Doc/c-api/objimpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/objimpl.rst -------------------------------------------------------------------------------- /Doc/c-api/sequence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/sequence.rst -------------------------------------------------------------------------------- /Doc/c-api/set.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/set.rst -------------------------------------------------------------------------------- /Doc/c-api/slice.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/slice.rst -------------------------------------------------------------------------------- /Doc/c-api/stable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/stable.rst -------------------------------------------------------------------------------- /Doc/c-api/sys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/sys.rst -------------------------------------------------------------------------------- /Doc/c-api/tuple.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/tuple.rst -------------------------------------------------------------------------------- /Doc/c-api/type.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/type.rst -------------------------------------------------------------------------------- /Doc/c-api/typeobj.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/typeobj.rst -------------------------------------------------------------------------------- /Doc/c-api/unicode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/unicode.rst -------------------------------------------------------------------------------- /Doc/c-api/veryhigh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/veryhigh.rst -------------------------------------------------------------------------------- /Doc/c-api/weakref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/c-api/weakref.rst -------------------------------------------------------------------------------- /Doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/conf.py -------------------------------------------------------------------------------- /Doc/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/contents.rst -------------------------------------------------------------------------------- /Doc/copyright.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/copyright.rst -------------------------------------------------------------------------------- /Doc/data/refcounts.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/data/refcounts.dat -------------------------------------------------------------------------------- /Doc/docutils.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/docutils.conf -------------------------------------------------------------------------------- /Doc/faq/design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/faq/design.rst -------------------------------------------------------------------------------- /Doc/faq/extending.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/faq/extending.rst -------------------------------------------------------------------------------- /Doc/faq/general.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/faq/general.rst -------------------------------------------------------------------------------- /Doc/faq/gui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/faq/gui.rst -------------------------------------------------------------------------------- /Doc/faq/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/faq/index.rst -------------------------------------------------------------------------------- /Doc/faq/installed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/faq/installed.rst -------------------------------------------------------------------------------- /Doc/faq/library.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/faq/library.rst -------------------------------------------------------------------------------- /Doc/faq/windows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/faq/windows.rst -------------------------------------------------------------------------------- /Doc/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/glossary.rst -------------------------------------------------------------------------------- /Doc/howto/argparse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/howto/argparse.rst -------------------------------------------------------------------------------- /Doc/howto/clinic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/howto/clinic.rst -------------------------------------------------------------------------------- /Doc/howto/cporting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/howto/cporting.rst -------------------------------------------------------------------------------- /Doc/howto/curses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/howto/curses.rst -------------------------------------------------------------------------------- /Doc/howto/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/howto/index.rst -------------------------------------------------------------------------------- /Doc/howto/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/howto/logging.rst -------------------------------------------------------------------------------- /Doc/howto/regex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/howto/regex.rst -------------------------------------------------------------------------------- /Doc/howto/sockets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/howto/sockets.rst -------------------------------------------------------------------------------- /Doc/howto/sorting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/howto/sorting.rst -------------------------------------------------------------------------------- /Doc/howto/unicode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/howto/unicode.rst -------------------------------------------------------------------------------- /Doc/howto/urllib2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/howto/urllib2.rst -------------------------------------------------------------------------------- /Doc/includes/custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/includes/custom.c -------------------------------------------------------------------------------- /Doc/includes/custom2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/includes/custom2.c -------------------------------------------------------------------------------- /Doc/includes/custom3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/includes/custom3.c -------------------------------------------------------------------------------- /Doc/includes/custom4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/includes/custom4.c -------------------------------------------------------------------------------- /Doc/includes/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/includes/setup.py -------------------------------------------------------------------------------- /Doc/includes/sublist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/includes/sublist.c -------------------------------------------------------------------------------- /Doc/includes/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/includes/test.py -------------------------------------------------------------------------------- /Doc/install/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/install/index.rst -------------------------------------------------------------------------------- /Doc/library/2to3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/2to3.rst -------------------------------------------------------------------------------- /Doc/library/abc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/abc.rst -------------------------------------------------------------------------------- /Doc/library/aifc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/aifc.rst -------------------------------------------------------------------------------- /Doc/library/allos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/allos.rst -------------------------------------------------------------------------------- /Doc/library/array.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/array.rst -------------------------------------------------------------------------------- /Doc/library/ast.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/ast.rst -------------------------------------------------------------------------------- /Doc/library/atexit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/atexit.rst -------------------------------------------------------------------------------- /Doc/library/base64.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/base64.rst -------------------------------------------------------------------------------- /Doc/library/bdb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/bdb.rst -------------------------------------------------------------------------------- /Doc/library/binary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/binary.rst -------------------------------------------------------------------------------- /Doc/library/binhex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/binhex.rst -------------------------------------------------------------------------------- /Doc/library/bisect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/bisect.rst -------------------------------------------------------------------------------- /Doc/library/bz2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/bz2.rst -------------------------------------------------------------------------------- /Doc/library/cgi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/cgi.rst -------------------------------------------------------------------------------- /Doc/library/cgitb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/cgitb.rst -------------------------------------------------------------------------------- /Doc/library/chunk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/chunk.rst -------------------------------------------------------------------------------- /Doc/library/cmath.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/cmath.rst -------------------------------------------------------------------------------- /Doc/library/cmd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/cmd.rst -------------------------------------------------------------------------------- /Doc/library/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/code.rst -------------------------------------------------------------------------------- /Doc/library/codecs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/codecs.rst -------------------------------------------------------------------------------- /Doc/library/codeop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/codeop.rst -------------------------------------------------------------------------------- /Doc/library/copy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/copy.rst -------------------------------------------------------------------------------- /Doc/library/crypt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/crypt.rst -------------------------------------------------------------------------------- /Doc/library/crypto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/crypto.rst -------------------------------------------------------------------------------- /Doc/library/csv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/csv.rst -------------------------------------------------------------------------------- /Doc/library/ctypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/ctypes.rst -------------------------------------------------------------------------------- /Doc/library/curses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/curses.rst -------------------------------------------------------------------------------- /Doc/library/dbm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/dbm.rst -------------------------------------------------------------------------------- /Doc/library/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/debug.rst -------------------------------------------------------------------------------- /Doc/library/dialog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/dialog.rst -------------------------------------------------------------------------------- /Doc/library/dis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/dis.rst -------------------------------------------------------------------------------- /Doc/library/email.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/email.rst -------------------------------------------------------------------------------- /Doc/library/enum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/enum.rst -------------------------------------------------------------------------------- /Doc/library/errno.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/errno.rst -------------------------------------------------------------------------------- /Doc/library/fcntl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/fcntl.rst -------------------------------------------------------------------------------- /Doc/library/ftplib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/ftplib.rst -------------------------------------------------------------------------------- /Doc/library/gc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/gc.rst -------------------------------------------------------------------------------- /Doc/library/getopt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/getopt.rst -------------------------------------------------------------------------------- /Doc/library/glob.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/glob.rst -------------------------------------------------------------------------------- /Doc/library/grp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/grp.rst -------------------------------------------------------------------------------- /Doc/library/gzip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/gzip.rst -------------------------------------------------------------------------------- /Doc/library/heapq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/heapq.rst -------------------------------------------------------------------------------- /Doc/library/hmac.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/hmac.rst -------------------------------------------------------------------------------- /Doc/library/html.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/html.rst -------------------------------------------------------------------------------- /Doc/library/http.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/http.rst -------------------------------------------------------------------------------- /Doc/library/i18n.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/i18n.rst -------------------------------------------------------------------------------- /Doc/library/idle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/idle.rst -------------------------------------------------------------------------------- /Doc/library/imghdr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/imghdr.rst -------------------------------------------------------------------------------- /Doc/library/imp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/imp.rst -------------------------------------------------------------------------------- /Doc/library/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/index.rst -------------------------------------------------------------------------------- /Doc/library/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/intro.rst -------------------------------------------------------------------------------- /Doc/library/io.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/io.rst -------------------------------------------------------------------------------- /Doc/library/ipc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/ipc.rst -------------------------------------------------------------------------------- /Doc/library/json.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/json.rst -------------------------------------------------------------------------------- /Doc/library/locale.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/locale.rst -------------------------------------------------------------------------------- /Doc/library/lzma.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/lzma.rst -------------------------------------------------------------------------------- /Doc/library/markup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/markup.rst -------------------------------------------------------------------------------- /Doc/library/math.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/math.rst -------------------------------------------------------------------------------- /Doc/library/mm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/mm.rst -------------------------------------------------------------------------------- /Doc/library/mmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/mmap.rst -------------------------------------------------------------------------------- /Doc/library/msilib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/msilib.rst -------------------------------------------------------------------------------- /Doc/library/msvcrt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/msvcrt.rst -------------------------------------------------------------------------------- /Doc/library/netrc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/netrc.rst -------------------------------------------------------------------------------- /Doc/library/nis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/nis.rst -------------------------------------------------------------------------------- /Doc/library/os.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/os.rst -------------------------------------------------------------------------------- /Doc/library/pdb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/pdb.rst -------------------------------------------------------------------------------- /Doc/library/pickle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/pickle.rst -------------------------------------------------------------------------------- /Doc/library/pipes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/pipes.rst -------------------------------------------------------------------------------- /Doc/library/poplib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/poplib.rst -------------------------------------------------------------------------------- /Doc/library/posix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/posix.rst -------------------------------------------------------------------------------- /Doc/library/pprint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/pprint.rst -------------------------------------------------------------------------------- /Doc/library/pty.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/pty.rst -------------------------------------------------------------------------------- /Doc/library/pwd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/pwd.rst -------------------------------------------------------------------------------- /Doc/library/pyclbr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/pyclbr.rst -------------------------------------------------------------------------------- /Doc/library/pydoc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/pydoc.rst -------------------------------------------------------------------------------- /Doc/library/python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/python.rst -------------------------------------------------------------------------------- /Doc/library/queue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/queue.rst -------------------------------------------------------------------------------- /Doc/library/quopri.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/quopri.rst -------------------------------------------------------------------------------- /Doc/library/random.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/random.rst -------------------------------------------------------------------------------- /Doc/library/re.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/re.rst -------------------------------------------------------------------------------- /Doc/library/runpy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/runpy.rst -------------------------------------------------------------------------------- /Doc/library/sched.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/sched.rst -------------------------------------------------------------------------------- /Doc/library/select.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/select.rst -------------------------------------------------------------------------------- /Doc/library/shelve.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/shelve.rst -------------------------------------------------------------------------------- /Doc/library/shlex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/shlex.rst -------------------------------------------------------------------------------- /Doc/library/shutil.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/shutil.rst -------------------------------------------------------------------------------- /Doc/library/signal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/signal.rst -------------------------------------------------------------------------------- /Doc/library/site.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/site.rst -------------------------------------------------------------------------------- /Doc/library/smtpd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/smtpd.rst -------------------------------------------------------------------------------- /Doc/library/sndhdr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/sndhdr.rst -------------------------------------------------------------------------------- /Doc/library/socket.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/socket.rst -------------------------------------------------------------------------------- /Doc/library/spwd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/spwd.rst -------------------------------------------------------------------------------- /Doc/library/ssl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/ssl.rst -------------------------------------------------------------------------------- /Doc/library/stat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/stat.rst -------------------------------------------------------------------------------- /Doc/library/string.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/string.rst -------------------------------------------------------------------------------- /Doc/library/struct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/struct.rst -------------------------------------------------------------------------------- /Doc/library/sunau.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/sunau.rst -------------------------------------------------------------------------------- /Doc/library/sys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/sys.rst -------------------------------------------------------------------------------- /Doc/library/test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/test.rst -------------------------------------------------------------------------------- /Doc/library/text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/text.rst -------------------------------------------------------------------------------- /Doc/library/time.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/time.rst -------------------------------------------------------------------------------- /Doc/library/tk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/tk.rst -------------------------------------------------------------------------------- /Doc/library/tty.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/tty.rst -------------------------------------------------------------------------------- /Doc/library/unix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/unix.rst -------------------------------------------------------------------------------- /Doc/library/uu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/uu.rst -------------------------------------------------------------------------------- /Doc/library/uuid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/uuid.rst -------------------------------------------------------------------------------- /Doc/library/venv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/venv.rst -------------------------------------------------------------------------------- /Doc/library/wave.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/wave.rst -------------------------------------------------------------------------------- /Doc/library/xml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/xml.rst -------------------------------------------------------------------------------- /Doc/library/zlib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/library/zlib.rst -------------------------------------------------------------------------------- /Doc/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/license.rst -------------------------------------------------------------------------------- /Doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/make.bat -------------------------------------------------------------------------------- /Doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/requirements.txt -------------------------------------------------------------------------------- /Doc/runtime.txt: -------------------------------------------------------------------------------- 1 | 3.7 -------------------------------------------------------------------------------- /Doc/tools/rstlint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/tools/rstlint.py -------------------------------------------------------------------------------- /Doc/using/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/using/index.rst -------------------------------------------------------------------------------- /Doc/using/mac.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/using/mac.rst -------------------------------------------------------------------------------- /Doc/using/unix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/using/unix.rst -------------------------------------------------------------------------------- /Doc/whatsnew/2.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/2.0.rst -------------------------------------------------------------------------------- /Doc/whatsnew/2.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/2.1.rst -------------------------------------------------------------------------------- /Doc/whatsnew/2.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/2.2.rst -------------------------------------------------------------------------------- /Doc/whatsnew/2.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/2.3.rst -------------------------------------------------------------------------------- /Doc/whatsnew/2.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/2.4.rst -------------------------------------------------------------------------------- /Doc/whatsnew/2.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/2.5.rst -------------------------------------------------------------------------------- /Doc/whatsnew/2.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/2.6.rst -------------------------------------------------------------------------------- /Doc/whatsnew/2.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/2.7.rst -------------------------------------------------------------------------------- /Doc/whatsnew/3.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/3.0.rst -------------------------------------------------------------------------------- /Doc/whatsnew/3.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/3.1.rst -------------------------------------------------------------------------------- /Doc/whatsnew/3.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/3.2.rst -------------------------------------------------------------------------------- /Doc/whatsnew/3.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/3.3.rst -------------------------------------------------------------------------------- /Doc/whatsnew/3.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/3.4.rst -------------------------------------------------------------------------------- /Doc/whatsnew/3.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/3.5.rst -------------------------------------------------------------------------------- /Doc/whatsnew/3.6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/3.6.rst -------------------------------------------------------------------------------- /Doc/whatsnew/3.7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/3.7.rst -------------------------------------------------------------------------------- /Doc/whatsnew/3.8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/3.8.rst -------------------------------------------------------------------------------- /Doc/whatsnew/3.9.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Doc/whatsnew/3.9.rst -------------------------------------------------------------------------------- /Grammar/Tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Grammar/Tokens -------------------------------------------------------------------------------- /Grammar/python.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Grammar/python.gram -------------------------------------------------------------------------------- /Include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/Python.h -------------------------------------------------------------------------------- /Include/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/README.rst -------------------------------------------------------------------------------- /Include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/abstract.h -------------------------------------------------------------------------------- /Include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/boolobject.h -------------------------------------------------------------------------------- /Include/cellobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/cellobject.h -------------------------------------------------------------------------------- /Include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/ceval.h -------------------------------------------------------------------------------- /Include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/code.h -------------------------------------------------------------------------------- /Include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/codecs.h -------------------------------------------------------------------------------- /Include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/compile.h -------------------------------------------------------------------------------- /Include/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/context.h -------------------------------------------------------------------------------- /Include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/datetime.h -------------------------------------------------------------------------------- /Include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/dictobject.h -------------------------------------------------------------------------------- /Include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/enumobject.h -------------------------------------------------------------------------------- /Include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/errcode.h -------------------------------------------------------------------------------- /Include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/eval.h -------------------------------------------------------------------------------- /Include/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/exports.h -------------------------------------------------------------------------------- /Include/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/fileobject.h -------------------------------------------------------------------------------- /Include/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/fileutils.h -------------------------------------------------------------------------------- /Include/funcobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/funcobject.h -------------------------------------------------------------------------------- /Include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/genobject.h -------------------------------------------------------------------------------- /Include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/import.h -------------------------------------------------------------------------------- /Include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/intrcheck.h -------------------------------------------------------------------------------- /Include/iterobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/iterobject.h -------------------------------------------------------------------------------- /Include/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/listobject.h -------------------------------------------------------------------------------- /Include/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/longobject.h -------------------------------------------------------------------------------- /Include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/marshal.h -------------------------------------------------------------------------------- /Include/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/modsupport.h -------------------------------------------------------------------------------- /Include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/object.h -------------------------------------------------------------------------------- /Include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/objimpl.h -------------------------------------------------------------------------------- /Include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/opcode.h -------------------------------------------------------------------------------- /Include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/osdefs.h -------------------------------------------------------------------------------- /Include/osmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/osmodule.h -------------------------------------------------------------------------------- /Include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/patchlevel.h -------------------------------------------------------------------------------- /Include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/py_curses.h -------------------------------------------------------------------------------- /Include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pycapsule.h -------------------------------------------------------------------------------- /Include/pydtrace.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pydtrace.d -------------------------------------------------------------------------------- /Include/pydtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pydtrace.h -------------------------------------------------------------------------------- /Include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pyerrors.h -------------------------------------------------------------------------------- /Include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pyexpat.h -------------------------------------------------------------------------------- /Include/pyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pyframe.h -------------------------------------------------------------------------------- /Include/pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pyhash.h -------------------------------------------------------------------------------- /Include/pymacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pymacro.h -------------------------------------------------------------------------------- /Include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pymath.h -------------------------------------------------------------------------------- /Include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pymem.h -------------------------------------------------------------------------------- /Include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pyport.h -------------------------------------------------------------------------------- /Include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pystate.h -------------------------------------------------------------------------------- /Include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pystrcmp.h -------------------------------------------------------------------------------- /Include/pystrhex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pystrhex.h -------------------------------------------------------------------------------- /Include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pystrtod.h -------------------------------------------------------------------------------- /Include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pythonrun.h -------------------------------------------------------------------------------- /Include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/pythread.h -------------------------------------------------------------------------------- /Include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/setobject.h -------------------------------------------------------------------------------- /Include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/structseq.h -------------------------------------------------------------------------------- /Include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/sysmodule.h -------------------------------------------------------------------------------- /Include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/token.h -------------------------------------------------------------------------------- /Include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/traceback.h -------------------------------------------------------------------------------- /Include/typeslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/typeslots.h -------------------------------------------------------------------------------- /Include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Include/warnings.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/__future__.py -------------------------------------------------------------------------------- /Lib/_aix_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/_aix_support.py -------------------------------------------------------------------------------- /Lib/_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/_compression.py -------------------------------------------------------------------------------- /Lib/_markupbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/_markupbase.py -------------------------------------------------------------------------------- /Lib/_osx_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/_osx_support.py -------------------------------------------------------------------------------- /Lib/_py_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/_py_abc.py -------------------------------------------------------------------------------- /Lib/_pydecimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/_pydecimal.py -------------------------------------------------------------------------------- /Lib/_pyio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/_pyio.py -------------------------------------------------------------------------------- /Lib/_sitebuiltins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/_sitebuiltins.py -------------------------------------------------------------------------------- /Lib/_strptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/_strptime.py -------------------------------------------------------------------------------- /Lib/_weakrefset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/_weakrefset.py -------------------------------------------------------------------------------- /Lib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/abc.py -------------------------------------------------------------------------------- /Lib/aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/aifc.py -------------------------------------------------------------------------------- /Lib/antigravity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/antigravity.py -------------------------------------------------------------------------------- /Lib/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/argparse.py -------------------------------------------------------------------------------- /Lib/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/ast.py -------------------------------------------------------------------------------- /Lib/asynchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/asynchat.py -------------------------------------------------------------------------------- /Lib/asyncio/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/asyncio/locks.py -------------------------------------------------------------------------------- /Lib/asyncio/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/asyncio/log.py -------------------------------------------------------------------------------- /Lib/asyncio/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/asyncio/tasks.py -------------------------------------------------------------------------------- /Lib/asyncore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/asyncore.py -------------------------------------------------------------------------------- /Lib/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/base64.py -------------------------------------------------------------------------------- /Lib/bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/bdb.py -------------------------------------------------------------------------------- /Lib/binhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/binhex.py -------------------------------------------------------------------------------- /Lib/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/bisect.py -------------------------------------------------------------------------------- /Lib/bz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/bz2.py -------------------------------------------------------------------------------- /Lib/cProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/cProfile.py -------------------------------------------------------------------------------- /Lib/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/calendar.py -------------------------------------------------------------------------------- /Lib/cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/cgi.py -------------------------------------------------------------------------------- /Lib/cgitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/cgitb.py -------------------------------------------------------------------------------- /Lib/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/chunk.py -------------------------------------------------------------------------------- /Lib/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/cmd.py -------------------------------------------------------------------------------- /Lib/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/code.py -------------------------------------------------------------------------------- /Lib/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/codecs.py -------------------------------------------------------------------------------- /Lib/codeop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/codeop.py -------------------------------------------------------------------------------- /Lib/colorsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/colorsys.py -------------------------------------------------------------------------------- /Lib/compileall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/compileall.py -------------------------------------------------------------------------------- /Lib/concurrent/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /Lib/configparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/configparser.py -------------------------------------------------------------------------------- /Lib/contextlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/contextlib.py -------------------------------------------------------------------------------- /Lib/contextvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/contextvars.py -------------------------------------------------------------------------------- /Lib/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/copy.py -------------------------------------------------------------------------------- /Lib/copyreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/copyreg.py -------------------------------------------------------------------------------- /Lib/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/crypt.py -------------------------------------------------------------------------------- /Lib/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/csv.py -------------------------------------------------------------------------------- /Lib/ctypes/_aix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/ctypes/_aix.py -------------------------------------------------------------------------------- /Lib/ctypes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/ctypes/util.py -------------------------------------------------------------------------------- /Lib/curses/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/curses/ascii.py -------------------------------------------------------------------------------- /Lib/curses/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/curses/panel.py -------------------------------------------------------------------------------- /Lib/dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/dataclasses.py -------------------------------------------------------------------------------- /Lib/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/datetime.py -------------------------------------------------------------------------------- /Lib/dbm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/dbm/__init__.py -------------------------------------------------------------------------------- /Lib/dbm/dumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/dbm/dumb.py -------------------------------------------------------------------------------- /Lib/dbm/gnu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/dbm/gnu.py -------------------------------------------------------------------------------- /Lib/dbm/ndbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/dbm/ndbm.py -------------------------------------------------------------------------------- /Lib/decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/decimal.py -------------------------------------------------------------------------------- /Lib/difflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/difflib.py -------------------------------------------------------------------------------- /Lib/dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/dis.py -------------------------------------------------------------------------------- /Lib/distutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/distutils/README -------------------------------------------------------------------------------- /Lib/distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/distutils/cmd.py -------------------------------------------------------------------------------- /Lib/distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/distutils/log.py -------------------------------------------------------------------------------- /Lib/distutils/tests/includetest.rst: -------------------------------------------------------------------------------- 1 | This should be included. 2 | -------------------------------------------------------------------------------- /Lib/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/doctest.py -------------------------------------------------------------------------------- /Lib/email/charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/email/charset.py -------------------------------------------------------------------------------- /Lib/email/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/email/errors.py -------------------------------------------------------------------------------- /Lib/email/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/email/header.py -------------------------------------------------------------------------------- /Lib/email/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/email/message.py -------------------------------------------------------------------------------- /Lib/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/email/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/email/parser.py -------------------------------------------------------------------------------- /Lib/email/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/email/policy.py -------------------------------------------------------------------------------- /Lib/email/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/email/utils.py -------------------------------------------------------------------------------- /Lib/encodings/gbk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/encodings/gbk.py -------------------------------------------------------------------------------- /Lib/encodings/hz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/encodings/hz.py -------------------------------------------------------------------------------- /Lib/encodings/oem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/encodings/oem.py -------------------------------------------------------------------------------- /Lib/ensurepip/_bundled/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/enum.py -------------------------------------------------------------------------------- /Lib/filecmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/filecmp.py -------------------------------------------------------------------------------- /Lib/fileinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/fileinput.py -------------------------------------------------------------------------------- /Lib/fnmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/fnmatch.py -------------------------------------------------------------------------------- /Lib/fractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/fractions.py -------------------------------------------------------------------------------- /Lib/ftplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/ftplib.py -------------------------------------------------------------------------------- /Lib/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/functools.py -------------------------------------------------------------------------------- /Lib/genericpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/genericpath.py -------------------------------------------------------------------------------- /Lib/getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/getopt.py -------------------------------------------------------------------------------- /Lib/getpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/getpass.py -------------------------------------------------------------------------------- /Lib/gettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/gettext.py -------------------------------------------------------------------------------- /Lib/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/glob.py -------------------------------------------------------------------------------- /Lib/graphlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/graphlib.py -------------------------------------------------------------------------------- /Lib/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/gzip.py -------------------------------------------------------------------------------- /Lib/hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/hashlib.py -------------------------------------------------------------------------------- /Lib/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/heapq.py -------------------------------------------------------------------------------- /Lib/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/hmac.py -------------------------------------------------------------------------------- /Lib/html/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/html/__init__.py -------------------------------------------------------------------------------- /Lib/html/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/html/entities.py -------------------------------------------------------------------------------- /Lib/html/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/html/parser.py -------------------------------------------------------------------------------- /Lib/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/http/__init__.py -------------------------------------------------------------------------------- /Lib/http/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/http/client.py -------------------------------------------------------------------------------- /Lib/http/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/http/cookies.py -------------------------------------------------------------------------------- /Lib/http/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/http/server.py -------------------------------------------------------------------------------- /Lib/idlelib/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/idlelib/NEWS.txt -------------------------------------------------------------------------------- /Lib/idlelib/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/idlelib/TODO.txt -------------------------------------------------------------------------------- /Lib/idlelib/grep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/idlelib/grep.py -------------------------------------------------------------------------------- /Lib/idlelib/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/idlelib/help.py -------------------------------------------------------------------------------- /Lib/idlelib/idle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/idlelib/idle.bat -------------------------------------------------------------------------------- /Lib/idlelib/idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/idlelib/idle.py -------------------------------------------------------------------------------- /Lib/idlelib/idle.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/idlelib/idle.pyw -------------------------------------------------------------------------------- /Lib/idlelib/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/idlelib/query.py -------------------------------------------------------------------------------- /Lib/idlelib/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/idlelib/rpc.py -------------------------------------------------------------------------------- /Lib/idlelib/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/idlelib/run.py -------------------------------------------------------------------------------- /Lib/idlelib/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/idlelib/tree.py -------------------------------------------------------------------------------- /Lib/idlelib/undo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/idlelib/undo.py -------------------------------------------------------------------------------- /Lib/idlelib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/idlelib/util.py -------------------------------------------------------------------------------- /Lib/imaplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/imaplib.py -------------------------------------------------------------------------------- /Lib/imghdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/imghdr.py -------------------------------------------------------------------------------- /Lib/imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/imp.py -------------------------------------------------------------------------------- /Lib/importlib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/importlib/abc.py -------------------------------------------------------------------------------- /Lib/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/inspect.py -------------------------------------------------------------------------------- /Lib/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/io.py -------------------------------------------------------------------------------- /Lib/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/ipaddress.py -------------------------------------------------------------------------------- /Lib/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/json/__init__.py -------------------------------------------------------------------------------- /Lib/json/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/json/decoder.py -------------------------------------------------------------------------------- /Lib/json/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/json/encoder.py -------------------------------------------------------------------------------- /Lib/json/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/json/scanner.py -------------------------------------------------------------------------------- /Lib/json/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/json/tool.py -------------------------------------------------------------------------------- /Lib/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/keyword.py -------------------------------------------------------------------------------- /Lib/lib2to3/fixes/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /Lib/lib2to3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/lib2to3/main.py -------------------------------------------------------------------------------- /Lib/lib2to3/tests/data/bom.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | print "BOM BOOM!" 3 | -------------------------------------------------------------------------------- /Lib/lib2to3/tests/data/false_encoding.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | print '#coding=0' 3 | -------------------------------------------------------------------------------- /Lib/lib2to3/tests/data/fixers/myfixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/lib2to3/tests/data/fixers/parrot_example.py: -------------------------------------------------------------------------------- 1 | def parrot(): 2 | pass 3 | -------------------------------------------------------------------------------- /Lib/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/linecache.py -------------------------------------------------------------------------------- /Lib/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/locale.py -------------------------------------------------------------------------------- /Lib/lzma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/lzma.py -------------------------------------------------------------------------------- /Lib/mailbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/mailbox.py -------------------------------------------------------------------------------- /Lib/mailcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/mailcap.py -------------------------------------------------------------------------------- /Lib/mimetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/mimetypes.py -------------------------------------------------------------------------------- /Lib/modulefinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/modulefinder.py -------------------------------------------------------------------------------- /Lib/msilib/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/msilib/schema.py -------------------------------------------------------------------------------- /Lib/msilib/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/msilib/text.py -------------------------------------------------------------------------------- /Lib/netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/netrc.py -------------------------------------------------------------------------------- /Lib/nntplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/nntplib.py -------------------------------------------------------------------------------- /Lib/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/ntpath.py -------------------------------------------------------------------------------- /Lib/nturl2path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/nturl2path.py -------------------------------------------------------------------------------- /Lib/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/numbers.py -------------------------------------------------------------------------------- /Lib/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/operator.py -------------------------------------------------------------------------------- /Lib/optparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/optparse.py -------------------------------------------------------------------------------- /Lib/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/os.py -------------------------------------------------------------------------------- /Lib/pathlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/pathlib.py -------------------------------------------------------------------------------- /Lib/pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/pdb.py -------------------------------------------------------------------------------- /Lib/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/pickle.py -------------------------------------------------------------------------------- /Lib/pickletools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/pickletools.py -------------------------------------------------------------------------------- /Lib/pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/pipes.py -------------------------------------------------------------------------------- /Lib/pkgutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/pkgutil.py -------------------------------------------------------------------------------- /Lib/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/platform.py -------------------------------------------------------------------------------- /Lib/plistlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/plistlib.py -------------------------------------------------------------------------------- /Lib/poplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/poplib.py -------------------------------------------------------------------------------- /Lib/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/posixpath.py -------------------------------------------------------------------------------- /Lib/pprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/pprint.py -------------------------------------------------------------------------------- /Lib/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/profile.py -------------------------------------------------------------------------------- /Lib/pstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/pstats.py -------------------------------------------------------------------------------- /Lib/pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/pty.py -------------------------------------------------------------------------------- /Lib/py_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/py_compile.py -------------------------------------------------------------------------------- /Lib/pyclbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/pyclbr.py -------------------------------------------------------------------------------- /Lib/pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/pydoc.py -------------------------------------------------------------------------------- /Lib/pydoc_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/queue.py -------------------------------------------------------------------------------- /Lib/quopri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/quopri.py -------------------------------------------------------------------------------- /Lib/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/random.py -------------------------------------------------------------------------------- /Lib/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/re.py -------------------------------------------------------------------------------- /Lib/reprlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/reprlib.py -------------------------------------------------------------------------------- /Lib/rlcompleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/rlcompleter.py -------------------------------------------------------------------------------- /Lib/runpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/runpy.py -------------------------------------------------------------------------------- /Lib/sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/sched.py -------------------------------------------------------------------------------- /Lib/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/secrets.py -------------------------------------------------------------------------------- /Lib/selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/selectors.py -------------------------------------------------------------------------------- /Lib/shelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/shelve.py -------------------------------------------------------------------------------- /Lib/shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/shlex.py -------------------------------------------------------------------------------- /Lib/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/shutil.py -------------------------------------------------------------------------------- /Lib/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/signal.py -------------------------------------------------------------------------------- /Lib/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/site.py -------------------------------------------------------------------------------- /Lib/smtpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/smtpd.py -------------------------------------------------------------------------------- /Lib/smtplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/smtplib.py -------------------------------------------------------------------------------- /Lib/sndhdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/sndhdr.py -------------------------------------------------------------------------------- /Lib/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/socket.py -------------------------------------------------------------------------------- /Lib/socketserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/socketserver.py -------------------------------------------------------------------------------- /Lib/sqlite3/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/sqlite3/dump.py -------------------------------------------------------------------------------- /Lib/sqlite3/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/sre_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/sre_compile.py -------------------------------------------------------------------------------- /Lib/sre_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/sre_constants.py -------------------------------------------------------------------------------- /Lib/sre_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/sre_parse.py -------------------------------------------------------------------------------- /Lib/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/ssl.py -------------------------------------------------------------------------------- /Lib/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/stat.py -------------------------------------------------------------------------------- /Lib/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/statistics.py -------------------------------------------------------------------------------- /Lib/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/string.py -------------------------------------------------------------------------------- /Lib/stringprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/stringprep.py -------------------------------------------------------------------------------- /Lib/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/struct.py -------------------------------------------------------------------------------- /Lib/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/subprocess.py -------------------------------------------------------------------------------- /Lib/sunau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/sunau.py -------------------------------------------------------------------------------- /Lib/symtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/symtable.py -------------------------------------------------------------------------------- /Lib/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/sysconfig.py -------------------------------------------------------------------------------- /Lib/tabnanny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/tabnanny.py -------------------------------------------------------------------------------- /Lib/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/tarfile.py -------------------------------------------------------------------------------- /Lib/telnetlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/telnetlib.py -------------------------------------------------------------------------------- /Lib/tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/tempfile.py -------------------------------------------------------------------------------- /Lib/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /Lib/test/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/__main__.py -------------------------------------------------------------------------------- /Lib/test/allsans.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/allsans.pem -------------------------------------------------------------------------------- /Lib/test/autotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/autotest.py -------------------------------------------------------------------------------- /Lib/test/bad_coding.py: -------------------------------------------------------------------------------- 1 | # -*- coding: uft-8 -*- 2 | -------------------------------------------------------------------------------- /Lib/test/bad_coding2.py: -------------------------------------------------------------------------------- 1 | #coding: utf8 2 | print('我') 3 | -------------------------------------------------------------------------------- /Lib/test/badcert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/badcert.pem -------------------------------------------------------------------------------- /Lib/test/badkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/badkey.pem -------------------------------------------------------------------------------- /Lib/test/badsyntax_3131.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | € = 2 3 | -------------------------------------------------------------------------------- /Lib/test/cfgparser.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/cfgparser.1 -------------------------------------------------------------------------------- /Lib/test/cfgparser.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/cfgparser.2 -------------------------------------------------------------------------------- /Lib/test/cfgparser.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/cfgparser.3 -------------------------------------------------------------------------------- /Lib/test/cjkencodings/big5hkscs-utf8.txt: -------------------------------------------------------------------------------- 1 | 𠄌Ě鵮罓洆 2 | ÊÊ̄ê êê̄ 3 | -------------------------------------------------------------------------------- /Lib/test/clinic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/clinic.test -------------------------------------------------------------------------------- /Lib/test/data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/data/README -------------------------------------------------------------------------------- /Lib/test/empty.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/empty.vbs -------------------------------------------------------------------------------- /Lib/test/final_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/final_a.py -------------------------------------------------------------------------------- /Lib/test/final_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/final_b.py -------------------------------------------------------------------------------- /Lib/test/idnsans.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/idnsans.pem -------------------------------------------------------------------------------- /Lib/test/ieee754.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/ieee754.txt -------------------------------------------------------------------------------- /Lib/test/keycert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/keycert.pem -------------------------------------------------------------------------------- /Lib/test/leakers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/mailcap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/mailcap.txt -------------------------------------------------------------------------------- /Lib/test/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/mime.types -------------------------------------------------------------------------------- /Lib/test/nokia.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/nokia.pem -------------------------------------------------------------------------------- /Lib/test/nosan.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/nosan.pem -------------------------------------------------------------------------------- /Lib/test/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/profilee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/profilee.py -------------------------------------------------------------------------------- /Lib/test/pstats.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/pstats.pck -------------------------------------------------------------------------------- /Lib/test/pycakey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/pycakey.pem -------------------------------------------------------------------------------- /Lib/test/randv3.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/randv3.pck -------------------------------------------------------------------------------- /Lib/test/re_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/re_tests.py -------------------------------------------------------------------------------- /Lib/test/regrtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/regrtest.py -------------------------------------------------------------------------------- /Lib/test/reperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/reperf.py -------------------------------------------------------------------------------- /Lib/test/sortperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/sortperf.py -------------------------------------------------------------------------------- /Lib/test/ssl_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/ssl_key.pem -------------------------------------------------------------------------------- /Lib/test/ssltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/ssltests.py -------------------------------------------------------------------------------- /Lib/test/test_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_abc.py -------------------------------------------------------------------------------- /Lib/test/test_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_ast.py -------------------------------------------------------------------------------- /Lib/test/test_bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_bdb.py -------------------------------------------------------------------------------- /Lib/test/test_bz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_bz2.py -------------------------------------------------------------------------------- /Lib/test/test_cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_cgi.py -------------------------------------------------------------------------------- /Lib/test/test_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_cmd.py -------------------------------------------------------------------------------- /Lib/test/test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_csv.py -------------------------------------------------------------------------------- /Lib/test/test_dbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_dbm.py -------------------------------------------------------------------------------- /Lib/test/test_dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_dis.py -------------------------------------------------------------------------------- /Lib/test/test_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_eof.py -------------------------------------------------------------------------------- /Lib/test/test_gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_gc.py -------------------------------------------------------------------------------- /Lib/test/test_gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_gdb.py -------------------------------------------------------------------------------- /Lib/test/test_grp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_grp.py -------------------------------------------------------------------------------- /Lib/test/test_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_imp.py -------------------------------------------------------------------------------- /Lib/test/test_import/data/circular_imports/basic2.py: -------------------------------------------------------------------------------- 1 | from . import basic 2 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/circular_imports/source.py: -------------------------------------------------------------------------------- 1 | from . import use 2 | spam = 1 3 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/circular_imports/subpkg/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/circular_imports/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/package/submodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/package2/submodule2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_import/data/unwritable/x.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data01/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Lib/test/test_importlib/data01/subdirectory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data01/subdirectory/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Lib/test/test_importlib/data01/utf-8.file: -------------------------------------------------------------------------------- 1 | Hello, UTF-8 world! 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data02/one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data02/one/resource1.txt: -------------------------------------------------------------------------------- 1 | one resource 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data02/two/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data02/two/resource2.txt: -------------------------------------------------------------------------------- 1 | two resource 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data03/namespace/portion1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data03/namespace/portion2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/data03/namespace/resource1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespace_pkgs/portion1/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'portion1 foo one' 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespace_pkgs/portion2/foo/two.py: -------------------------------------------------------------------------------- 1 | attr = 'portion2 foo two' 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespacedata01/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Lib/test/test_importlib/namespacedata01/utf-8.file: -------------------------------------------------------------------------------- 1 | Hello, UTF-8 world! 2 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/zipdata01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_importlib/zipdata02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/test_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_int.py -------------------------------------------------------------------------------- /Lib/test/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_io.py -------------------------------------------------------------------------------- /Lib/test/test_nis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_nis.py -------------------------------------------------------------------------------- /Lib/test/test_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_os.py -------------------------------------------------------------------------------- /Lib/test/test_pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_pdb.py -------------------------------------------------------------------------------- /Lib/test/test_pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_pkg.py -------------------------------------------------------------------------------- /Lib/test/test_pow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_pow.py -------------------------------------------------------------------------------- /Lib/test/test_pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_pty.py -------------------------------------------------------------------------------- /Lib/test/test_pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_pwd.py -------------------------------------------------------------------------------- /Lib/test/test_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_re.py -------------------------------------------------------------------------------- /Lib/test/test_sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_sax.py -------------------------------------------------------------------------------- /Lib/test/test_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_set.py -------------------------------------------------------------------------------- /Lib/test/test_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_ssl.py -------------------------------------------------------------------------------- /Lib/test/test_sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_sys.py -------------------------------------------------------------------------------- /Lib/test/test_tcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_tcl.py -------------------------------------------------------------------------------- /Lib/test/test_tix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_tix.py -------------------------------------------------------------------------------- /Lib/test/test_tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_tk.py -------------------------------------------------------------------------------- /Lib/test/test_ucn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_ucn.py -------------------------------------------------------------------------------- /Lib/test/test_uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/test_uu.py -------------------------------------------------------------------------------- /Lib/test/test_zoneinfo/__init__.py: -------------------------------------------------------------------------------- 1 | from .test_zoneinfo import * 2 | -------------------------------------------------------------------------------- /Lib/test/testtar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/testtar.tar -------------------------------------------------------------------------------- /Lib/test/typinganndata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/test/xmltestdata/c14n-20/out_inC14N6_c14nDefault.xml: -------------------------------------------------------------------------------- 1 | © -------------------------------------------------------------------------------- /Lib/test/xmltestdata/c14n-20/world.txt: -------------------------------------------------------------------------------- 1 | world -------------------------------------------------------------------------------- /Lib/test/xmltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/xmltests.py -------------------------------------------------------------------------------- /Lib/test/zipdir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/test/zipdir.zip -------------------------------------------------------------------------------- /Lib/textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/textwrap.py -------------------------------------------------------------------------------- /Lib/this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/this.py -------------------------------------------------------------------------------- /Lib/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/threading.py -------------------------------------------------------------------------------- /Lib/timeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/timeit.py -------------------------------------------------------------------------------- /Lib/tkinter/dnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/tkinter/dnd.py -------------------------------------------------------------------------------- /Lib/tkinter/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/tkinter/font.py -------------------------------------------------------------------------------- /Lib/tkinter/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/tkinter/test/test_tkinter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/tkinter/test/test_ttk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/tkinter/tix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/tkinter/tix.py -------------------------------------------------------------------------------- /Lib/tkinter/ttk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/tkinter/ttk.py -------------------------------------------------------------------------------- /Lib/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/token.py -------------------------------------------------------------------------------- /Lib/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/tokenize.py -------------------------------------------------------------------------------- /Lib/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/trace.py -------------------------------------------------------------------------------- /Lib/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/traceback.py -------------------------------------------------------------------------------- /Lib/tracemalloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/tracemalloc.py -------------------------------------------------------------------------------- /Lib/tty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/tty.py -------------------------------------------------------------------------------- /Lib/turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/turtle.py -------------------------------------------------------------------------------- /Lib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/types.py -------------------------------------------------------------------------------- /Lib/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/typing.py -------------------------------------------------------------------------------- /Lib/unittest/_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/unittest/_log.py -------------------------------------------------------------------------------- /Lib/unittest/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/unittest/case.py -------------------------------------------------------------------------------- /Lib/unittest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/unittest/main.py -------------------------------------------------------------------------------- /Lib/unittest/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/unittest/mock.py -------------------------------------------------------------------------------- /Lib/unittest/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/unittest/util.py -------------------------------------------------------------------------------- /Lib/urllib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/urllib/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/urllib/error.py -------------------------------------------------------------------------------- /Lib/urllib/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/urllib/parse.py -------------------------------------------------------------------------------- /Lib/uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/uu.py -------------------------------------------------------------------------------- /Lib/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/uuid.py -------------------------------------------------------------------------------- /Lib/venv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/venv/__init__.py -------------------------------------------------------------------------------- /Lib/venv/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/venv/__main__.py -------------------------------------------------------------------------------- /Lib/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/warnings.py -------------------------------------------------------------------------------- /Lib/wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/wave.py -------------------------------------------------------------------------------- /Lib/weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/weakref.py -------------------------------------------------------------------------------- /Lib/webbrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/webbrowser.py -------------------------------------------------------------------------------- /Lib/wsgiref/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/wsgiref/util.py -------------------------------------------------------------------------------- /Lib/xdrlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/xdrlib.py -------------------------------------------------------------------------------- /Lib/xml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/xml/__init__.py -------------------------------------------------------------------------------- /Lib/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /Lib/xmlrpc/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/xmlrpc/client.py -------------------------------------------------------------------------------- /Lib/xmlrpc/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/xmlrpc/server.py -------------------------------------------------------------------------------- /Lib/zipapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/zipapp.py -------------------------------------------------------------------------------- /Lib/zipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/zipfile.py -------------------------------------------------------------------------------- /Lib/zipimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Lib/zipimport.py -------------------------------------------------------------------------------- /Mac/IDLE/IDLE.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Mac/Icons/IDLE.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Mac/Icons/IDLE.icns -------------------------------------------------------------------------------- /Mac/Icons/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Mac/Icons/ReadMe.txt -------------------------------------------------------------------------------- /Mac/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Mac/Makefile.in -------------------------------------------------------------------------------- /Mac/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Mac/README.rst -------------------------------------------------------------------------------- /Mac/Resources/app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLPytX -------------------------------------------------------------------------------- /Mac/Tools/pythonw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Mac/Tools/pythonw.c -------------------------------------------------------------------------------- /Makefile.pre.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Makefile.pre.in -------------------------------------------------------------------------------- /Misc/ACKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Misc/ACKS -------------------------------------------------------------------------------- /Misc/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Misc/HISTORY -------------------------------------------------------------------------------- /Misc/Porting: -------------------------------------------------------------------------------- 1 | This document is moved to https://devguide.python.org/porting/ 2 | -------------------------------------------------------------------------------- /Misc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Misc/README -------------------------------------------------------------------------------- /Misc/README.AIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Misc/README.AIX -------------------------------------------------------------------------------- /Misc/README.coverity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Misc/README.coverity -------------------------------------------------------------------------------- /Misc/README.valgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Misc/README.valgrind -------------------------------------------------------------------------------- /Misc/gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Misc/gdbinit -------------------------------------------------------------------------------- /Misc/indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Misc/indent.pro -------------------------------------------------------------------------------- /Misc/python.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Misc/python.man -------------------------------------------------------------------------------- /Misc/python.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Misc/python.pc.in -------------------------------------------------------------------------------- /Misc/requirements-test.txt: -------------------------------------------------------------------------------- 1 | tzdata==2020.3 2 | -------------------------------------------------------------------------------- /Misc/stable_abi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Misc/stable_abi.txt -------------------------------------------------------------------------------- /Misc/svnmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Misc/svnmap.txt -------------------------------------------------------------------------------- /Misc/vgrindefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Misc/vgrindefs -------------------------------------------------------------------------------- /Modules/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/README -------------------------------------------------------------------------------- /Modules/Setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/Setup -------------------------------------------------------------------------------- /Modules/_abc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_abc.c -------------------------------------------------------------------------------- /Modules/_bz2module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_bz2module.c -------------------------------------------------------------------------------- /Modules/_csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_csv.c -------------------------------------------------------------------------------- /Modules/_dbmmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_dbmmodule.c -------------------------------------------------------------------------------- /Modules/_io/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_io/fileio.c -------------------------------------------------------------------------------- /Modules/_io/iobase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_io/iobase.c -------------------------------------------------------------------------------- /Modules/_io/textio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_io/textio.c -------------------------------------------------------------------------------- /Modules/_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_json.c -------------------------------------------------------------------------------- /Modules/_lsprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_lsprof.c -------------------------------------------------------------------------------- /Modules/_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_math.c -------------------------------------------------------------------------------- /Modules/_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_math.h -------------------------------------------------------------------------------- /Modules/_operator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_operator.c -------------------------------------------------------------------------------- /Modules/_pickle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_pickle.c -------------------------------------------------------------------------------- /Modules/_scproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_scproxy.c -------------------------------------------------------------------------------- /Modules/_sre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_sre.c -------------------------------------------------------------------------------- /Modules/_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_ssl.c -------------------------------------------------------------------------------- /Modules/_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_ssl.h -------------------------------------------------------------------------------- /Modules/_ssl/cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_ssl/cert.c -------------------------------------------------------------------------------- /Modules/_ssl/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_ssl/misc.c -------------------------------------------------------------------------------- /Modules/_ssl_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_ssl_data.h -------------------------------------------------------------------------------- /Modules/_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_stat.c -------------------------------------------------------------------------------- /Modules/_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_struct.c -------------------------------------------------------------------------------- /Modules/_tkinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_tkinter.c -------------------------------------------------------------------------------- /Modules/_weakref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_weakref.c -------------------------------------------------------------------------------- /Modules/_winapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_winapi.c -------------------------------------------------------------------------------- /Modules/_xxtestfuzz/fuzz_json_loads_corpus/empty_array.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /Modules/_xxtestfuzz/fuzz_json_loads_corpus/empty_object.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Modules/_xxtestfuzz/fuzz_json_loads_corpus/simple_array.json: -------------------------------------------------------------------------------- 1 | [1, 2, 3, "abcd", "xyz"] 2 | -------------------------------------------------------------------------------- /Modules/_xxtestfuzz/fuzz_sre_compile_corpus/anchor_links: -------------------------------------------------------------------------------- 1 | XX] 2 | -------------------------------------------------------------------------------- /Modules/_xxtestfuzz/fuzz_struct_unpack_corpus/hello_string: -------------------------------------------------------------------------------- 1 | 6sHello -------------------------------------------------------------------------------- /Modules/_zoneinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/_zoneinfo.c -------------------------------------------------------------------------------- /Modules/addrinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/addrinfo.h -------------------------------------------------------------------------------- /Modules/audioop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/audioop.c -------------------------------------------------------------------------------- /Modules/binascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/binascii.c -------------------------------------------------------------------------------- /Modules/config.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/config.c.in -------------------------------------------------------------------------------- /Modules/gcmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/gcmodule.c -------------------------------------------------------------------------------- /Modules/getpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/getpath.c -------------------------------------------------------------------------------- /Modules/grpmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/grpmodule.c -------------------------------------------------------------------------------- /Modules/hashlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/hashlib.h -------------------------------------------------------------------------------- /Modules/ld_so_aix.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/ld_so_aix.in -------------------------------------------------------------------------------- /Modules/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/main.c -------------------------------------------------------------------------------- /Modules/makesetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/makesetup -------------------------------------------------------------------------------- /Modules/makexp_aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/makexp_aix -------------------------------------------------------------------------------- /Modules/mathmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/mathmodule.c -------------------------------------------------------------------------------- /Modules/md5module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/md5module.c -------------------------------------------------------------------------------- /Modules/mmapmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/mmapmodule.c -------------------------------------------------------------------------------- /Modules/nismodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/nismodule.c -------------------------------------------------------------------------------- /Modules/opcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/opcode.c -------------------------------------------------------------------------------- /Modules/overlapped.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/overlapped.c -------------------------------------------------------------------------------- /Modules/pwdmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/pwdmodule.c -------------------------------------------------------------------------------- /Modules/pyexpat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/pyexpat.c -------------------------------------------------------------------------------- /Modules/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/readline.c -------------------------------------------------------------------------------- /Modules/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/resource.c -------------------------------------------------------------------------------- /Modules/sha1module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/sha1module.c -------------------------------------------------------------------------------- /Modules/spwdmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/spwdmodule.c -------------------------------------------------------------------------------- /Modules/sre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/sre.h -------------------------------------------------------------------------------- /Modules/sre_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/sre_lib.h -------------------------------------------------------------------------------- /Modules/termios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/termios.c -------------------------------------------------------------------------------- /Modules/timemodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/timemodule.c -------------------------------------------------------------------------------- /Modules/tkappinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/tkappinit.c -------------------------------------------------------------------------------- /Modules/tkinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/tkinter.h -------------------------------------------------------------------------------- /Modules/winreparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/winreparse.h -------------------------------------------------------------------------------- /Modules/xxlimited.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/xxlimited.c -------------------------------------------------------------------------------- /Modules/xxmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/xxmodule.c -------------------------------------------------------------------------------- /Modules/xxsubtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/xxsubtype.c -------------------------------------------------------------------------------- /Modules/zlibmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Modules/zlibmodule.c -------------------------------------------------------------------------------- /Objects/README: -------------------------------------------------------------------------------- 1 | Source files for various builtin objects 2 | -------------------------------------------------------------------------------- /Objects/abstract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/abstract.c -------------------------------------------------------------------------------- /Objects/accu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/accu.c -------------------------------------------------------------------------------- /Objects/boolobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/boolobject.c -------------------------------------------------------------------------------- /Objects/call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/call.c -------------------------------------------------------------------------------- /Objects/capsule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/capsule.c -------------------------------------------------------------------------------- /Objects/cellobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/cellobject.c -------------------------------------------------------------------------------- /Objects/codeobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/codeobject.c -------------------------------------------------------------------------------- /Objects/dictobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/dictobject.c -------------------------------------------------------------------------------- /Objects/enumobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/enumobject.c -------------------------------------------------------------------------------- /Objects/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/exceptions.c -------------------------------------------------------------------------------- /Objects/fileobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/fileobject.c -------------------------------------------------------------------------------- /Objects/funcobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/funcobject.c -------------------------------------------------------------------------------- /Objects/genobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/genobject.c -------------------------------------------------------------------------------- /Objects/iterobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/iterobject.c -------------------------------------------------------------------------------- /Objects/listobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/listobject.c -------------------------------------------------------------------------------- /Objects/listsort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/listsort.txt -------------------------------------------------------------------------------- /Objects/longobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/longobject.c -------------------------------------------------------------------------------- /Objects/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/object.c -------------------------------------------------------------------------------- /Objects/obmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/obmalloc.c -------------------------------------------------------------------------------- /Objects/setobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/setobject.c -------------------------------------------------------------------------------- /Objects/structseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/structseq.c -------------------------------------------------------------------------------- /Objects/typeobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/typeobject.c -------------------------------------------------------------------------------- /Objects/typeslots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Objects/typeslots.py -------------------------------------------------------------------------------- /PC/WinMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/WinMain.c -------------------------------------------------------------------------------- /PC/_msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/_msi.c -------------------------------------------------------------------------------- /PC/_testconsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/_testconsole.c -------------------------------------------------------------------------------- /PC/clinic/_msi.c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/clinic/_msi.c.h -------------------------------------------------------------------------------- /PC/clinic/winreg.c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/clinic/winreg.c.h -------------------------------------------------------------------------------- /PC/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/config.c -------------------------------------------------------------------------------- /PC/crtlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/crtlicense.txt -------------------------------------------------------------------------------- /PC/dl_nt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/dl_nt.c -------------------------------------------------------------------------------- /PC/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/empty.c -------------------------------------------------------------------------------- /PC/errmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/errmap.h -------------------------------------------------------------------------------- /PC/errmap.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/errmap.mak -------------------------------------------------------------------------------- /PC/frozen_dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/frozen_dllmain.c -------------------------------------------------------------------------------- /PC/getpathp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/getpathp.c -------------------------------------------------------------------------------- /PC/icons/idlex44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/idlex44.png -------------------------------------------------------------------------------- /PC/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/logo.svg -------------------------------------------------------------------------------- /PC/icons/py.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/py.icns -------------------------------------------------------------------------------- /PC/icons/py.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/py.ico -------------------------------------------------------------------------------- /PC/icons/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/py.png -------------------------------------------------------------------------------- /PC/icons/py.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/py.svg -------------------------------------------------------------------------------- /PC/icons/pyc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/pyc.icns -------------------------------------------------------------------------------- /PC/icons/pyc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/pyc.ico -------------------------------------------------------------------------------- /PC/icons/pyc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/pyc.svg -------------------------------------------------------------------------------- /PC/icons/pyd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/pyd.icns -------------------------------------------------------------------------------- /PC/icons/pyd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/pyd.ico -------------------------------------------------------------------------------- /PC/icons/pyd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/pyd.svg -------------------------------------------------------------------------------- /PC/icons/python.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/python.icns -------------------------------------------------------------------------------- /PC/icons/python.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/python.ico -------------------------------------------------------------------------------- /PC/icons/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/python.svg -------------------------------------------------------------------------------- /PC/icons/pythonw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/pythonw.ico -------------------------------------------------------------------------------- /PC/icons/pythonw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/pythonw.svg -------------------------------------------------------------------------------- /PC/icons/setup.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/setup.icns -------------------------------------------------------------------------------- /PC/icons/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/setup.ico -------------------------------------------------------------------------------- /PC/icons/setup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/icons/setup.svg -------------------------------------------------------------------------------- /PC/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/launcher.c -------------------------------------------------------------------------------- /PC/layout/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PC/layout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/layout/main.py -------------------------------------------------------------------------------- /PC/layout/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PC/msvcrtmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/msvcrtmodule.c -------------------------------------------------------------------------------- /PC/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/pyconfig.h -------------------------------------------------------------------------------- /PC/pylauncher.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/pylauncher.rc -------------------------------------------------------------------------------- /PC/pyshellext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/pyshellext.cpp -------------------------------------------------------------------------------- /PC/pyshellext.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/pyshellext.def -------------------------------------------------------------------------------- /PC/pyshellext.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/pyshellext.rc -------------------------------------------------------------------------------- /PC/python.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/python.manifest -------------------------------------------------------------------------------- /PC/python3dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/python3dll.c -------------------------------------------------------------------------------- /PC/python_exe.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/python_exe.rc -------------------------------------------------------------------------------- /PC/python_nt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/python_nt.rc -------------------------------------------------------------------------------- /PC/python_uwp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/python_uwp.cpp -------------------------------------------------------------------------------- /PC/python_ver_rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/python_ver_rc.h -------------------------------------------------------------------------------- /PC/pythonw_exe.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/pythonw_exe.rc -------------------------------------------------------------------------------- /PC/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/readme.txt -------------------------------------------------------------------------------- /PC/sqlite3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/sqlite3.rc -------------------------------------------------------------------------------- /PC/store_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/store_info.txt -------------------------------------------------------------------------------- /PC/testpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/testpy.py -------------------------------------------------------------------------------- /PC/winreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/winreg.c -------------------------------------------------------------------------------- /PC/winsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PC/winsound.c -------------------------------------------------------------------------------- /PCbuild/_bz2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/_bz2.vcxproj -------------------------------------------------------------------------------- /PCbuild/_msi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/_msi.vcxproj -------------------------------------------------------------------------------- /PCbuild/_ssl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/_ssl.vcxproj -------------------------------------------------------------------------------- /PCbuild/blurb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/blurb.bat -------------------------------------------------------------------------------- /PCbuild/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/build.bat -------------------------------------------------------------------------------- /PCbuild/build_env.bat: -------------------------------------------------------------------------------- 1 | @%comspec% /k env.bat %* 2 | -------------------------------------------------------------------------------- /PCbuild/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/clean.bat -------------------------------------------------------------------------------- /PCbuild/env.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/env.bat -------------------------------------------------------------------------------- /PCbuild/env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/env.ps1 -------------------------------------------------------------------------------- /PCbuild/field3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/field3.py -------------------------------------------------------------------------------- /PCbuild/idle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/idle.bat -------------------------------------------------------------------------------- /PCbuild/lib.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/lib.pyproj -------------------------------------------------------------------------------- /PCbuild/libffi.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/libffi.props -------------------------------------------------------------------------------- /PCbuild/pcbuild.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/pcbuild.proj -------------------------------------------------------------------------------- /PCbuild/pcbuild.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/pcbuild.sln -------------------------------------------------------------------------------- /PCbuild/python.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/python.props -------------------------------------------------------------------------------- /PCbuild/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/readme.txt -------------------------------------------------------------------------------- /PCbuild/rmpyc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/rmpyc.py -------------------------------------------------------------------------------- /PCbuild/rt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/rt.bat -------------------------------------------------------------------------------- /PCbuild/tcl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/tcl.vcxproj -------------------------------------------------------------------------------- /PCbuild/tcltk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/tcltk.props -------------------------------------------------------------------------------- /PCbuild/tix.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/tix.vcxproj -------------------------------------------------------------------------------- /PCbuild/tk.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/PCbuild/tk.vcxproj -------------------------------------------------------------------------------- /Parser/Python.asdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Parser/Python.asdl -------------------------------------------------------------------------------- /Parser/asdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Parser/asdl.py -------------------------------------------------------------------------------- /Parser/asdl_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Parser/asdl_c.py -------------------------------------------------------------------------------- /Parser/myreadline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Parser/myreadline.c -------------------------------------------------------------------------------- /Parser/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Parser/parser.c -------------------------------------------------------------------------------- /Parser/peg_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Parser/peg_api.c -------------------------------------------------------------------------------- /Parser/pegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Parser/pegen.c -------------------------------------------------------------------------------- /Parser/pegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Parser/pegen.h -------------------------------------------------------------------------------- /Parser/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Parser/token.c -------------------------------------------------------------------------------- /Parser/tokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Parser/tokenizer.c -------------------------------------------------------------------------------- /Parser/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Parser/tokenizer.h -------------------------------------------------------------------------------- /Programs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Programs/README -------------------------------------------------------------------------------- /Programs/python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Programs/python.c -------------------------------------------------------------------------------- /Python/Python-ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/Python-ast.c -------------------------------------------------------------------------------- /Python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/README -------------------------------------------------------------------------------- /Python/_warnings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/_warnings.c -------------------------------------------------------------------------------- /Python/asdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/asdl.c -------------------------------------------------------------------------------- /Python/ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/ast.c -------------------------------------------------------------------------------- /Python/ast_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/ast_opt.c -------------------------------------------------------------------------------- /Python/ast_unparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/ast_unparse.c -------------------------------------------------------------------------------- /Python/bltinmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/bltinmodule.c -------------------------------------------------------------------------------- /Python/ceval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/ceval.c -------------------------------------------------------------------------------- /Python/ceval_gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/ceval_gil.h -------------------------------------------------------------------------------- /Python/codecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/codecs.c -------------------------------------------------------------------------------- /Python/compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/compile.c -------------------------------------------------------------------------------- /Python/condvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/condvar.h -------------------------------------------------------------------------------- /Python/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/context.c -------------------------------------------------------------------------------- /Python/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/dtoa.c -------------------------------------------------------------------------------- /Python/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/dup2.c -------------------------------------------------------------------------------- /Python/dynload_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/dynload_win.c -------------------------------------------------------------------------------- /Python/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/errors.c -------------------------------------------------------------------------------- /Python/fileutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/fileutils.c -------------------------------------------------------------------------------- /Python/frozen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/frozen.c -------------------------------------------------------------------------------- /Python/frozenmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/frozenmain.c -------------------------------------------------------------------------------- /Python/future.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/future.c -------------------------------------------------------------------------------- /Python/getargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/getargs.c -------------------------------------------------------------------------------- /Python/getcompiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/getcompiler.c -------------------------------------------------------------------------------- /Python/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/getopt.c -------------------------------------------------------------------------------- /Python/getplatform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/getplatform.c -------------------------------------------------------------------------------- /Python/getversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/getversion.c -------------------------------------------------------------------------------- /Python/hamt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/hamt.c -------------------------------------------------------------------------------- /Python/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/hashtable.c -------------------------------------------------------------------------------- /Python/import.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/import.c -------------------------------------------------------------------------------- /Python/importdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/importdl.c -------------------------------------------------------------------------------- /Python/importdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/importdl.h -------------------------------------------------------------------------------- /Python/importlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/importlib.h -------------------------------------------------------------------------------- /Python/initconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/initconfig.c -------------------------------------------------------------------------------- /Python/marshal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/marshal.c -------------------------------------------------------------------------------- /Python/modsupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/modsupport.c -------------------------------------------------------------------------------- /Python/mysnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/mysnprintf.c -------------------------------------------------------------------------------- /Python/mystrtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/mystrtoul.c -------------------------------------------------------------------------------- /Python/pathconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/pathconfig.c -------------------------------------------------------------------------------- /Python/preconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/preconfig.c -------------------------------------------------------------------------------- /Python/pyarena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/pyarena.c -------------------------------------------------------------------------------- /Python/pyctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/pyctype.c -------------------------------------------------------------------------------- /Python/pyfpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/pyfpe.c -------------------------------------------------------------------------------- /Python/pyhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/pyhash.c -------------------------------------------------------------------------------- /Python/pylifecycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/pylifecycle.c -------------------------------------------------------------------------------- /Python/pymath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/pymath.c -------------------------------------------------------------------------------- /Python/pystate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/pystate.c -------------------------------------------------------------------------------- /Python/pystrcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/pystrcmp.c -------------------------------------------------------------------------------- /Python/pystrhex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/pystrhex.c -------------------------------------------------------------------------------- /Python/pystrtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/pystrtod.c -------------------------------------------------------------------------------- /Python/pythonrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/pythonrun.c -------------------------------------------------------------------------------- /Python/pytime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/pytime.c -------------------------------------------------------------------------------- /Python/suggestions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/suggestions.c -------------------------------------------------------------------------------- /Python/symtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/symtable.c -------------------------------------------------------------------------------- /Python/sysmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/sysmodule.c -------------------------------------------------------------------------------- /Python/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/thread.c -------------------------------------------------------------------------------- /Python/thread_nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/thread_nt.h -------------------------------------------------------------------------------- /Python/traceback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Python/traceback.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/README.rst -------------------------------------------------------------------------------- /Tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/README -------------------------------------------------------------------------------- /Tools/c-analyzer/c_common/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | NOT_SET = object() 3 | -------------------------------------------------------------------------------- /Tools/c-analyzer/c_common/info.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/c-analyzer/c_common/show.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/clinic/cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/clinic/cpp.py -------------------------------------------------------------------------------- /Tools/demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/demo/README -------------------------------------------------------------------------------- /Tools/demo/beer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/demo/beer.py -------------------------------------------------------------------------------- /Tools/demo/eiffel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/demo/eiffel.py -------------------------------------------------------------------------------- /Tools/demo/hanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/demo/hanoi.py -------------------------------------------------------------------------------- /Tools/demo/life.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/demo/life.py -------------------------------------------------------------------------------- /Tools/demo/markov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/demo/markov.py -------------------------------------------------------------------------------- /Tools/demo/mcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/demo/mcast.py -------------------------------------------------------------------------------- /Tools/demo/queens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/demo/queens.py -------------------------------------------------------------------------------- /Tools/demo/redemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/demo/redemo.py -------------------------------------------------------------------------------- /Tools/demo/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/demo/vector.py -------------------------------------------------------------------------------- /Tools/freeze/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/freeze/README -------------------------------------------------------------------------------- /Tools/freeze/flag.py: -------------------------------------------------------------------------------- 1 | initialized = True 2 | print("Hello world!") 3 | -------------------------------------------------------------------------------- /Tools/freeze/hello.py: -------------------------------------------------------------------------------- 1 | print('Hello world...') 2 | -------------------------------------------------------------------------------- /Tools/freeze/test/ok.py: -------------------------------------------------------------------------------- 1 | import sys 2 | sys.exit(0) 3 | -------------------------------------------------------------------------------- /Tools/i18n/msgfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/i18n/msgfmt.py -------------------------------------------------------------------------------- /Tools/msi/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/msi/README.txt -------------------------------------------------------------------------------- /Tools/msi/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/msi/build.bat -------------------------------------------------------------------------------- /Tools/msi/bundle/bootstrap/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /Tools/msi/common.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/msi/common.wxs -------------------------------------------------------------------------------- /Tools/msi/msi.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/msi/msi.props -------------------------------------------------------------------------------- /Tools/msi/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/msi/purge.py -------------------------------------------------------------------------------- /Tools/msi/wix.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/msi/wix.props -------------------------------------------------------------------------------- /Tools/peg_generator/.gitignore: -------------------------------------------------------------------------------- 1 | peg_extension/parse.c 2 | data/xxl.py 3 | venv/ 4 | @data 5 | -------------------------------------------------------------------------------- /Tools/peg_generator/peg_extension/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/peg_generator/pegen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/peg_generator/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | # This exists to let mypy find modules here 2 | -------------------------------------------------------------------------------- /Tools/pynche/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/pynche/Main.py -------------------------------------------------------------------------------- /Tools/pynche/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/pynche/README -------------------------------------------------------------------------------- /Tools/pynche/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /Tools/pynche/pynche: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/pynche/pynche -------------------------------------------------------------------------------- /Tools/scripts/2to3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/scripts/2to3 -------------------------------------------------------------------------------- /Tools/scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/scripts/README -------------------------------------------------------------------------------- /Tools/scripts/idle3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/scripts/idle3 -------------------------------------------------------------------------------- /Tools/scripts/lll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/scripts/lll.py -------------------------------------------------------------------------------- /Tools/scripts/pydoc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/scripts/pydoc3 -------------------------------------------------------------------------------- /Tools/test2to3/test2to3/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /Tools/tz/zdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/Tools/tz/zdump.py -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/configure.ac -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/install-sh -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/netlify.toml -------------------------------------------------------------------------------- /pyconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/pyconfig.h.in -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zq1997/RegCPython/HEAD/setup.py --------------------------------------------------------------------------------