From: Serhiy Storchaka Date: Tue, 27 Dec 2016 10:17:41 +0000 (+0200) Subject: Issue #23903: Added missed names to PC/python3.def. X-Git-Tag: v3.7.0a1~1679 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fd54a74539c9fb813d1fc3cdc206e35338525baf;p=python Issue #23903: Added missed names to PC/python3.def. --- fd54a74539c9fb813d1fc3cdc206e35338525baf diff --cc Misc/NEWS index 84a6c4e6b7,1a6af49c5a..f731659a97 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -2,678 -2,6 +2,680 @@@ Python News +++++++++++ +What's New in Python 3.7.0 alpha 1? +=================================== + +*Release date: XXXX-XX-XX* + +Core and Builtins +----------------- + +- Issue #29049: Call _PyObject_GC_TRACK() lazily when calling Python function. + Calling function is up to 5% faster. + +- Issue #28927: bytes.fromhex() and bytearray.fromhex() now ignore all ASCII + whitespace, not only spaces. Patch by Robert Xiao. + +- Issue #28932: Do not include if it does not exist. + +- Issue #25677: Correct the positioning of the syntax error caret for + indented blocks. Based on patch by Michael Layzell. + +- Issue #29000: Fixed bytes formatting of octals with zero padding in alternate + form. + +- Issue #18896: Python function can now have more than 255 parameters. + collections.namedtuple() now supports tuples with more than 255 elements. + +- Issue #28596: The preferred encoding is UTF-8 on Android. Patch written by + Chi Hsuan Yen. + +- Issue #26919: On Android, operating system data is now always encoded/decoded + to/from UTF-8, instead of the locale encoding to avoid inconsistencies with + os.fsencode() and os.fsdecode() which are already using UTF-8. + +- Issue #28991: functools.lru_cache() was susceptible to an obscure reentrancy + bug triggerable by a monkey-patched len() function. + +- Issue #28147: Fix a memory leak in split-table dictionaries: setattr() + must not convert combined table into split table. Patch written by INADA + Naoki. + +- Issue #28739: f-string expressions are no longer accepted as docstrings and + by ast.literal_eval() even if they do not include expressions. + +- Issue #28512: Fixed setting the offset attribute of SyntaxError by + PyErr_SyntaxLocationEx() and PyErr_SyntaxLocationObject(). + +- Issue #28918: Fix the cross compilation of xxlimited when Python has been + built with Py_DEBUG defined. + +- Issue #23722: Rather than silently producing a class that doesn't support + zero-argument ``super()`` in methods, failing to pass the new + ``__classcell__`` namespace entry up to ``type.__new__`` now results in a + ``DeprecationWarning`` and a class that supports zero-argument ``super()``. + +- Issue #28797: Modifying the class __dict__ inside the __set_name__ method of + a descriptor that is used inside that class no longer prevents calling the + __set_name__ method of other descriptors. + +- Issue #28799: Remove the ``PyEval_GetCallStats()`` function and deprecate + the untested and undocumented ``sys.callstats()`` function. Remove the + ``CALL_PROFILE`` special build: use the :func:`sys.setprofile` function, + :mod:`cProfile` or :mod:`profile` to profile function calls. + +- Issue #12844: More than 255 arguments can now be passed to a function. + +- Issue #28782: Fix a bug in the implementation ``yield from`` when checking + if the next instruction is YIELD_FROM. Regression introduced by WORDCODE + (issue #26647). + +- Issue #28774: Fix error position of the unicode error in ASCII and Latin1 + encoders when a string returned by the error handler contains multiple + non-encodable characters (non-ASCII for the ASCII codec, characters out + of the U+0000-U+00FF range for Latin1). + +- Issue #28731: Optimize _PyDict_NewPresized() to create correct size dict. + Improve speed of dict literal with constant keys up to 30%. + +- Issue #28532: Show sys.version when -V option is supplied twice. + +- Issue #27100: The with-statement now checks for __enter__ before it + checks for __exit__. This gives less confusing error messages when + both methods are missing. Patch by Jonathan Ellington. + +- Issue #28746: Fix the set_inheritable() file descriptor method on platforms + that do not have the ioctl FIOCLEX and FIONCLEX commands. + +- Issue #26920: Fix not getting the locale's charset upon initializing the + interpreter, on platforms that do not have langinfo. + +- Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X + when decode astral characters. Patch by Xiang Zhang. + +- Issue #28665: Improve speed of the STORE_DEREF opcode by 40%. + +- Issue #19398: Extra slash no longer added to sys.path components in case of + empty compile-time PYTHONPATH components. + +- Issue #28621: Sped up converting int to float by reusing faster bits counting + implementation. Patch by Adrian Wielgosik. + +- Issue #28580: Optimize iterating split table values. + Patch by Xiang Zhang. + +- Issue #28583: PyDict_SetDefault didn't combine split table when needed. + Patch by Xiang Zhang. + +- Issue #28128: Deprecation warning for invalid str and byte escape + sequences now prints better information about where the error + occurs. Patch by Serhiy Storchaka and Eric Smith. + +- Issue #28509: dict.update() no longer allocate unnecessary large memory. + +- Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug + build. + +- Issue #28517: Fixed of-by-one error in the peephole optimizer that caused + keeping unreachable code. + +- Issue #28214: Improved exception reporting for problematic __set_name__ + attributes. + +- Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception + loss in PyTraceBack_Here(). + +- Issue #28183: Optimize and cleanup dict iteration. + +- Issue #26081: Added C implementation of asyncio.Future. + Original patch by Yury Selivanov. + +- Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters(). + Patch by Xiang Zhang. + +- Issue #28376: The type of long range iterator is now registered as Iterator. + Patch by Oren Milman. + +- Issue #28376: Creating instances of range_iterator by calling range_iterator + type now is disallowed. Calling iter() on range instance is the only way. + Patch by Oren Milman. + +- Issue #26906: Resolving special methods of uninitialized type now causes + implicit initialization of the type instead of a fail. + +- Issue #18287: PyType_Ready() now checks that tp_name is not NULL. + Original patch by Niklas Koep. + +- Issue #24098: Fixed possible crash when AST is changed in process of + compiling it. + +- Issue #28201: Dict reduces possibility of 2nd conflict in hash table when + hashes have same lower bits. + +- Issue #28350: String constants with null character no longer interned. + +- Issue #26617: Fix crash when GC runs during weakref callbacks. + +- Issue #27942: String constants now interned recursively in tuples and frozensets. + +- Issue #28289: ImportError.__init__ now resets not specified attributes. + +- Issue #21578: Fixed misleading error message when ImportError called with + invalid keyword args. + +- Issue #28203: Fix incorrect type in complex(1.0, {2:3}) error message. + Patch by Soumya Sharma. + +- Issue #28086: Single var-positional argument of tuple subtype was passed + unscathed to the C-defined function. Now it is converted to exact tuple. + +- Issue #28214: Now __set_name__ is looked up on the class instead of the + instance. + +- Issue #27955: Fallback on reading /dev/urandom device when the getrandom() + syscall fails with EPERM, for example when blocked by SECCOMP. + +- Issue #28192: Don't import readline in isolated mode. + +- Issue #27441: Remove some redundant assignments to ob_size in longobject.c. + Thanks Oren Milman. + +- Issue #27222: Clean up redundant code in long_rshift function. Thanks + Oren Milman. + +- Upgrade internal unicode databases to Unicode version 9.0.0. + +- Issue #28131: Fix a regression in zipimport's compile_source(). zipimport + should use the same optimization level as the interpreter. + +- Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly + optimize memcpy(). + +- Issue #28120: Fix dict.pop() for splitted dictionary when trying to remove a + "pending key" (Not yet inserted in split-table). Patch by Xiang Zhang. + +- Issue #26182: Raise DeprecationWarning when async and await keywords are + used as variable/attribute/class/function name. + +- Issue #26182: Fix a refleak in code that raises DeprecationWarning. + +- Issue #28721: Fix asynchronous generators aclose() and athrow() to + handle StopAsyncIteration propagation properly. + +- Issue #26110: Speed-up method calls: add LOAD_METHOD and CALL_METHOD + opcodes. + +Library +------- + +- Issue 28923: Remove editor artifacts from Tix.py. + +- Issue #28871: Fixed a crash when deallocate deep ElementTree. + +- Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and + WeakValueDictionary.pop() when a GC collection happens in another + thread. + +- Issue #20191: Fixed a crash in resource.prlimit() when pass a sequence that + doesn't own its elements as limits. + +- Issue #16255: subprocess.Popen uses /system/bin/sh on Android as the shell, + instead of /bin/sh. + +- Issue #28779: multiprocessing.set_forkserver_preload() would crash the + forkserver process if a preloaded module instantiated some + multiprocessing objects such as locks. + +- Issue #26937: The chown() method of the tarfile.TarFile class does not fail + now when the grp module cannot be imported, as for example on Android + platforms. + +- Issue #28847: dbm.dumb now supports reading read-only files and no longer + writes the index file when it is not changed. A deprecation warning is now + emitted if the index file is missed and recreated in the 'r' and 'w' modes + (will be an error in future Python releases). + +- Issue #27030: Unknown escapes consisting of ``'\'`` and an ASCII letter in + re.sub() replacement templates regular expressions now are errors. + +- Issue #28835: Fix a regression introduced in warnings.catch_warnings(): + call warnings.showwarning() if it was overriden inside the context manager. + +- Issue #27172: To assist with upgrades from 2.7, the previously documented + deprecation of ``inspect.getfullargspec()`` has been reversed. This decision + may be revisited again after the Python 2.7 branch is no longer officially + supported. + +- Issue #28740: Add sys.getandroidapilevel(): return the build time API version + of Android as an integer. Function only available on Android. + +- Issue #26273: Add new :data:`socket.TCP_CONGESTION` (Linux 2.6.13) and + :data:`socket.TCP_USER_TIMEOUT` (Linux 2.6.37) constants. Patch written by + Omar Sandoval. + +- Issue #28752: Restored the __reduce__() methods of datetime objects. + +- Issue #28727: Regular expression patterns, _sre.SRE_Pattern objects created + by re.compile(), become comparable (only x==y and x!=y operators). This + change should fix the issue #18383: don't duplicate warning filters when the + warnings module is reloaded (thing usually only done in unit tests). + +- Issue #20572: Remove the subprocess.Popen.wait endtime parameter. It was + deprecated in 3.4 and undocumented prior to that. + +- Issue #25659: In ctypes, prevent a crash calling the from_buffer() and + from_buffer_copy() methods on abstract classes like Array. + +- Issue #28548: In the "http.server" module, parse the protocol version if + possible, to avoid using HTTP 0.9 in some error responses. + +- Issue #19717: Makes Path.resolve() succeed on paths that do not exist. + Patch by Vajrasky Kok + +- Issue #28563: Fixed possible DoS and arbitrary code execution when handle + plural form selections in the gettext module. The expression parser now + supports exact syntax supported by GNU gettext. + +- Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when + the garbage collector is invoked in other thread. Based on patch by + Sebastian Cufre. + +- Issue #27517: LZMA compressor and decompressor no longer raise exceptions if + given empty data twice. Patch by Benjamin Fogle. + +- Issue #28549: Fixed segfault in curses's addch() with ncurses6. + +- Issue #28449: tarfile.open() with mode "r" or "r:" now tries to open a tar + file with compression before trying to open it without compression. Otherwise + it had 50% chance failed with ignore_zeros=True. + +- Issue #23262: The webbrowser module now supports Firefox 36+ and derived + browsers. Based on patch by Oleg Broytman. + +- Issue #27939: Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale caused + by representing the scale as float value internally in Tk. tkinter.IntVar + now works if float value is set to underlying Tk variable. + +- Issue #28255: calendar.TextCalendar.prweek() no longer prints a space after + a weeks's calendar. calendar.TextCalendar.pryear() no longer prints redundant + newline after a year's calendar. Based on patch by Xiang Zhang. + +- Issue #28255: calendar.TextCalendar.prmonth() no longer prints a space + at the start of new line after printing a month's calendar. Patch by + Xiang Zhang. + +- Issue #20491: The textwrap.TextWrapper class now honors non-breaking spaces. + Based on patch by Kaarle Ritvanen. + +- Issue #28353: os.fwalk() no longer fails on broken links. + +- Issue #28430: Fix iterator of C implemented asyncio.Future doesn't accept + non-None value is passed to it.send(val). + +- Issue #27025: Generated names for Tkinter widgets now start by the "!" prefix + for readability (was "`"). + +- Issue #25464: Fixed HList.header_exists() in tkinter.tix module by addin + a workaround to Tix library bug. + +- Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive. + +- Issue #25953: re.sub() now raises an error for invalid numerical group + reference in replacement template even if the pattern is not found in + the string. Error message for invalid group reference now includes the + group index and the position of the reference. + Based on patch by SilentGhost. + +- Issue #28469: timeit now uses the sequence 1, 2, 5, 10, 20, 50,... instead + of 1, 10, 100,... for autoranging. + +- Issue #28115: Command-line interface of the zipfile module now uses argparse. + Added support of long options. + +- Issue #18219: Optimize csv.DictWriter for large number of columns. + Patch by Mariatta Wijaya. + +- Issue #28448: Fix C implemented asyncio.Future didn't work on Windows. + +- Issue #23214: In the "io" module, the argument to BufferedReader and + BytesIO's read1() methods is now optional and can be -1, matching the + BufferedIOBase specification. + +- Issue #28480: Fix error building socket module when multithreading is + disabled. + +- Issue #28240: timeit: remove ``-c/--clock`` and ``-t/--time`` command line + options which were deprecated since Python 3.3. + +- Issue #28240: timeit now repeats the benchmarks 5 times instead of only 3 + to make benchmarks more reliable. + +- Issue #28240: timeit autorange now uses a single loop iteration if the + benchmark takes less than 10 seconds, instead of 10 iterations. + "python3 -m timeit -s 'import time' 'time.sleep(1)'" now takes 4 seconds + instead of 40 seconds. + +- Distutils.sdist now looks for README and setup.py files with case + sensitivity. This behavior matches that found in Setuptools 6.0 and + later. See `setuptools 100 + `_ for rationale. + +- Issue #24452: Make webbrowser support Chrome on Mac OS X. Patch by + Ned Batchelder. + +- Issue #20766: Fix references leaked by pdb in the handling of SIGINT + handlers. + +- Issue #27998: Fixed bytes path support in os.scandir() on Windows. + Patch by Eryk Sun. + +- Issue #28317: The disassembler now decodes FORMAT_VALUE argument. + +- Issue #26293: Fixed writing ZIP files that starts not from the start of the + file. Offsets in ZIP file now are relative to the start of the archive in + conforming to the specification. + +- Issue #28380: unittest.mock Mock autospec functions now properly support + assert_called, assert_not_called, and assert_called_once. + +- Issue #28229: lzma module now supports pathlib. + +- Issue #28321: Fixed writing non-BMP characters with binary format in plistlib. + +- Issue #28225: bz2 module now supports pathlib. Initial patch by Ethan Furman. + +- Issue #28227: gzip now supports pathlib. Patch by Ethan Furman. + +- Issue #28332: Deprecated silent truncations in socket.htons and socket.ntohs. + Original patch by Oren Milman. + +- Issue #27358: Optimized merging var-keyword arguments and improved error + message when pass a non-mapping as a var-keyword argument. + +- Issue #28257: Improved error message when pass a non-iterable as + a var-positional argument. Added opcode BUILD_TUPLE_UNPACK_WITH_CALL. + +- Issue #28322: Fixed possible crashes when unpickle itertools objects from + incorrect pickle data. Based on patch by John Leitch. + +- Issue #28228: imghdr now supports pathlib. + +- Issue #28226: compileall now supports pathlib. + +- Issue #28314: Fix function declaration (C flags) for the getiterator() method + of xml.etree.ElementTree.Element. + +- Issue #28148: Stop using localtime() and gmtime() in the time + module. + + Introduced platform independent _PyTime_localtime API that is + similar to POSIX localtime_r, but available on all platforms. Patch + by Ed Schouten. + +- Issue #28253: Fixed calendar functions for extreme months: 0001-01 + and 9999-12. + + Methods itermonthdays() and itermonthdays2() are reimplemented so + that they don't call itermonthdates() which can cause datetime.date + under/overflow. + +- Issue #28275: Fixed possible use after free in the decompress() + methods of the LZMADecompressor and BZ2Decompressor classes. + Original patch by John Leitch. + +- Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() + if pass invalid string-like object as a name. Patch by Xiang Zhang. + +- Issue #18844: random.choices() now has k as a keyword-only argument + to improve the readability of common cases and come into line + with the signature used in other languages. + +- Issue #18893: Fix invalid exception handling in Lib/ctypes/macholib/dyld.py. + Patch by Madison May. + +- Issue #27611: Fixed support of default root window in the tkinter.tix module. + Added the master parameter in the DisplayStyle constructor. + +- Issue #27348: In the traceback module, restore the formatting of exception + messages like "Exception: None". This fixes a regression introduced in + 3.5a2. + +- Issue #25651: Allow falsy values to be used for msg parameter of subTest(). + +- Issue #27778: Fix a memory leak in os.getrandom() when the getrandom() is + interrupted by a signal and a signal handler raises a Python exception. + +- Issue #28200: Fix memory leak on Windows in the os module (fix + path_converter() function). + +- Issue #25400: RobotFileParser now correctly returns default values for + crawl_delay and request_rate. Initial patch by Peter Wirtz. + +- Issue #27932: Prevent memory leak in win32_ver(). + +- Fix UnboundLocalError in socket._sendfile_use_sendfile. + +- Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of + os.stat(). Patch by Eryk Sun. + +- Issue #22493: Warning message emitted by using inline flags in the middle of + regular expression now contains a (truncated) regex pattern. + Patch by Tim Graham. + +- Issue #25270: Prevent codecs.escape_encode() from raising SystemError when + an empty bytestring is passed. + +- Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam. + +- Issue #25895: Enable WebSocket URL schemes in urllib.parse.urljoin. + Patch by Gergely Imreh and Markus Holtermann. + +- Issue #28114: Fix a crash in parse_envlist() when env contains byte strings. + Patch by Eryk Sun. + +- Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). + +- Issue #27906: Fix socket accept exhaustion during high TCP traffic. + Patch by Kevin Conway. + +- Issue #28174: Handle when SO_REUSEPORT isn't properly supported. + Patch by Seth Michael Larson. + +- Issue #26654: Inspect functools.partial in asyncio.Handle.__repr__. + Patch by iceboy. + +- Issue #26909: Fix slow pipes IO in asyncio. + Patch by INADA Naoki. + +- Issue #28176: Fix callbacks race in asyncio.SelectorLoop.sock_connect. + +- Issue #27759: Fix selectors incorrectly retain invalid file descriptors. + Patch by Mark Williams. + +- Issue #28325: Remove vestigial MacOS 9 macurl2path module and its tests. + +- Issue #28368: Refuse monitoring processes if the child watcher has + no loop attached. + Patch by Vincent Michel. + +- Issue #28369: Raise RuntimeError when transport's FD is used with + add_reader, add_writer, etc. + +- Issue #28370: Speedup asyncio.StreamReader.readexactly. + Patch by Коренберг Марк. + +- Issue #28371: Deprecate passing asyncio.Handles to run_in_executor. + +- Issue #28372: Fix asyncio to support formatting of non-python coroutines. + +- Issue #28399: Remove UNIX socket from FS before binding. + Patch by Коренберг Марк. + +- Issue #27972: Prohibit Tasks to await on themselves. + +- Issue #24142: Reading a corrupt config file left configparser in an + invalid state. Original patch by Florian Höch. + +Windows +------- + +- Issue #25778: winreg does not truncate string correctly (Patch by Eryk Sun) + +- Issue #28896: Deprecate WindowsRegistryFinder and disable it by default + +- Issue #28522: Fixes mishandled buffer reallocation in getpathp.c + +- Issue #28402: Adds signed catalog files for stdlib on Windows. + +- Issue #28333: Enables Unicode for ps1/ps2 and input() prompts. (Patch by + Eryk Sun) + +- Issue #28251: Improvements to help manuals on Windows. + +- Issue #28110: launcher.msi has different product codes between 32-bit and + 64-bit + +- Issue #28161: Opening CON for write access fails + +- Issue #28162: WindowsConsoleIO readall() fails if first line starts with + Ctrl+Z + +- Issue #28163: WindowsConsoleIO fileno() passes wrong flags to + _open_osfhandle + +- Issue #28164: _PyIO_get_console_type fails for various paths + +- Issue #28137: Renames Windows path file to ._pth + +- Issue #28138: Windows ._pth file should allow import site + +C API +----- + +- Issue #28822: The indices parameters *start* and *end* of PyUnicode_FindChar() + are now adjusted to behave like ``str[start:end]``. + +- Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions. + +- Issue #28761: The fields name and doc of structures PyMemberDef, PyGetSetDef, + PyStructSequence_Field, PyStructSequence_Desc, and wrapperbase are now of + type ``const char *`` rather of ``char *``. + +- Issue #28748: Private variable _Py_PackageContext is now of type ``const char *`` + rather of ``char *``. + +- Issue #19569: Compiler warnings are now emitted if use most of deprecated + functions. + +- Issue #28426: Deprecated undocumented functions PyUnicode_AsEncodedObject(), + PyUnicode_AsDecodedObject(), PyUnicode_AsDecodedUnicode() and + PyUnicode_AsEncodedUnicode(). + +Documentation +------------- + +- Issue #23722: The data model reference and the porting section in the + 3.6 What's New guide now cover the additional ``__classcell__`` handling + needed for custom metaclasses to fully support PEP 487 and zero-argument + ``super()``. + +- Issue #28513: Documented command-line interface of zipfile. + +Build +----- + ++- Issue #23903: Added missed names to PC/python3.def. ++ +- Issue #28762: lockf() is available on Android API level 24, but the F_LOCK + macro is not defined in android-ndk-r13. + +- Issue #28538: Fix the compilation error that occurs because if_nameindex() is + available on Android API level 24, but the if_nameindex structure is not + defined. + +- Issue #20211: Do not add the directory for installing C header files and the + directory for installing object code libraries to the cross compilation + search paths. Original patch by Thomas Petazzoni. + +- Issue #28849: Do not define sys.implementation._multiarch on Android. + +- Issue #10656: Fix out-of-tree building on AIX. Patch by Tristan Carel and + Michael Haubenwallner. + +- Issue #26359: Rename --with-optimiations to --enable-optimizations. + +- Issue #28444: Fix missing extensions modules when cross compiling. + +- Issue #28208: Update Windows build and OS X installers to use SQLite 3.14.2. + +- Issue #28248: Update Windows build and OS X installers to use OpenSSL 1.0.2j. + +- Issue #21124: Fix building the _struct module on Cygwin by passing ``NULL`` + instead of ``&PyType_Type`` to PyVarObject_HEAD_INIT. Patch by Masayuki + Yamamoto. + +- Issue #13756: Fix building extensions modules on Cygwin. Patch by Roumen + Petrov, based on original patch by Jason Tishler. + +- Issue #21085: Add configure check for siginfo_t.si_band, which Cygwin does + not provide. Patch by Masayuki Yamamoto with review and rebase by Erik Bray. + +- Issue #28258: Fixed build with Estonian locale (python-config and distclean + targets in Makefile). Patch by Arfrever Frehtes Taifersar Arahesis. + +- Issue #26661: setup.py now detects system libffi with multiarch wrapper. + +- Issue #27979: A full copy of libffi is no longer bundled for use when + building _ctypes on non-OSX UNIX platforms. An installed copy of libffi is + now required when building _ctypes on such platforms. + +- Issue #15819: Remove redundant include search directory option for building + outside the source tree. + +- Issue #28676: Prevent missing 'getentropy' declaration warning on macOS. + Patch by Gareth Rees. + +Tools/Demos +----------- + +- Issue #28023: Fix python-gdb.py didn't support new dict implementation. + +- Issue #15369: The pybench and pystone microbenchmark have been removed from + Tools. Please use the new Python benchmark suite + https://github.com/python/performance which is more reliable and includes a + portable version of pybench working on Python 2 and Python 3. + +- Issue #28102: The zipfile module CLI now prints usage to stderr. + Patch by Stephen J. Turnbull. + +Tests +----- + +- Issue #28950: Disallow -j0 to be combined with -T/-l in regrtest + command line arguments. + +- Issue #28683: Fix the tests that bind() a unix socket and raise + PermissionError on Android for a non-root user. + + - Issue #26936: Fix the test_socket failures on Android - getservbyname(), + getservbyport() and getaddrinfo() are broken on some Android API levels. + +- Issue #28666: Now test.support.rmtree is able to remove unwritable or + unreadable directories. + +- Issue #23839: Various caches now are cleared before running every test file. + +- Issue #26944: Fix test_posix for Android where 'id -G' is entirely wrong or + missing the effective gid. + +- Issue #28409: regrtest: fix the parser of command line arguments. + +- Issue #28217: Adds _testconsole module to test console input. + +- Issue #26939: Add the support.setswitchinterval() function to fix + test_functools hanging on the Android armv7 qemu emulator. + + What's New in Python 3.6.1 release candidate 1? =============================================== diff --cc PC/python3.def index 6a8a9341b4,fecd731062..e80de2ad75 --- a/PC/python3.def +++ b/PC/python3.def @@@ -2,710 -2,774 +2,774 @@@ ; It is used when building python3dll.vcxproj LIBRARY "python3" EXPORTS - PyArg_Parse=python36.PyArg_Parse - PyArg_ParseTuple=python36.PyArg_ParseTuple - PyArg_ParseTupleAndKeywords=python36.PyArg_ParseTupleAndKeywords - PyArg_UnpackTuple=python36.PyArg_UnpackTuple - PyArg_VaParse=python36.PyArg_VaParse - PyArg_VaParseTupleAndKeywords=python36.PyArg_VaParseTupleAndKeywords - PyArg_ValidateKeywordArguments=python36.PyArg_ValidateKeywordArguments - PyBaseObject_Type=python36.PyBaseObject_Type DATA - PyBool_FromLong=python36.PyBool_FromLong - PyBool_Type=python36.PyBool_Type DATA - PyByteArrayIter_Type=python36.PyByteArrayIter_Type DATA - PyByteArray_AsString=python36.PyByteArray_AsString - PyByteArray_Concat=python36.PyByteArray_Concat - PyByteArray_FromObject=python36.PyByteArray_FromObject - PyByteArray_FromStringAndSize=python36.PyByteArray_FromStringAndSize - PyByteArray_Resize=python36.PyByteArray_Resize - PyByteArray_Size=python36.PyByteArray_Size - PyByteArray_Type=python36.PyByteArray_Type DATA - PyBytesIter_Type=python36.PyBytesIter_Type DATA - PyBytes_AsString=python36.PyBytes_AsString - PyBytes_AsStringAndSize=python36.PyBytes_AsStringAndSize - PyBytes_Concat=python36.PyBytes_Concat - PyBytes_ConcatAndDel=python36.PyBytes_ConcatAndDel - PyBytes_DecodeEscape=python36.PyBytes_DecodeEscape - PyBytes_FromFormat=python36.PyBytes_FromFormat - PyBytes_FromFormatV=python36.PyBytes_FromFormatV - PyBytes_FromObject=python36.PyBytes_FromObject - PyBytes_FromString=python36.PyBytes_FromString - PyBytes_FromStringAndSize=python36.PyBytes_FromStringAndSize - PyBytes_Repr=python36.PyBytes_Repr - PyBytes_Size=python36.PyBytes_Size - PyBytes_Type=python36.PyBytes_Type DATA - PyCFunction_Call=python36.PyCFunction_Call - PyCFunction_ClearFreeList=python36.PyCFunction_ClearFreeList - PyCFunction_GetFlags=python36.PyCFunction_GetFlags - PyCFunction_GetFunction=python36.PyCFunction_GetFunction - PyCFunction_GetSelf=python36.PyCFunction_GetSelf - PyCFunction_New=python36.PyCFunction_New - PyCFunction_NewEx=python36.PyCFunction_NewEx - PyCFunction_Type=python36.PyCFunction_Type DATA - PyCallIter_New=python36.PyCallIter_New - PyCallIter_Type=python36.PyCallIter_Type DATA - PyCallable_Check=python36.PyCallable_Check - PyCapsule_GetContext=python36.PyCapsule_GetContext - PyCapsule_GetDestructor=python36.PyCapsule_GetDestructor - PyCapsule_GetName=python36.PyCapsule_GetName - PyCapsule_GetPointer=python36.PyCapsule_GetPointer - PyCapsule_Import=python36.PyCapsule_Import - PyCapsule_IsValid=python36.PyCapsule_IsValid - PyCapsule_New=python36.PyCapsule_New - PyCapsule_SetContext=python36.PyCapsule_SetContext - PyCapsule_SetDestructor=python36.PyCapsule_SetDestructor - PyCapsule_SetName=python36.PyCapsule_SetName - PyCapsule_SetPointer=python36.PyCapsule_SetPointer - PyCapsule_Type=python36.PyCapsule_Type DATA - PyClassMethodDescr_Type=python36.PyClassMethodDescr_Type DATA - PyCodec_BackslashReplaceErrors=python36.PyCodec_BackslashReplaceErrors - PyCodec_Decode=python36.PyCodec_Decode - PyCodec_Decoder=python36.PyCodec_Decoder - PyCodec_Encode=python36.PyCodec_Encode - PyCodec_Encoder=python36.PyCodec_Encoder - PyCodec_IgnoreErrors=python36.PyCodec_IgnoreErrors - PyCodec_IncrementalDecoder=python36.PyCodec_IncrementalDecoder - PyCodec_IncrementalEncoder=python36.PyCodec_IncrementalEncoder - PyCodec_KnownEncoding=python36.PyCodec_KnownEncoding - PyCodec_LookupError=python36.PyCodec_LookupError - PyCodec_NameReplaceErrors=python36.PyCodec_NameReplaceErrors - PyCodec_Register=python36.PyCodec_Register - PyCodec_RegisterError=python36.PyCodec_RegisterError - PyCodec_ReplaceErrors=python36.PyCodec_ReplaceErrors - PyCodec_StreamReader=python36.PyCodec_StreamReader - PyCodec_StreamWriter=python36.PyCodec_StreamWriter - PyCodec_StrictErrors=python36.PyCodec_StrictErrors - PyCodec_XMLCharRefReplaceErrors=python36.PyCodec_XMLCharRefReplaceErrors - PyComplex_FromDoubles=python36.PyComplex_FromDoubles - PyComplex_ImagAsDouble=python36.PyComplex_ImagAsDouble - PyComplex_RealAsDouble=python36.PyComplex_RealAsDouble - PyComplex_Type=python36.PyComplex_Type DATA - PyDescr_NewClassMethod=python36.PyDescr_NewClassMethod - PyDescr_NewGetSet=python36.PyDescr_NewGetSet - PyDescr_NewMember=python36.PyDescr_NewMember - PyDescr_NewMethod=python36.PyDescr_NewMethod - PyDictItems_Type=python36.PyDictItems_Type DATA - PyDictIterItem_Type=python36.PyDictIterItem_Type DATA - PyDictIterKey_Type=python36.PyDictIterKey_Type DATA - PyDictIterValue_Type=python36.PyDictIterValue_Type DATA - PyDictKeys_Type=python36.PyDictKeys_Type DATA - PyDictProxy_New=python36.PyDictProxy_New - PyDictProxy_Type=python36.PyDictProxy_Type DATA - PyDictValues_Type=python36.PyDictValues_Type DATA - PyDict_Clear=python36.PyDict_Clear - PyDict_Contains=python36.PyDict_Contains - PyDict_Copy=python36.PyDict_Copy - PyDict_DelItem=python36.PyDict_DelItem - PyDict_DelItemString=python36.PyDict_DelItemString - PyDict_GetItem=python36.PyDict_GetItem - PyDict_GetItemString=python36.PyDict_GetItemString - PyDict_GetItemWithError=python36.PyDict_GetItemWithError - PyDict_Items=python36.PyDict_Items - PyDict_Keys=python36.PyDict_Keys - PyDict_Merge=python36.PyDict_Merge - PyDict_MergeFromSeq2=python36.PyDict_MergeFromSeq2 - PyDict_New=python36.PyDict_New - PyDict_Next=python36.PyDict_Next - PyDict_SetItem=python36.PyDict_SetItem - PyDict_SetItemString=python36.PyDict_SetItemString - PyDict_Size=python36.PyDict_Size - PyDict_Type=python36.PyDict_Type DATA - PyDict_Update=python36.PyDict_Update - PyDict_Values=python36.PyDict_Values - PyEllipsis_Type=python36.PyEllipsis_Type DATA - PyEnum_Type=python36.PyEnum_Type DATA - PyErr_BadArgument=python36.PyErr_BadArgument - PyErr_BadInternalCall=python36.PyErr_BadInternalCall - PyErr_CheckSignals=python36.PyErr_CheckSignals - PyErr_Clear=python36.PyErr_Clear - PyErr_Display=python36.PyErr_Display - PyErr_ExceptionMatches=python36.PyErr_ExceptionMatches - PyErr_Fetch=python36.PyErr_Fetch - PyErr_Format=python36.PyErr_Format - PyErr_FormatV=python36.PyErr_FormatV - PyErr_GetExcInfo=python36.PyErr_GetExcInfo - PyErr_GivenExceptionMatches=python36.PyErr_GivenExceptionMatches - PyErr_NewException=python36.PyErr_NewException - PyErr_NewExceptionWithDoc=python36.PyErr_NewExceptionWithDoc - PyErr_NoMemory=python36.PyErr_NoMemory - PyErr_NormalizeException=python36.PyErr_NormalizeException - PyErr_Occurred=python36.PyErr_Occurred - PyErr_Print=python36.PyErr_Print - PyErr_PrintEx=python36.PyErr_PrintEx - PyErr_ProgramText=python36.PyErr_ProgramText - PyErr_ResourceWarning=python36.PyErr_ResourceWarning - PyErr_Restore=python36.PyErr_Restore - PyErr_SetExcInfo=python36.PyErr_SetExcInfo - PyErr_SetFromErrno=python36.PyErr_SetFromErrno - PyErr_SetFromErrnoWithFilename=python36.PyErr_SetFromErrnoWithFilename - PyErr_SetFromErrnoWithFilenameObject=python36.PyErr_SetFromErrnoWithFilenameObject - PyErr_SetFromErrnoWithFilenameObjects=python36.PyErr_SetFromErrnoWithFilenameObjects - PyErr_SetImportError=python36.PyErr_SetImportError - PyErr_SetImportErrorSubclass=python36.PyErr_SetImportErrorSubclass - PyErr_SetInterrupt=python36.PyErr_SetInterrupt - PyErr_SetNone=python36.PyErr_SetNone - PyErr_SetObject=python36.PyErr_SetObject - PyErr_SetString=python36.PyErr_SetString - PyErr_SyntaxLocation=python36.PyErr_SyntaxLocation - PyErr_SyntaxLocationEx=python36.PyErr_SyntaxLocationEx - PyErr_WarnEx=python36.PyErr_WarnEx - PyErr_WarnExplicit=python36.PyErr_WarnExplicit - PyErr_WarnFormat=python36.PyErr_WarnFormat - PyErr_WriteUnraisable=python36.PyErr_WriteUnraisable - PyEval_AcquireLock=python36.PyEval_AcquireLock - PyEval_AcquireThread=python36.PyEval_AcquireThread - PyEval_CallFunction=python36.PyEval_CallFunction - PyEval_CallMethod=python36.PyEval_CallMethod - PyEval_CallObjectWithKeywords=python36.PyEval_CallObjectWithKeywords - PyEval_EvalCode=python36.PyEval_EvalCode - PyEval_EvalCodeEx=python36.PyEval_EvalCodeEx - PyEval_EvalFrame=python36.PyEval_EvalFrame - PyEval_EvalFrameEx=python36.PyEval_EvalFrameEx - PyEval_GetBuiltins=python36.PyEval_GetBuiltins - PyEval_GetCallStats=python36.PyEval_GetCallStats - PyEval_GetFrame=python36.PyEval_GetFrame - PyEval_GetFuncDesc=python36.PyEval_GetFuncDesc - PyEval_GetFuncName=python36.PyEval_GetFuncName - PyEval_GetGlobals=python36.PyEval_GetGlobals - PyEval_GetLocals=python36.PyEval_GetLocals - PyEval_InitThreads=python36.PyEval_InitThreads - PyEval_ReInitThreads=python36.PyEval_ReInitThreads - PyEval_ReleaseLock=python36.PyEval_ReleaseLock - PyEval_ReleaseThread=python36.PyEval_ReleaseThread - PyEval_RestoreThread=python36.PyEval_RestoreThread - PyEval_SaveThread=python36.PyEval_SaveThread - PyEval_ThreadsInitialized=python36.PyEval_ThreadsInitialized - PyExc_ArithmeticError=python36.PyExc_ArithmeticError DATA - PyExc_AssertionError=python36.PyExc_AssertionError DATA - PyExc_AttributeError=python36.PyExc_AttributeError DATA - PyExc_BaseException=python36.PyExc_BaseException DATA - PyExc_BlockingIOError=python36.PyExc_BlockingIOError DATA - PyExc_BrokenPipeError=python36.PyExc_BrokenPipeError DATA - PyExc_BufferError=python36.PyExc_BufferError DATA - PyExc_BytesWarning=python36.PyExc_BytesWarning DATA - PyExc_ChildProcessError=python36.PyExc_ChildProcessError DATA - PyExc_ConnectionAbortedError=python36.PyExc_ConnectionAbortedError DATA - PyExc_ConnectionError=python36.PyExc_ConnectionError DATA - PyExc_ConnectionRefusedError=python36.PyExc_ConnectionRefusedError DATA - PyExc_ConnectionResetError=python36.PyExc_ConnectionResetError DATA - PyExc_DeprecationWarning=python36.PyExc_DeprecationWarning DATA - PyExc_EOFError=python36.PyExc_EOFError DATA - PyExc_EnvironmentError=python36.PyExc_EnvironmentError DATA - PyExc_Exception=python36.PyExc_Exception DATA - PyExc_FileExistsError=python36.PyExc_FileExistsError DATA - PyExc_FileNotFoundError=python36.PyExc_FileNotFoundError DATA - PyExc_FloatingPointError=python36.PyExc_FloatingPointError DATA - PyExc_FutureWarning=python36.PyExc_FutureWarning DATA - PyExc_GeneratorExit=python36.PyExc_GeneratorExit DATA - PyExc_IOError=python36.PyExc_IOError DATA - PyExc_ImportError=python36.PyExc_ImportError DATA - PyExc_ImportWarning=python36.PyExc_ImportWarning DATA - PyExc_IndentationError=python36.PyExc_IndentationError DATA - PyExc_IndexError=python36.PyExc_IndexError DATA - PyExc_InterruptedError=python36.PyExc_InterruptedError DATA - PyExc_IsADirectoryError=python36.PyExc_IsADirectoryError DATA - PyExc_KeyError=python36.PyExc_KeyError DATA - PyExc_KeyboardInterrupt=python36.PyExc_KeyboardInterrupt DATA - PyExc_LookupError=python36.PyExc_LookupError DATA - PyExc_MemoryError=python36.PyExc_MemoryError DATA - PyExc_ModuleNotFoundError=python36.PyExc_ModuleNotFoundError DATA - PyExc_NameError=python36.PyExc_NameError DATA - PyExc_NotADirectoryError=python36.PyExc_NotADirectoryError DATA - PyExc_NotImplementedError=python36.PyExc_NotImplementedError DATA - PyExc_OSError=python36.PyExc_OSError DATA - PyExc_OverflowError=python36.PyExc_OverflowError DATA - PyExc_PendingDeprecationWarning=python36.PyExc_PendingDeprecationWarning DATA - PyExc_PermissionError=python36.PyExc_PermissionError DATA - PyExc_ProcessLookupError=python36.PyExc_ProcessLookupError DATA - PyExc_RecursionError=python36.PyExc_RecursionError DATA - PyExc_RecursionErrorInst=python36.PyExc_RecursionErrorInst DATA - PyExc_ReferenceError=python36.PyExc_ReferenceError DATA - PyExc_ResourceWarning=python36.PyExc_ResourceWarning DATA - PyExc_RuntimeError=python36.PyExc_RuntimeError DATA - PyExc_RuntimeWarning=python36.PyExc_RuntimeWarning DATA - PyExc_StopAsyncIteration=python36.PyExc_StopAsyncIteration DATA - PyExc_StopIteration=python36.PyExc_StopIteration DATA - PyExc_SyntaxError=python36.PyExc_SyntaxError DATA - PyExc_SyntaxWarning=python36.PyExc_SyntaxWarning DATA - PyExc_SystemError=python36.PyExc_SystemError DATA - PyExc_SystemExit=python36.PyExc_SystemExit DATA - PyExc_TabError=python36.PyExc_TabError DATA - PyExc_TimeoutError=python36.PyExc_TimeoutError DATA - PyExc_TypeError=python36.PyExc_TypeError DATA - PyExc_UnboundLocalError=python36.PyExc_UnboundLocalError DATA - PyExc_UnicodeDecodeError=python36.PyExc_UnicodeDecodeError DATA - PyExc_UnicodeEncodeError=python36.PyExc_UnicodeEncodeError DATA - PyExc_UnicodeError=python36.PyExc_UnicodeError DATA - PyExc_UnicodeTranslateError=python36.PyExc_UnicodeTranslateError DATA - PyExc_UnicodeWarning=python36.PyExc_UnicodeWarning DATA - PyExc_UserWarning=python36.PyExc_UserWarning DATA - PyExc_ValueError=python36.PyExc_ValueError DATA - PyExc_Warning=python36.PyExc_Warning DATA - PyExc_ZeroDivisionError=python36.PyExc_ZeroDivisionError DATA - PyException_GetCause=python36.PyException_GetCause - PyException_GetContext=python36.PyException_GetContext - PyException_GetTraceback=python36.PyException_GetTraceback - PyException_SetCause=python36.PyException_SetCause - PyException_SetContext=python36.PyException_SetContext - PyException_SetTraceback=python36.PyException_SetTraceback - PyFile_FromFd=python36.PyFile_FromFd - PyFile_GetLine=python36.PyFile_GetLine - PyFile_WriteObject=python36.PyFile_WriteObject - PyFile_WriteString=python36.PyFile_WriteString - PyFilter_Type=python36.PyFilter_Type DATA - PyFloat_AsDouble=python36.PyFloat_AsDouble - PyFloat_FromDouble=python36.PyFloat_FromDouble - PyFloat_FromString=python36.PyFloat_FromString - PyFloat_GetInfo=python36.PyFloat_GetInfo - PyFloat_GetMax=python36.PyFloat_GetMax - PyFloat_GetMin=python36.PyFloat_GetMin - PyFloat_Type=python36.PyFloat_Type DATA - PyFrozenSet_New=python36.PyFrozenSet_New - PyFrozenSet_Type=python36.PyFrozenSet_Type DATA - PyGC_Collect=python36.PyGC_Collect - PyGILState_Ensure=python36.PyGILState_Ensure - PyGILState_GetThisThreadState=python36.PyGILState_GetThisThreadState - PyGILState_Release=python36.PyGILState_Release - PyGetSetDescr_Type=python36.PyGetSetDescr_Type DATA - PyImport_AddModule=python36.PyImport_AddModule - PyImport_AddModuleObject=python36.PyImport_AddModuleObject - PyImport_AppendInittab=python36.PyImport_AppendInittab - PyImport_Cleanup=python36.PyImport_Cleanup - PyImport_ExecCodeModule=python36.PyImport_ExecCodeModule - PyImport_ExecCodeModuleEx=python36.PyImport_ExecCodeModuleEx - PyImport_ExecCodeModuleObject=python36.PyImport_ExecCodeModuleObject - PyImport_ExecCodeModuleWithPathnames=python36.PyImport_ExecCodeModuleWithPathnames - PyImport_GetImporter=python36.PyImport_GetImporter - PyImport_GetMagicNumber=python36.PyImport_GetMagicNumber - PyImport_GetMagicTag=python36.PyImport_GetMagicTag - PyImport_GetModuleDict=python36.PyImport_GetModuleDict - PyImport_Import=python36.PyImport_Import - PyImport_ImportFrozenModule=python36.PyImport_ImportFrozenModule - PyImport_ImportFrozenModuleObject=python36.PyImport_ImportFrozenModuleObject - PyImport_ImportModule=python36.PyImport_ImportModule - PyImport_ImportModuleLevel=python36.PyImport_ImportModuleLevel - PyImport_ImportModuleLevelObject=python36.PyImport_ImportModuleLevelObject - PyImport_ImportModuleNoBlock=python36.PyImport_ImportModuleNoBlock - PyImport_ReloadModule=python36.PyImport_ReloadModule - PyInterpreterState_Clear=python36.PyInterpreterState_Clear - PyInterpreterState_Delete=python36.PyInterpreterState_Delete - PyInterpreterState_New=python36.PyInterpreterState_New - PyIter_Next=python36.PyIter_Next - PyListIter_Type=python36.PyListIter_Type DATA - PyListRevIter_Type=python36.PyListRevIter_Type DATA - PyList_Append=python36.PyList_Append - PyList_AsTuple=python36.PyList_AsTuple - PyList_GetItem=python36.PyList_GetItem - PyList_GetSlice=python36.PyList_GetSlice - PyList_Insert=python36.PyList_Insert - PyList_New=python36.PyList_New - PyList_Reverse=python36.PyList_Reverse - PyList_SetItem=python36.PyList_SetItem - PyList_SetSlice=python36.PyList_SetSlice - PyList_Size=python36.PyList_Size - PyList_Sort=python36.PyList_Sort - PyList_Type=python36.PyList_Type DATA - PyLongRangeIter_Type=python36.PyLongRangeIter_Type DATA - PyLong_AsDouble=python36.PyLong_AsDouble - PyLong_AsLong=python36.PyLong_AsLong - PyLong_AsLongAndOverflow=python36.PyLong_AsLongAndOverflow - PyLong_AsLongLong=python36.PyLong_AsLongLong - PyLong_AsLongLongAndOverflow=python36.PyLong_AsLongLongAndOverflow - PyLong_AsSize_t=python36.PyLong_AsSize_t - PyLong_AsSsize_t=python36.PyLong_AsSsize_t - PyLong_AsUnsignedLong=python36.PyLong_AsUnsignedLong - PyLong_AsUnsignedLongLong=python36.PyLong_AsUnsignedLongLong - PyLong_AsUnsignedLongLongMask=python36.PyLong_AsUnsignedLongLongMask - PyLong_AsUnsignedLongMask=python36.PyLong_AsUnsignedLongMask - PyLong_AsVoidPtr=python36.PyLong_AsVoidPtr - PyLong_FromDouble=python36.PyLong_FromDouble - PyLong_FromLong=python36.PyLong_FromLong - PyLong_FromLongLong=python36.PyLong_FromLongLong - PyLong_FromSize_t=python36.PyLong_FromSize_t - PyLong_FromSsize_t=python36.PyLong_FromSsize_t - PyLong_FromString=python36.PyLong_FromString - PyLong_FromUnsignedLong=python36.PyLong_FromUnsignedLong - PyLong_FromUnsignedLongLong=python36.PyLong_FromUnsignedLongLong - PyLong_FromVoidPtr=python36.PyLong_FromVoidPtr - PyLong_GetInfo=python36.PyLong_GetInfo - PyLong_Type=python36.PyLong_Type DATA - PyMap_Type=python36.PyMap_Type DATA - PyMapping_Check=python36.PyMapping_Check - PyMapping_GetItemString=python36.PyMapping_GetItemString - PyMapping_HasKey=python36.PyMapping_HasKey - PyMapping_HasKeyString=python36.PyMapping_HasKeyString - PyMapping_Items=python36.PyMapping_Items - PyMapping_Keys=python36.PyMapping_Keys - PyMapping_Length=python36.PyMapping_Length - PyMapping_SetItemString=python36.PyMapping_SetItemString - PyMapping_Size=python36.PyMapping_Size - PyMapping_Values=python36.PyMapping_Values - PyMem_Calloc=python36.PyMem_Calloc - PyMem_Free=python36.PyMem_Free - PyMem_Malloc=python36.PyMem_Malloc - PyMem_Realloc=python36.PyMem_Realloc - PyMemberDescr_Type=python36.PyMemberDescr_Type DATA - PyMemoryView_FromMemory=python36.PyMemoryView_FromMemory - PyMemoryView_FromObject=python36.PyMemoryView_FromObject - PyMemoryView_GetContiguous=python36.PyMemoryView_GetContiguous - PyMemoryView_Type=python36.PyMemoryView_Type DATA - PyMethodDescr_Type=python36.PyMethodDescr_Type DATA - PyModuleDef_Init=python36.PyModuleDef_Init - PyModuleDef_Type=python36.PyModuleDef_Type DATA - PyModule_AddFunctions=python36.PyModule_AddFunctions - PyModule_AddIntConstant=python36.PyModule_AddIntConstant - PyModule_AddObject=python36.PyModule_AddObject - PyModule_AddStringConstant=python36.PyModule_AddStringConstant - PyModule_Create2=python36.PyModule_Create2 - PyModule_ExecDef=python36.PyModule_ExecDef - PyModule_FromDefAndSpec2=python36.PyModule_FromDefAndSpec2 - PyModule_GetDef=python36.PyModule_GetDef - PyModule_GetDict=python36.PyModule_GetDict - PyModule_GetFilename=python36.PyModule_GetFilename - PyModule_GetFilenameObject=python36.PyModule_GetFilenameObject - PyModule_GetName=python36.PyModule_GetName - PyModule_GetNameObject=python36.PyModule_GetNameObject - PyModule_GetState=python36.PyModule_GetState - PyModule_New=python36.PyModule_New - PyModule_NewObject=python36.PyModule_NewObject - PyModule_SetDocString=python36.PyModule_SetDocString - PyModule_Type=python36.PyModule_Type DATA - PyNullImporter_Type=python36.PyNullImporter_Type DATA - PyNumber_Absolute=python36.PyNumber_Absolute - PyNumber_Add=python36.PyNumber_Add - PyNumber_And=python36.PyNumber_And - PyNumber_AsSsize_t=python36.PyNumber_AsSsize_t - PyNumber_Check=python36.PyNumber_Check - PyNumber_Divmod=python36.PyNumber_Divmod - PyNumber_Float=python36.PyNumber_Float - PyNumber_FloorDivide=python36.PyNumber_FloorDivide - PyNumber_InPlaceAdd=python36.PyNumber_InPlaceAdd - PyNumber_InPlaceAnd=python36.PyNumber_InPlaceAnd - PyNumber_InPlaceFloorDivide=python36.PyNumber_InPlaceFloorDivide - PyNumber_InPlaceLshift=python36.PyNumber_InPlaceLshift - PyNumber_InPlaceMatrixMultiply=python36.PyNumber_InPlaceMatrixMultiply - PyNumber_InPlaceMultiply=python36.PyNumber_InPlaceMultiply - PyNumber_InPlaceOr=python36.PyNumber_InPlaceOr - PyNumber_InPlacePower=python36.PyNumber_InPlacePower - PyNumber_InPlaceRemainder=python36.PyNumber_InPlaceRemainder - PyNumber_InPlaceRshift=python36.PyNumber_InPlaceRshift - PyNumber_InPlaceSubtract=python36.PyNumber_InPlaceSubtract - PyNumber_InPlaceTrueDivide=python36.PyNumber_InPlaceTrueDivide - PyNumber_InPlaceXor=python36.PyNumber_InPlaceXor - PyNumber_Index=python36.PyNumber_Index - PyNumber_Invert=python36.PyNumber_Invert - PyNumber_Long=python36.PyNumber_Long - PyNumber_Lshift=python36.PyNumber_Lshift - PyNumber_MatrixMultiply=python36.PyNumber_MatrixMultiply - PyNumber_Multiply=python36.PyNumber_Multiply - PyNumber_Negative=python36.PyNumber_Negative - PyNumber_Or=python36.PyNumber_Or - PyNumber_Positive=python36.PyNumber_Positive - PyNumber_Power=python36.PyNumber_Power - PyNumber_Remainder=python36.PyNumber_Remainder - PyNumber_Rshift=python36.PyNumber_Rshift - PyNumber_Subtract=python36.PyNumber_Subtract - PyNumber_ToBase=python36.PyNumber_ToBase - PyNumber_TrueDivide=python36.PyNumber_TrueDivide - PyNumber_Xor=python36.PyNumber_Xor - PyODictItems_Type=python36.PyODictItems_Type DATA - PyODictIter_Type=python36.PyODictIter_Type DATA - PyODictKeys_Type=python36.PyODictKeys_Type DATA - PyODictValues_Type=python36.PyODictValues_Type DATA - PyODict_DelItem=python36.PyODict_DelItem - PyODict_New=python36.PyODict_New - PyODict_SetItem=python36.PyODict_SetItem - PyODict_Type=python36.PyODict_Type DATA - PyOS_AfterFork=python36.PyOS_AfterFork - PyOS_FSPath=python36.PyOS_FSPath - PyOS_InitInterrupts=python36.PyOS_InitInterrupts - PyOS_InputHook=python36.PyOS_InputHook DATA - PyOS_InterruptOccurred=python36.PyOS_InterruptOccurred - PyOS_ReadlineFunctionPointer=python36.PyOS_ReadlineFunctionPointer DATA - PyOS_double_to_string=python36.PyOS_double_to_string - PyOS_getsig=python36.PyOS_getsig - PyOS_mystricmp=python36.PyOS_mystricmp - PyOS_mystrnicmp=python36.PyOS_mystrnicmp - PyOS_setsig=python36.PyOS_setsig - PyOS_snprintf=python36.PyOS_snprintf - PyOS_string_to_double=python36.PyOS_string_to_double - PyOS_strtol=python36.PyOS_strtol - PyOS_strtoul=python36.PyOS_strtoul - PyOS_vsnprintf=python36.PyOS_vsnprintf - PyObject_ASCII=python36.PyObject_ASCII - PyObject_AsCharBuffer=python36.PyObject_AsCharBuffer - PyObject_AsFileDescriptor=python36.PyObject_AsFileDescriptor - PyObject_AsReadBuffer=python36.PyObject_AsReadBuffer - PyObject_AsWriteBuffer=python36.PyObject_AsWriteBuffer - PyObject_Bytes=python36.PyObject_Bytes - PyObject_Call=python36.PyObject_Call - PyObject_CallFunction=python36.PyObject_CallFunction - PyObject_CallFunctionObjArgs=python36.PyObject_CallFunctionObjArgs - PyObject_CallMethod=python36.PyObject_CallMethod - PyObject_CallMethodObjArgs=python36.PyObject_CallMethodObjArgs - PyObject_CallObject=python36.PyObject_CallObject - PyObject_Calloc=python36.PyObject_Calloc - PyObject_CheckReadBuffer=python36.PyObject_CheckReadBuffer - PyObject_ClearWeakRefs=python36.PyObject_ClearWeakRefs - PyObject_DelItem=python36.PyObject_DelItem - PyObject_DelItemString=python36.PyObject_DelItemString - PyObject_Dir=python36.PyObject_Dir - PyObject_Format=python36.PyObject_Format - PyObject_Free=python36.PyObject_Free - PyObject_GC_Del=python36.PyObject_GC_Del - PyObject_GC_Track=python36.PyObject_GC_Track - PyObject_GC_UnTrack=python36.PyObject_GC_UnTrack - PyObject_GenericGetAttr=python36.PyObject_GenericGetAttr - PyObject_GenericSetAttr=python36.PyObject_GenericSetAttr - PyObject_GenericSetDict=python36.PyObject_GenericSetDict - PyObject_GetAttr=python36.PyObject_GetAttr - PyObject_GetAttrString=python36.PyObject_GetAttrString - PyObject_GetItem=python36.PyObject_GetItem - PyObject_GetIter=python36.PyObject_GetIter - PyObject_HasAttr=python36.PyObject_HasAttr - PyObject_HasAttrString=python36.PyObject_HasAttrString - PyObject_Hash=python36.PyObject_Hash - PyObject_HashNotImplemented=python36.PyObject_HashNotImplemented - PyObject_Init=python36.PyObject_Init - PyObject_InitVar=python36.PyObject_InitVar - PyObject_IsInstance=python36.PyObject_IsInstance - PyObject_IsSubclass=python36.PyObject_IsSubclass - PyObject_IsTrue=python36.PyObject_IsTrue - PyObject_Length=python36.PyObject_Length - PyObject_Malloc=python36.PyObject_Malloc - PyObject_Not=python36.PyObject_Not - PyObject_Realloc=python36.PyObject_Realloc - PyObject_Repr=python36.PyObject_Repr - PyObject_RichCompare=python36.PyObject_RichCompare - PyObject_RichCompareBool=python36.PyObject_RichCompareBool - PyObject_SelfIter=python36.PyObject_SelfIter - PyObject_SetAttr=python36.PyObject_SetAttr - PyObject_SetAttrString=python36.PyObject_SetAttrString - PyObject_SetItem=python36.PyObject_SetItem - PyObject_Size=python36.PyObject_Size - PyObject_Str=python36.PyObject_Str - PyObject_Type=python36.PyObject_Type - PyParser_SimpleParseFileFlags=python36.PyParser_SimpleParseFileFlags - PyParser_SimpleParseStringFlags=python36.PyParser_SimpleParseStringFlags - PyParser_SimpleParseStringFlagsFilename=python36.PyParser_SimpleParseStringFlagsFilename - PyProperty_Type=python36.PyProperty_Type DATA - PyRangeIter_Type=python36.PyRangeIter_Type DATA - PyRange_Type=python36.PyRange_Type DATA - PyReversed_Type=python36.PyReversed_Type DATA - PySeqIter_New=python36.PySeqIter_New - PySeqIter_Type=python36.PySeqIter_Type DATA - PySequence_Check=python36.PySequence_Check - PySequence_Concat=python36.PySequence_Concat - PySequence_Contains=python36.PySequence_Contains - PySequence_Count=python36.PySequence_Count - PySequence_DelItem=python36.PySequence_DelItem - PySequence_DelSlice=python36.PySequence_DelSlice - PySequence_Fast=python36.PySequence_Fast - PySequence_GetItem=python36.PySequence_GetItem - PySequence_GetSlice=python36.PySequence_GetSlice - PySequence_In=python36.PySequence_In - PySequence_InPlaceConcat=python36.PySequence_InPlaceConcat - PySequence_InPlaceRepeat=python36.PySequence_InPlaceRepeat - PySequence_Index=python36.PySequence_Index - PySequence_Length=python36.PySequence_Length - PySequence_List=python36.PySequence_List - PySequence_Repeat=python36.PySequence_Repeat - PySequence_SetItem=python36.PySequence_SetItem - PySequence_SetSlice=python36.PySequence_SetSlice - PySequence_Size=python36.PySequence_Size - PySequence_Tuple=python36.PySequence_Tuple - PySetIter_Type=python36.PySetIter_Type DATA - PySet_Add=python36.PySet_Add - PySet_Clear=python36.PySet_Clear - PySet_Contains=python36.PySet_Contains - PySet_Discard=python36.PySet_Discard - PySet_New=python36.PySet_New - PySet_Pop=python36.PySet_Pop - PySet_Size=python36.PySet_Size - PySet_Type=python36.PySet_Type DATA - PySlice_GetIndices=python36.PySlice_GetIndices - PySlice_GetIndicesEx=python36.PySlice_GetIndicesEx - PySlice_New=python36.PySlice_New - PySlice_Type=python36.PySlice_Type DATA - PySortWrapper_Type=python36.PySortWrapper_Type DATA - PyState_AddModule=python36.PyState_AddModule - PyState_FindModule=python36.PyState_FindModule - PyState_RemoveModule=python36.PyState_RemoveModule - PyStructSequence_GetItem=python36.PyStructSequence_GetItem - PyStructSequence_New=python36.PyStructSequence_New - PyStructSequence_NewType=python36.PyStructSequence_NewType - PyStructSequence_SetItem=python36.PyStructSequence_SetItem - PySuper_Type=python36.PySuper_Type DATA - PySys_AddWarnOption=python36.PySys_AddWarnOption - PySys_AddWarnOptionUnicode=python36.PySys_AddWarnOptionUnicode - PySys_AddXOption=python36.PySys_AddXOption - PySys_FormatStderr=python36.PySys_FormatStderr - PySys_FormatStdout=python36.PySys_FormatStdout - PySys_GetObject=python36.PySys_GetObject - PySys_GetXOptions=python36.PySys_GetXOptions - PySys_HasWarnOptions=python36.PySys_HasWarnOptions - PySys_ResetWarnOptions=python36.PySys_ResetWarnOptions - PySys_SetArgv=python36.PySys_SetArgv - PySys_SetArgvEx=python36.PySys_SetArgvEx - PySys_SetObject=python36.PySys_SetObject - PySys_SetPath=python36.PySys_SetPath - PySys_WriteStderr=python36.PySys_WriteStderr - PySys_WriteStdout=python36.PySys_WriteStdout - PyThreadState_Clear=python36.PyThreadState_Clear - PyThreadState_Delete=python36.PyThreadState_Delete - PyThreadState_DeleteCurrent=python36.PyThreadState_DeleteCurrent - PyThreadState_Get=python36.PyThreadState_Get - PyThreadState_GetDict=python36.PyThreadState_GetDict - PyThreadState_New=python36.PyThreadState_New - PyThreadState_SetAsyncExc=python36.PyThreadState_SetAsyncExc - PyThreadState_Swap=python36.PyThreadState_Swap - PyTraceBack_Here=python36.PyTraceBack_Here - PyTraceBack_Print=python36.PyTraceBack_Print - PyTraceBack_Type=python36.PyTraceBack_Type DATA - PyTupleIter_Type=python36.PyTupleIter_Type DATA - PyTuple_ClearFreeList=python36.PyTuple_ClearFreeList - PyTuple_GetItem=python36.PyTuple_GetItem - PyTuple_GetSlice=python36.PyTuple_GetSlice - PyTuple_New=python36.PyTuple_New - PyTuple_Pack=python36.PyTuple_Pack - PyTuple_SetItem=python36.PyTuple_SetItem - PyTuple_Size=python36.PyTuple_Size - PyTuple_Type=python36.PyTuple_Type DATA - PyType_ClearCache=python36.PyType_ClearCache - PyType_FromSpec=python36.PyType_FromSpec - PyType_FromSpecWithBases=python36.PyType_FromSpecWithBases - PyType_GenericAlloc=python36.PyType_GenericAlloc - PyType_GenericNew=python36.PyType_GenericNew - PyType_GetFlags=python36.PyType_GetFlags - PyType_GetSlot=python36.PyType_GetSlot - PyType_IsSubtype=python36.PyType_IsSubtype - PyType_Modified=python36.PyType_Modified - PyType_Ready=python36.PyType_Ready - PyType_Type=python36.PyType_Type DATA - PyUnicodeDecodeError_Create=python36.PyUnicodeDecodeError_Create - PyUnicodeDecodeError_GetEncoding=python36.PyUnicodeDecodeError_GetEncoding - PyUnicodeDecodeError_GetEnd=python36.PyUnicodeDecodeError_GetEnd - PyUnicodeDecodeError_GetObject=python36.PyUnicodeDecodeError_GetObject - PyUnicodeDecodeError_GetReason=python36.PyUnicodeDecodeError_GetReason - PyUnicodeDecodeError_GetStart=python36.PyUnicodeDecodeError_GetStart - PyUnicodeDecodeError_SetEnd=python36.PyUnicodeDecodeError_SetEnd - PyUnicodeDecodeError_SetReason=python36.PyUnicodeDecodeError_SetReason - PyUnicodeDecodeError_SetStart=python36.PyUnicodeDecodeError_SetStart - PyUnicodeEncodeError_GetEncoding=python36.PyUnicodeEncodeError_GetEncoding - PyUnicodeEncodeError_GetEnd=python36.PyUnicodeEncodeError_GetEnd - PyUnicodeEncodeError_GetObject=python36.PyUnicodeEncodeError_GetObject - PyUnicodeEncodeError_GetReason=python36.PyUnicodeEncodeError_GetReason - PyUnicodeEncodeError_GetStart=python36.PyUnicodeEncodeError_GetStart - PyUnicodeEncodeError_SetEnd=python36.PyUnicodeEncodeError_SetEnd - PyUnicodeEncodeError_SetReason=python36.PyUnicodeEncodeError_SetReason - PyUnicodeEncodeError_SetStart=python36.PyUnicodeEncodeError_SetStart - PyUnicodeIter_Type=python36.PyUnicodeIter_Type DATA - PyUnicodeTranslateError_GetEnd=python36.PyUnicodeTranslateError_GetEnd - PyUnicodeTranslateError_GetObject=python36.PyUnicodeTranslateError_GetObject - PyUnicodeTranslateError_GetReason=python36.PyUnicodeTranslateError_GetReason - PyUnicodeTranslateError_GetStart=python36.PyUnicodeTranslateError_GetStart - PyUnicodeTranslateError_SetEnd=python36.PyUnicodeTranslateError_SetEnd - PyUnicodeTranslateError_SetReason=python36.PyUnicodeTranslateError_SetReason - PyUnicodeTranslateError_SetStart=python36.PyUnicodeTranslateError_SetStart - PyUnicode_Append=python36.PyUnicode_Append - PyUnicode_AppendAndDel=python36.PyUnicode_AppendAndDel - PyUnicode_AsASCIIString=python36.PyUnicode_AsASCIIString - PyUnicode_AsCharmapString=python36.PyUnicode_AsCharmapString - PyUnicode_AsDecodedObject=python36.PyUnicode_AsDecodedObject - PyUnicode_AsDecodedUnicode=python36.PyUnicode_AsDecodedUnicode - PyUnicode_AsEncodedObject=python36.PyUnicode_AsEncodedObject - PyUnicode_AsEncodedString=python36.PyUnicode_AsEncodedString - PyUnicode_AsEncodedUnicode=python36.PyUnicode_AsEncodedUnicode - PyUnicode_AsLatin1String=python36.PyUnicode_AsLatin1String - PyUnicode_AsRawUnicodeEscapeString=python36.PyUnicode_AsRawUnicodeEscapeString - PyUnicode_AsUCS4=python36.PyUnicode_AsUCS4 - PyUnicode_AsUCS4Copy=python36.PyUnicode_AsUCS4Copy - PyUnicode_AsUTF16String=python36.PyUnicode_AsUTF16String - PyUnicode_AsUTF32String=python36.PyUnicode_AsUTF32String - PyUnicode_AsUTF8String=python36.PyUnicode_AsUTF8String - PyUnicode_AsUnicodeEscapeString=python36.PyUnicode_AsUnicodeEscapeString - PyUnicode_AsWideChar=python36.PyUnicode_AsWideChar - PyUnicode_AsWideCharString=python36.PyUnicode_AsWideCharString - PyUnicode_BuildEncodingMap=python36.PyUnicode_BuildEncodingMap - PyUnicode_ClearFreeList=python36.PyUnicode_ClearFreeList - PyUnicode_Compare=python36.PyUnicode_Compare - PyUnicode_CompareWithASCIIString=python36.PyUnicode_CompareWithASCIIString - PyUnicode_Concat=python36.PyUnicode_Concat - PyUnicode_Contains=python36.PyUnicode_Contains - PyUnicode_Count=python36.PyUnicode_Count - PyUnicode_Decode=python36.PyUnicode_Decode - PyUnicode_DecodeASCII=python36.PyUnicode_DecodeASCII - PyUnicode_DecodeCharmap=python36.PyUnicode_DecodeCharmap - PyUnicode_DecodeFSDefault=python36.PyUnicode_DecodeFSDefault - PyUnicode_DecodeFSDefaultAndSize=python36.PyUnicode_DecodeFSDefaultAndSize - PyUnicode_DecodeLatin1=python36.PyUnicode_DecodeLatin1 - PyUnicode_DecodeLocale=python36.PyUnicode_DecodeLocale - PyUnicode_DecodeLocaleAndSize=python36.PyUnicode_DecodeLocaleAndSize - PyUnicode_DecodeRawUnicodeEscape=python36.PyUnicode_DecodeRawUnicodeEscape - PyUnicode_DecodeUTF16=python36.PyUnicode_DecodeUTF16 - PyUnicode_DecodeUTF16Stateful=python36.PyUnicode_DecodeUTF16Stateful - PyUnicode_DecodeUTF32=python36.PyUnicode_DecodeUTF32 - PyUnicode_DecodeUTF32Stateful=python36.PyUnicode_DecodeUTF32Stateful - PyUnicode_DecodeUTF7=python36.PyUnicode_DecodeUTF7 - PyUnicode_DecodeUTF7Stateful=python36.PyUnicode_DecodeUTF7Stateful - PyUnicode_DecodeUTF8=python36.PyUnicode_DecodeUTF8 - PyUnicode_DecodeUTF8Stateful=python36.PyUnicode_DecodeUTF8Stateful - PyUnicode_DecodeUnicodeEscape=python36.PyUnicode_DecodeUnicodeEscape - PyUnicode_EncodeFSDefault=python36.PyUnicode_EncodeFSDefault - PyUnicode_EncodeLocale=python36.PyUnicode_EncodeLocale - PyUnicode_FSConverter=python36.PyUnicode_FSConverter - PyUnicode_FSDecoder=python36.PyUnicode_FSDecoder - PyUnicode_Find=python36.PyUnicode_Find - PyUnicode_FindChar=python36.PyUnicode_FindChar - PyUnicode_Format=python36.PyUnicode_Format - PyUnicode_FromEncodedObject=python36.PyUnicode_FromEncodedObject - PyUnicode_FromFormat=python36.PyUnicode_FromFormat - PyUnicode_FromFormatV=python36.PyUnicode_FromFormatV - PyUnicode_FromObject=python36.PyUnicode_FromObject - PyUnicode_FromOrdinal=python36.PyUnicode_FromOrdinal - PyUnicode_FromString=python36.PyUnicode_FromString - PyUnicode_FromStringAndSize=python36.PyUnicode_FromStringAndSize - PyUnicode_FromWideChar=python36.PyUnicode_FromWideChar - PyUnicode_GetDefaultEncoding=python36.PyUnicode_GetDefaultEncoding - PyUnicode_GetLength=python36.PyUnicode_GetLength - PyUnicode_GetSize=python36.PyUnicode_GetSize - PyUnicode_InternFromString=python36.PyUnicode_InternFromString - PyUnicode_InternImmortal=python36.PyUnicode_InternImmortal - PyUnicode_InternInPlace=python36.PyUnicode_InternInPlace - PyUnicode_IsIdentifier=python36.PyUnicode_IsIdentifier - PyUnicode_Join=python36.PyUnicode_Join - PyUnicode_Partition=python36.PyUnicode_Partition - PyUnicode_RPartition=python36.PyUnicode_RPartition - PyUnicode_RSplit=python36.PyUnicode_RSplit - PyUnicode_ReadChar=python36.PyUnicode_ReadChar - PyUnicode_Replace=python36.PyUnicode_Replace - PyUnicode_Resize=python36.PyUnicode_Resize - PyUnicode_RichCompare=python36.PyUnicode_RichCompare - PyUnicode_Split=python36.PyUnicode_Split - PyUnicode_Splitlines=python36.PyUnicode_Splitlines - PyUnicode_Substring=python36.PyUnicode_Substring - PyUnicode_Tailmatch=python36.PyUnicode_Tailmatch - PyUnicode_Translate=python36.PyUnicode_Translate - PyUnicode_Type=python36.PyUnicode_Type DATA - PyUnicode_WriteChar=python36.PyUnicode_WriteChar - PyWeakref_GetObject=python36.PyWeakref_GetObject - PyWeakref_NewProxy=python36.PyWeakref_NewProxy - PyWeakref_NewRef=python36.PyWeakref_NewRef - PyWrapperDescr_Type=python36.PyWrapperDescr_Type DATA - PyWrapper_New=python36.PyWrapper_New - PyZip_Type=python36.PyZip_Type DATA - Py_AddPendingCall=python36.Py_AddPendingCall - Py_AtExit=python36.Py_AtExit - Py_BuildValue=python36.Py_BuildValue - Py_CompileString=python36.Py_CompileString - Py_DecRef=python36.Py_DecRef - Py_DecodeLocale=python36.Py_DecodeLocale - Py_EncodeLocale=python36.Py_EncodeLocale - Py_EndInterpreter=python36.Py_EndInterpreter - Py_Exit=python36.Py_Exit - Py_FatalError=python36.Py_FatalError - Py_FileSystemDefaultEncodeErrors=python36.Py_FileSystemDefaultEncodeErrors DATA - Py_FileSystemDefaultEncoding=python36.Py_FileSystemDefaultEncoding DATA - Py_Finalize=python36.Py_Finalize - Py_FinalizeEx=python36.Py_FinalizeEx - Py_GetBuildInfo=python36.Py_GetBuildInfo - Py_GetCompiler=python36.Py_GetCompiler - Py_GetCopyright=python36.Py_GetCopyright - Py_GetExecPrefix=python36.Py_GetExecPrefix - Py_GetPath=python36.Py_GetPath - Py_GetPlatform=python36.Py_GetPlatform - Py_GetPrefix=python36.Py_GetPrefix - Py_GetProgramFullPath=python36.Py_GetProgramFullPath - Py_GetProgramName=python36.Py_GetProgramName - Py_GetPythonHome=python36.Py_GetPythonHome - Py_GetRecursionLimit=python36.Py_GetRecursionLimit - Py_GetVersion=python36.Py_GetVersion - Py_HasFileSystemDefaultEncoding=python36.Py_HasFileSystemDefaultEncoding DATA - Py_IncRef=python36.Py_IncRef - Py_Initialize=python36.Py_Initialize - Py_InitializeEx=python36.Py_InitializeEx - Py_IsInitialized=python36.Py_IsInitialized - Py_Main=python36.Py_Main - Py_MakePendingCalls=python36.Py_MakePendingCalls - Py_NewInterpreter=python36.Py_NewInterpreter - Py_ReprEnter=python36.Py_ReprEnter - Py_ReprLeave=python36.Py_ReprLeave - Py_SetPath=python36.Py_SetPath - Py_SetProgramName=python36.Py_SetProgramName - Py_SetPythonHome=python36.Py_SetPythonHome - Py_SetRecursionLimit=python36.Py_SetRecursionLimit - Py_SymtableString=python36.Py_SymtableString - Py_VaBuildValue=python36.Py_VaBuildValue - _PyArg_ParseTupleAndKeywords_SizeT=python36._PyArg_ParseTupleAndKeywords_SizeT - _PyArg_ParseTuple_SizeT=python36._PyArg_ParseTuple_SizeT - _PyArg_Parse_SizeT=python36._PyArg_Parse_SizeT - _PyArg_VaParseTupleAndKeywords_SizeT=python36._PyArg_VaParseTupleAndKeywords_SizeT - _PyArg_VaParse_SizeT=python36._PyArg_VaParse_SizeT - _PyErr_BadInternalCall=python36._PyErr_BadInternalCall - _PyObject_CallFunction_SizeT=python36._PyObject_CallFunction_SizeT - _PyObject_CallMethod_SizeT=python36._PyObject_CallMethod_SizeT - _PyObject_GC_Malloc=python36._PyObject_GC_Malloc - _PyObject_GC_New=python36._PyObject_GC_New - _PyObject_GC_NewVar=python36._PyObject_GC_NewVar - _PyObject_GC_Resize=python36._PyObject_GC_Resize - _PyObject_New=python36._PyObject_New - _PyObject_NewVar=python36._PyObject_NewVar - _PyState_AddModule=python36._PyState_AddModule - _PyThreadState_Init=python36._PyThreadState_Init - _PyThreadState_Prealloc=python36._PyThreadState_Prealloc - _PyTrash_delete_later=python36._PyTrash_delete_later DATA - _PyTrash_delete_nesting=python36._PyTrash_delete_nesting DATA - _PyTrash_deposit_object=python36._PyTrash_deposit_object - _PyTrash_destroy_chain=python36._PyTrash_destroy_chain - _PyTrash_thread_deposit_object=python36._PyTrash_thread_deposit_object - _PyTrash_thread_destroy_chain=python36._PyTrash_thread_destroy_chain - _PyWeakref_CallableProxyType=python36._PyWeakref_CallableProxyType DATA - _PyWeakref_ProxyType=python36._PyWeakref_ProxyType DATA - _PyWeakref_RefType=python36._PyWeakref_RefType DATA - _Py_BuildValue_SizeT=python36._Py_BuildValue_SizeT - _Py_CheckRecursionLimit=python36._Py_CheckRecursionLimit DATA - _Py_CheckRecursiveCall=python36._Py_CheckRecursiveCall - _Py_Dealloc=python36._Py_Dealloc - _Py_EllipsisObject=python36._Py_EllipsisObject DATA - _Py_FalseStruct=python36._Py_FalseStruct DATA - _Py_NoneStruct=python36._Py_NoneStruct DATA - _Py_NotImplementedStruct=python36._Py_NotImplementedStruct DATA - _Py_SwappedOp=python36._Py_SwappedOp DATA - _Py_TrueStruct=python36._Py_TrueStruct DATA - _Py_VaBuildValue_SizeT=python36._Py_VaBuildValue_SizeT + PyArg_Parse=python37.PyArg_Parse + PyArg_ParseTuple=python37.PyArg_ParseTuple + PyArg_ParseTupleAndKeywords=python37.PyArg_ParseTupleAndKeywords + PyArg_UnpackTuple=python37.PyArg_UnpackTuple + PyArg_VaParse=python37.PyArg_VaParse + PyArg_VaParseTupleAndKeywords=python37.PyArg_VaParseTupleAndKeywords + PyArg_ValidateKeywordArguments=python37.PyArg_ValidateKeywordArguments + PyBaseObject_Type=python37.PyBaseObject_Type DATA + PyBool_FromLong=python37.PyBool_FromLong + PyBool_Type=python37.PyBool_Type DATA + PyByteArrayIter_Type=python37.PyByteArrayIter_Type DATA + PyByteArray_AsString=python37.PyByteArray_AsString + PyByteArray_Concat=python37.PyByteArray_Concat + PyByteArray_FromObject=python37.PyByteArray_FromObject + PyByteArray_FromStringAndSize=python37.PyByteArray_FromStringAndSize + PyByteArray_Resize=python37.PyByteArray_Resize + PyByteArray_Size=python37.PyByteArray_Size + PyByteArray_Type=python37.PyByteArray_Type DATA + PyBytesIter_Type=python37.PyBytesIter_Type DATA + PyBytes_AsString=python37.PyBytes_AsString + PyBytes_AsStringAndSize=python37.PyBytes_AsStringAndSize + PyBytes_Concat=python37.PyBytes_Concat + PyBytes_ConcatAndDel=python37.PyBytes_ConcatAndDel + PyBytes_DecodeEscape=python37.PyBytes_DecodeEscape + PyBytes_FromFormat=python37.PyBytes_FromFormat + PyBytes_FromFormatV=python37.PyBytes_FromFormatV + PyBytes_FromObject=python37.PyBytes_FromObject + PyBytes_FromString=python37.PyBytes_FromString + PyBytes_FromStringAndSize=python37.PyBytes_FromStringAndSize + PyBytes_Repr=python37.PyBytes_Repr + PyBytes_Size=python37.PyBytes_Size + PyBytes_Type=python37.PyBytes_Type DATA + PyCFunction_Call=python37.PyCFunction_Call + PyCFunction_ClearFreeList=python37.PyCFunction_ClearFreeList + PyCFunction_GetFlags=python37.PyCFunction_GetFlags + PyCFunction_GetFunction=python37.PyCFunction_GetFunction + PyCFunction_GetSelf=python37.PyCFunction_GetSelf + PyCFunction_New=python37.PyCFunction_New + PyCFunction_NewEx=python37.PyCFunction_NewEx + PyCFunction_Type=python37.PyCFunction_Type DATA + PyCallIter_New=python37.PyCallIter_New + PyCallIter_Type=python37.PyCallIter_Type DATA + PyCallable_Check=python37.PyCallable_Check + PyCapsule_GetContext=python37.PyCapsule_GetContext + PyCapsule_GetDestructor=python37.PyCapsule_GetDestructor + PyCapsule_GetName=python37.PyCapsule_GetName + PyCapsule_GetPointer=python37.PyCapsule_GetPointer + PyCapsule_Import=python37.PyCapsule_Import + PyCapsule_IsValid=python37.PyCapsule_IsValid + PyCapsule_New=python37.PyCapsule_New + PyCapsule_SetContext=python37.PyCapsule_SetContext + PyCapsule_SetDestructor=python37.PyCapsule_SetDestructor + PyCapsule_SetName=python37.PyCapsule_SetName + PyCapsule_SetPointer=python37.PyCapsule_SetPointer + PyCapsule_Type=python37.PyCapsule_Type DATA + PyClassMethodDescr_Type=python37.PyClassMethodDescr_Type DATA + PyCodec_BackslashReplaceErrors=python37.PyCodec_BackslashReplaceErrors + PyCodec_Decode=python37.PyCodec_Decode + PyCodec_Decoder=python37.PyCodec_Decoder + PyCodec_Encode=python37.PyCodec_Encode + PyCodec_Encoder=python37.PyCodec_Encoder + PyCodec_IgnoreErrors=python37.PyCodec_IgnoreErrors + PyCodec_IncrementalDecoder=python37.PyCodec_IncrementalDecoder + PyCodec_IncrementalEncoder=python37.PyCodec_IncrementalEncoder + PyCodec_KnownEncoding=python37.PyCodec_KnownEncoding + PyCodec_LookupError=python37.PyCodec_LookupError ++ PyCodec_NameReplaceErrors=python37.PyCodec_NameReplaceErrors + PyCodec_Register=python37.PyCodec_Register + PyCodec_RegisterError=python37.PyCodec_RegisterError + PyCodec_ReplaceErrors=python37.PyCodec_ReplaceErrors + PyCodec_StreamReader=python37.PyCodec_StreamReader + PyCodec_StreamWriter=python37.PyCodec_StreamWriter + PyCodec_StrictErrors=python37.PyCodec_StrictErrors + PyCodec_XMLCharRefReplaceErrors=python37.PyCodec_XMLCharRefReplaceErrors + PyComplex_FromDoubles=python37.PyComplex_FromDoubles + PyComplex_ImagAsDouble=python37.PyComplex_ImagAsDouble + PyComplex_RealAsDouble=python37.PyComplex_RealAsDouble + PyComplex_Type=python37.PyComplex_Type DATA + PyDescr_NewClassMethod=python37.PyDescr_NewClassMethod + PyDescr_NewGetSet=python37.PyDescr_NewGetSet + PyDescr_NewMember=python37.PyDescr_NewMember + PyDescr_NewMethod=python37.PyDescr_NewMethod + PyDictItems_Type=python37.PyDictItems_Type DATA + PyDictIterItem_Type=python37.PyDictIterItem_Type DATA + PyDictIterKey_Type=python37.PyDictIterKey_Type DATA + PyDictIterValue_Type=python37.PyDictIterValue_Type DATA + PyDictKeys_Type=python37.PyDictKeys_Type DATA + PyDictProxy_New=python37.PyDictProxy_New + PyDictProxy_Type=python37.PyDictProxy_Type DATA + PyDictValues_Type=python37.PyDictValues_Type DATA + PyDict_Clear=python37.PyDict_Clear + PyDict_Contains=python37.PyDict_Contains + PyDict_Copy=python37.PyDict_Copy + PyDict_DelItem=python37.PyDict_DelItem + PyDict_DelItemString=python37.PyDict_DelItemString + PyDict_GetItem=python37.PyDict_GetItem + PyDict_GetItemString=python37.PyDict_GetItemString + PyDict_GetItemWithError=python37.PyDict_GetItemWithError + PyDict_Items=python37.PyDict_Items + PyDict_Keys=python37.PyDict_Keys + PyDict_Merge=python37.PyDict_Merge + PyDict_MergeFromSeq2=python37.PyDict_MergeFromSeq2 + PyDict_New=python37.PyDict_New + PyDict_Next=python37.PyDict_Next + PyDict_SetItem=python37.PyDict_SetItem + PyDict_SetItemString=python37.PyDict_SetItemString + PyDict_Size=python37.PyDict_Size + PyDict_Type=python37.PyDict_Type DATA + PyDict_Update=python37.PyDict_Update + PyDict_Values=python37.PyDict_Values + PyEllipsis_Type=python37.PyEllipsis_Type DATA + PyEnum_Type=python37.PyEnum_Type DATA + PyErr_BadArgument=python37.PyErr_BadArgument + PyErr_BadInternalCall=python37.PyErr_BadInternalCall + PyErr_CheckSignals=python37.PyErr_CheckSignals + PyErr_Clear=python37.PyErr_Clear + PyErr_Display=python37.PyErr_Display + PyErr_ExceptionMatches=python37.PyErr_ExceptionMatches + PyErr_Fetch=python37.PyErr_Fetch + PyErr_Format=python37.PyErr_Format + PyErr_FormatV=python37.PyErr_FormatV ++ PyErr_GetExcInfo=python37.PyErr_GetExcInfo + PyErr_GivenExceptionMatches=python37.PyErr_GivenExceptionMatches + PyErr_NewException=python37.PyErr_NewException + PyErr_NewExceptionWithDoc=python37.PyErr_NewExceptionWithDoc + PyErr_NoMemory=python37.PyErr_NoMemory + PyErr_NormalizeException=python37.PyErr_NormalizeException + PyErr_Occurred=python37.PyErr_Occurred + PyErr_Print=python37.PyErr_Print + PyErr_PrintEx=python37.PyErr_PrintEx + PyErr_ProgramText=python37.PyErr_ProgramText ++ PyErr_ResourceWarning=python37.PyErr_ResourceWarning + PyErr_Restore=python37.PyErr_Restore ++ PyErr_SetExcInfo=python37.PyErr_SetExcInfo + PyErr_SetFromErrno=python37.PyErr_SetFromErrno + PyErr_SetFromErrnoWithFilename=python37.PyErr_SetFromErrnoWithFilename + PyErr_SetFromErrnoWithFilenameObject=python37.PyErr_SetFromErrnoWithFilenameObject ++ PyErr_SetFromErrnoWithFilenameObjects=python37.PyErr_SetFromErrnoWithFilenameObjects ++ PyErr_SetImportError=python37.PyErr_SetImportError ++ PyErr_SetImportErrorSubclass=python37.PyErr_SetImportErrorSubclass + PyErr_SetInterrupt=python37.PyErr_SetInterrupt + PyErr_SetNone=python37.PyErr_SetNone + PyErr_SetObject=python37.PyErr_SetObject + PyErr_SetString=python37.PyErr_SetString + PyErr_SyntaxLocation=python37.PyErr_SyntaxLocation ++ PyErr_SyntaxLocationEx=python37.PyErr_SyntaxLocationEx + PyErr_WarnEx=python37.PyErr_WarnEx + PyErr_WarnExplicit=python37.PyErr_WarnExplicit + PyErr_WarnFormat=python37.PyErr_WarnFormat + PyErr_WriteUnraisable=python37.PyErr_WriteUnraisable + PyEval_AcquireLock=python37.PyEval_AcquireLock + PyEval_AcquireThread=python37.PyEval_AcquireThread + PyEval_CallFunction=python37.PyEval_CallFunction + PyEval_CallMethod=python37.PyEval_CallMethod + PyEval_CallObjectWithKeywords=python37.PyEval_CallObjectWithKeywords + PyEval_EvalCode=python37.PyEval_EvalCode + PyEval_EvalCodeEx=python37.PyEval_EvalCodeEx + PyEval_EvalFrame=python37.PyEval_EvalFrame + PyEval_EvalFrameEx=python37.PyEval_EvalFrameEx + PyEval_GetBuiltins=python37.PyEval_GetBuiltins + PyEval_GetCallStats=python37.PyEval_GetCallStats + PyEval_GetFrame=python37.PyEval_GetFrame + PyEval_GetFuncDesc=python37.PyEval_GetFuncDesc + PyEval_GetFuncName=python37.PyEval_GetFuncName + PyEval_GetGlobals=python37.PyEval_GetGlobals + PyEval_GetLocals=python37.PyEval_GetLocals + PyEval_InitThreads=python37.PyEval_InitThreads + PyEval_ReInitThreads=python37.PyEval_ReInitThreads + PyEval_ReleaseLock=python37.PyEval_ReleaseLock + PyEval_ReleaseThread=python37.PyEval_ReleaseThread + PyEval_RestoreThread=python37.PyEval_RestoreThread + PyEval_SaveThread=python37.PyEval_SaveThread + PyEval_ThreadsInitialized=python37.PyEval_ThreadsInitialized + PyExc_ArithmeticError=python37.PyExc_ArithmeticError DATA + PyExc_AssertionError=python37.PyExc_AssertionError DATA + PyExc_AttributeError=python37.PyExc_AttributeError DATA + PyExc_BaseException=python37.PyExc_BaseException DATA ++ PyExc_BlockingIOError=python37.PyExc_BlockingIOError DATA ++ PyExc_BrokenPipeError=python37.PyExc_BrokenPipeError DATA + PyExc_BufferError=python37.PyExc_BufferError DATA + PyExc_BytesWarning=python37.PyExc_BytesWarning DATA ++ PyExc_ChildProcessError=python37.PyExc_ChildProcessError DATA ++ PyExc_ConnectionAbortedError=python37.PyExc_ConnectionAbortedError DATA ++ PyExc_ConnectionError=python37.PyExc_ConnectionError DATA ++ PyExc_ConnectionRefusedError=python37.PyExc_ConnectionRefusedError DATA ++ PyExc_ConnectionResetError=python37.PyExc_ConnectionResetError DATA + PyExc_DeprecationWarning=python37.PyExc_DeprecationWarning DATA + PyExc_EOFError=python37.PyExc_EOFError DATA + PyExc_EnvironmentError=python37.PyExc_EnvironmentError DATA + PyExc_Exception=python37.PyExc_Exception DATA ++ PyExc_FileExistsError=python37.PyExc_FileExistsError DATA ++ PyExc_FileNotFoundError=python37.PyExc_FileNotFoundError DATA + PyExc_FloatingPointError=python37.PyExc_FloatingPointError DATA + PyExc_FutureWarning=python37.PyExc_FutureWarning DATA + PyExc_GeneratorExit=python37.PyExc_GeneratorExit DATA + PyExc_IOError=python37.PyExc_IOError DATA + PyExc_ImportError=python37.PyExc_ImportError DATA + PyExc_ImportWarning=python37.PyExc_ImportWarning DATA + PyExc_IndentationError=python37.PyExc_IndentationError DATA + PyExc_IndexError=python37.PyExc_IndexError DATA ++ PyExc_InterruptedError=python37.PyExc_InterruptedError DATA ++ PyExc_IsADirectoryError=python37.PyExc_IsADirectoryError DATA + PyExc_KeyError=python37.PyExc_KeyError DATA + PyExc_KeyboardInterrupt=python37.PyExc_KeyboardInterrupt DATA + PyExc_LookupError=python37.PyExc_LookupError DATA + PyExc_MemoryError=python37.PyExc_MemoryError DATA ++ PyExc_ModuleNotFoundError=python37.PyExc_ModuleNotFoundError DATA + PyExc_NameError=python37.PyExc_NameError DATA ++ PyExc_NotADirectoryError=python37.PyExc_NotADirectoryError DATA + PyExc_NotImplementedError=python37.PyExc_NotImplementedError DATA + PyExc_OSError=python37.PyExc_OSError DATA + PyExc_OverflowError=python37.PyExc_OverflowError DATA + PyExc_PendingDeprecationWarning=python37.PyExc_PendingDeprecationWarning DATA ++ PyExc_PermissionError=python37.PyExc_PermissionError DATA ++ PyExc_ProcessLookupError=python37.PyExc_ProcessLookupError DATA ++ PyExc_RecursionError=python37.PyExc_RecursionError DATA + PyExc_RecursionErrorInst=python37.PyExc_RecursionErrorInst DATA + PyExc_ReferenceError=python37.PyExc_ReferenceError DATA ++ PyExc_ResourceWarning=python37.PyExc_ResourceWarning DATA + PyExc_RuntimeError=python37.PyExc_RuntimeError DATA + PyExc_RuntimeWarning=python37.PyExc_RuntimeWarning DATA ++ PyExc_StopAsyncIteration=python37.PyExc_StopAsyncIteration DATA + PyExc_StopIteration=python37.PyExc_StopIteration DATA + PyExc_SyntaxError=python37.PyExc_SyntaxError DATA + PyExc_SyntaxWarning=python37.PyExc_SyntaxWarning DATA + PyExc_SystemError=python37.PyExc_SystemError DATA + PyExc_SystemExit=python37.PyExc_SystemExit DATA + PyExc_TabError=python37.PyExc_TabError DATA ++ PyExc_TimeoutError=python37.PyExc_TimeoutError DATA + PyExc_TypeError=python37.PyExc_TypeError DATA + PyExc_UnboundLocalError=python37.PyExc_UnboundLocalError DATA + PyExc_UnicodeDecodeError=python37.PyExc_UnicodeDecodeError DATA + PyExc_UnicodeEncodeError=python37.PyExc_UnicodeEncodeError DATA + PyExc_UnicodeError=python37.PyExc_UnicodeError DATA + PyExc_UnicodeTranslateError=python37.PyExc_UnicodeTranslateError DATA + PyExc_UnicodeWarning=python37.PyExc_UnicodeWarning DATA + PyExc_UserWarning=python37.PyExc_UserWarning DATA + PyExc_ValueError=python37.PyExc_ValueError DATA + PyExc_Warning=python37.PyExc_Warning DATA + PyExc_ZeroDivisionError=python37.PyExc_ZeroDivisionError DATA + PyException_GetCause=python37.PyException_GetCause + PyException_GetContext=python37.PyException_GetContext + PyException_GetTraceback=python37.PyException_GetTraceback + PyException_SetCause=python37.PyException_SetCause + PyException_SetContext=python37.PyException_SetContext + PyException_SetTraceback=python37.PyException_SetTraceback + PyFile_FromFd=python37.PyFile_FromFd + PyFile_GetLine=python37.PyFile_GetLine + PyFile_WriteObject=python37.PyFile_WriteObject + PyFile_WriteString=python37.PyFile_WriteString + PyFilter_Type=python37.PyFilter_Type DATA + PyFloat_AsDouble=python37.PyFloat_AsDouble + PyFloat_FromDouble=python37.PyFloat_FromDouble + PyFloat_FromString=python37.PyFloat_FromString + PyFloat_GetInfo=python37.PyFloat_GetInfo + PyFloat_GetMax=python37.PyFloat_GetMax + PyFloat_GetMin=python37.PyFloat_GetMin + PyFloat_Type=python37.PyFloat_Type DATA + PyFrozenSet_New=python37.PyFrozenSet_New + PyFrozenSet_Type=python37.PyFrozenSet_Type DATA + PyGC_Collect=python37.PyGC_Collect + PyGILState_Ensure=python37.PyGILState_Ensure + PyGILState_GetThisThreadState=python37.PyGILState_GetThisThreadState + PyGILState_Release=python37.PyGILState_Release + PyGetSetDescr_Type=python37.PyGetSetDescr_Type DATA + PyImport_AddModule=python37.PyImport_AddModule ++ PyImport_AddModuleObject=python37.PyImport_AddModuleObject + PyImport_AppendInittab=python37.PyImport_AppendInittab + PyImport_Cleanup=python37.PyImport_Cleanup + PyImport_ExecCodeModule=python37.PyImport_ExecCodeModule + PyImport_ExecCodeModuleEx=python37.PyImport_ExecCodeModuleEx ++ PyImport_ExecCodeModuleObject=python37.PyImport_ExecCodeModuleObject + PyImport_ExecCodeModuleWithPathnames=python37.PyImport_ExecCodeModuleWithPathnames + PyImport_GetImporter=python37.PyImport_GetImporter + PyImport_GetMagicNumber=python37.PyImport_GetMagicNumber + PyImport_GetMagicTag=python37.PyImport_GetMagicTag + PyImport_GetModuleDict=python37.PyImport_GetModuleDict + PyImport_Import=python37.PyImport_Import + PyImport_ImportFrozenModule=python37.PyImport_ImportFrozenModule ++ PyImport_ImportFrozenModuleObject=python37.PyImport_ImportFrozenModuleObject + PyImport_ImportModule=python37.PyImport_ImportModule + PyImport_ImportModuleLevel=python37.PyImport_ImportModuleLevel ++ PyImport_ImportModuleLevelObject=python37.PyImport_ImportModuleLevelObject + PyImport_ImportModuleNoBlock=python37.PyImport_ImportModuleNoBlock + PyImport_ReloadModule=python37.PyImport_ReloadModule + PyInterpreterState_Clear=python37.PyInterpreterState_Clear + PyInterpreterState_Delete=python37.PyInterpreterState_Delete + PyInterpreterState_New=python37.PyInterpreterState_New + PyIter_Next=python37.PyIter_Next + PyListIter_Type=python37.PyListIter_Type DATA + PyListRevIter_Type=python37.PyListRevIter_Type DATA + PyList_Append=python37.PyList_Append + PyList_AsTuple=python37.PyList_AsTuple + PyList_GetItem=python37.PyList_GetItem + PyList_GetSlice=python37.PyList_GetSlice + PyList_Insert=python37.PyList_Insert + PyList_New=python37.PyList_New + PyList_Reverse=python37.PyList_Reverse + PyList_SetItem=python37.PyList_SetItem + PyList_SetSlice=python37.PyList_SetSlice + PyList_Size=python37.PyList_Size + PyList_Sort=python37.PyList_Sort + PyList_Type=python37.PyList_Type DATA + PyLongRangeIter_Type=python37.PyLongRangeIter_Type DATA + PyLong_AsDouble=python37.PyLong_AsDouble + PyLong_AsLong=python37.PyLong_AsLong + PyLong_AsLongAndOverflow=python37.PyLong_AsLongAndOverflow + PyLong_AsLongLong=python37.PyLong_AsLongLong + PyLong_AsLongLongAndOverflow=python37.PyLong_AsLongLongAndOverflow + PyLong_AsSize_t=python37.PyLong_AsSize_t + PyLong_AsSsize_t=python37.PyLong_AsSsize_t + PyLong_AsUnsignedLong=python37.PyLong_AsUnsignedLong + PyLong_AsUnsignedLongLong=python37.PyLong_AsUnsignedLongLong + PyLong_AsUnsignedLongLongMask=python37.PyLong_AsUnsignedLongLongMask + PyLong_AsUnsignedLongMask=python37.PyLong_AsUnsignedLongMask + PyLong_AsVoidPtr=python37.PyLong_AsVoidPtr + PyLong_FromDouble=python37.PyLong_FromDouble + PyLong_FromLong=python37.PyLong_FromLong + PyLong_FromLongLong=python37.PyLong_FromLongLong + PyLong_FromSize_t=python37.PyLong_FromSize_t + PyLong_FromSsize_t=python37.PyLong_FromSsize_t + PyLong_FromString=python37.PyLong_FromString + PyLong_FromUnsignedLong=python37.PyLong_FromUnsignedLong + PyLong_FromUnsignedLongLong=python37.PyLong_FromUnsignedLongLong + PyLong_FromVoidPtr=python37.PyLong_FromVoidPtr + PyLong_GetInfo=python37.PyLong_GetInfo + PyLong_Type=python37.PyLong_Type DATA + PyMap_Type=python37.PyMap_Type DATA + PyMapping_Check=python37.PyMapping_Check + PyMapping_GetItemString=python37.PyMapping_GetItemString + PyMapping_HasKey=python37.PyMapping_HasKey + PyMapping_HasKeyString=python37.PyMapping_HasKeyString + PyMapping_Items=python37.PyMapping_Items + PyMapping_Keys=python37.PyMapping_Keys + PyMapping_Length=python37.PyMapping_Length + PyMapping_SetItemString=python37.PyMapping_SetItemString + PyMapping_Size=python37.PyMapping_Size + PyMapping_Values=python37.PyMapping_Values ++ PyMem_Calloc=python37.PyMem_Calloc + PyMem_Free=python37.PyMem_Free + PyMem_Malloc=python37.PyMem_Malloc + PyMem_Realloc=python37.PyMem_Realloc + PyMemberDescr_Type=python37.PyMemberDescr_Type DATA ++ PyMemoryView_FromMemory=python37.PyMemoryView_FromMemory + PyMemoryView_FromObject=python37.PyMemoryView_FromObject + PyMemoryView_GetContiguous=python37.PyMemoryView_GetContiguous + PyMemoryView_Type=python37.PyMemoryView_Type DATA + PyMethodDescr_Type=python37.PyMethodDescr_Type DATA + PyModuleDef_Init=python37.PyModuleDef_Init + PyModuleDef_Type=python37.PyModuleDef_Type DATA ++ PyModule_AddFunctions=python37.PyModule_AddFunctions + PyModule_AddIntConstant=python37.PyModule_AddIntConstant + PyModule_AddObject=python37.PyModule_AddObject + PyModule_AddStringConstant=python37.PyModule_AddStringConstant + PyModule_Create2=python37.PyModule_Create2 ++ PyModule_ExecDef=python37.PyModule_ExecDef ++ PyModule_FromDefAndSpec2=python37.PyModule_FromDefAndSpec2 + PyModule_GetDef=python37.PyModule_GetDef + PyModule_GetDict=python37.PyModule_GetDict + PyModule_GetFilename=python37.PyModule_GetFilename + PyModule_GetFilenameObject=python37.PyModule_GetFilenameObject + PyModule_GetName=python37.PyModule_GetName ++ PyModule_GetNameObject=python37.PyModule_GetNameObject + PyModule_GetState=python37.PyModule_GetState + PyModule_New=python37.PyModule_New ++ PyModule_NewObject=python37.PyModule_NewObject ++ PyModule_SetDocString=python37.PyModule_SetDocString + PyModule_Type=python37.PyModule_Type DATA + PyNullImporter_Type=python37.PyNullImporter_Type DATA + PyNumber_Absolute=python37.PyNumber_Absolute + PyNumber_Add=python37.PyNumber_Add + PyNumber_And=python37.PyNumber_And + PyNumber_AsSsize_t=python37.PyNumber_AsSsize_t + PyNumber_Check=python37.PyNumber_Check + PyNumber_Divmod=python37.PyNumber_Divmod + PyNumber_Float=python37.PyNumber_Float + PyNumber_FloorDivide=python37.PyNumber_FloorDivide + PyNumber_InPlaceAdd=python37.PyNumber_InPlaceAdd + PyNumber_InPlaceAnd=python37.PyNumber_InPlaceAnd + PyNumber_InPlaceFloorDivide=python37.PyNumber_InPlaceFloorDivide + PyNumber_InPlaceLshift=python37.PyNumber_InPlaceLshift ++ PyNumber_InPlaceMatrixMultiply=python37.PyNumber_InPlaceMatrixMultiply + PyNumber_InPlaceMultiply=python37.PyNumber_InPlaceMultiply + PyNumber_InPlaceOr=python37.PyNumber_InPlaceOr + PyNumber_InPlacePower=python37.PyNumber_InPlacePower + PyNumber_InPlaceRemainder=python37.PyNumber_InPlaceRemainder + PyNumber_InPlaceRshift=python37.PyNumber_InPlaceRshift + PyNumber_InPlaceSubtract=python37.PyNumber_InPlaceSubtract + PyNumber_InPlaceTrueDivide=python37.PyNumber_InPlaceTrueDivide + PyNumber_InPlaceXor=python37.PyNumber_InPlaceXor + PyNumber_Index=python37.PyNumber_Index + PyNumber_Invert=python37.PyNumber_Invert + PyNumber_Long=python37.PyNumber_Long + PyNumber_Lshift=python37.PyNumber_Lshift ++ PyNumber_MatrixMultiply=python37.PyNumber_MatrixMultiply + PyNumber_Multiply=python37.PyNumber_Multiply + PyNumber_Negative=python37.PyNumber_Negative + PyNumber_Or=python37.PyNumber_Or + PyNumber_Positive=python37.PyNumber_Positive + PyNumber_Power=python37.PyNumber_Power + PyNumber_Remainder=python37.PyNumber_Remainder + PyNumber_Rshift=python37.PyNumber_Rshift + PyNumber_Subtract=python37.PyNumber_Subtract + PyNumber_ToBase=python37.PyNumber_ToBase + PyNumber_TrueDivide=python37.PyNumber_TrueDivide + PyNumber_Xor=python37.PyNumber_Xor + PyODictItems_Type=python37.PyODictItems_Type DATA + PyODictIter_Type=python37.PyODictIter_Type DATA + PyODictKeys_Type=python37.PyODictKeys_Type DATA + PyODictValues_Type=python37.PyODictValues_Type DATA + PyODict_DelItem=python37.PyODict_DelItem + PyODict_New=python37.PyODict_New + PyODict_SetItem=python37.PyODict_SetItem + PyODict_Type=python37.PyODict_Type DATA + PyOS_AfterFork=python37.PyOS_AfterFork ++ PyOS_FSPath=python37.PyOS_FSPath + PyOS_InitInterrupts=python37.PyOS_InitInterrupts + PyOS_InputHook=python37.PyOS_InputHook DATA + PyOS_InterruptOccurred=python37.PyOS_InterruptOccurred + PyOS_ReadlineFunctionPointer=python37.PyOS_ReadlineFunctionPointer DATA + PyOS_double_to_string=python37.PyOS_double_to_string + PyOS_getsig=python37.PyOS_getsig + PyOS_mystricmp=python37.PyOS_mystricmp + PyOS_mystrnicmp=python37.PyOS_mystrnicmp + PyOS_setsig=python37.PyOS_setsig + PyOS_snprintf=python37.PyOS_snprintf + PyOS_string_to_double=python37.PyOS_string_to_double + PyOS_strtol=python37.PyOS_strtol + PyOS_strtoul=python37.PyOS_strtoul + PyOS_vsnprintf=python37.PyOS_vsnprintf + PyObject_ASCII=python37.PyObject_ASCII + PyObject_AsCharBuffer=python37.PyObject_AsCharBuffer + PyObject_AsFileDescriptor=python37.PyObject_AsFileDescriptor + PyObject_AsReadBuffer=python37.PyObject_AsReadBuffer + PyObject_AsWriteBuffer=python37.PyObject_AsWriteBuffer + PyObject_Bytes=python37.PyObject_Bytes + PyObject_Call=python37.PyObject_Call + PyObject_CallFunction=python37.PyObject_CallFunction + PyObject_CallFunctionObjArgs=python37.PyObject_CallFunctionObjArgs + PyObject_CallMethod=python37.PyObject_CallMethod + PyObject_CallMethodObjArgs=python37.PyObject_CallMethodObjArgs + PyObject_CallObject=python37.PyObject_CallObject ++ PyObject_Calloc=python37.PyObject_Calloc + PyObject_CheckReadBuffer=python37.PyObject_CheckReadBuffer + PyObject_ClearWeakRefs=python37.PyObject_ClearWeakRefs + PyObject_DelItem=python37.PyObject_DelItem + PyObject_DelItemString=python37.PyObject_DelItemString + PyObject_Dir=python37.PyObject_Dir + PyObject_Format=python37.PyObject_Format + PyObject_Free=python37.PyObject_Free + PyObject_GC_Del=python37.PyObject_GC_Del + PyObject_GC_Track=python37.PyObject_GC_Track + PyObject_GC_UnTrack=python37.PyObject_GC_UnTrack + PyObject_GenericGetAttr=python37.PyObject_GenericGetAttr + PyObject_GenericSetAttr=python37.PyObject_GenericSetAttr ++ PyObject_GenericSetDict=python37.PyObject_GenericSetDict + PyObject_GetAttr=python37.PyObject_GetAttr + PyObject_GetAttrString=python37.PyObject_GetAttrString + PyObject_GetItem=python37.PyObject_GetItem + PyObject_GetIter=python37.PyObject_GetIter + PyObject_HasAttr=python37.PyObject_HasAttr + PyObject_HasAttrString=python37.PyObject_HasAttrString + PyObject_Hash=python37.PyObject_Hash + PyObject_HashNotImplemented=python37.PyObject_HashNotImplemented + PyObject_Init=python37.PyObject_Init + PyObject_InitVar=python37.PyObject_InitVar + PyObject_IsInstance=python37.PyObject_IsInstance + PyObject_IsSubclass=python37.PyObject_IsSubclass + PyObject_IsTrue=python37.PyObject_IsTrue + PyObject_Length=python37.PyObject_Length + PyObject_Malloc=python37.PyObject_Malloc + PyObject_Not=python37.PyObject_Not + PyObject_Realloc=python37.PyObject_Realloc + PyObject_Repr=python37.PyObject_Repr + PyObject_RichCompare=python37.PyObject_RichCompare + PyObject_RichCompareBool=python37.PyObject_RichCompareBool + PyObject_SelfIter=python37.PyObject_SelfIter + PyObject_SetAttr=python37.PyObject_SetAttr + PyObject_SetAttrString=python37.PyObject_SetAttrString + PyObject_SetItem=python37.PyObject_SetItem + PyObject_Size=python37.PyObject_Size + PyObject_Str=python37.PyObject_Str + PyObject_Type=python37.PyObject_Type + PyParser_SimpleParseFileFlags=python37.PyParser_SimpleParseFileFlags + PyParser_SimpleParseStringFlags=python37.PyParser_SimpleParseStringFlags ++ PyParser_SimpleParseStringFlagsFilename=python37.PyParser_SimpleParseStringFlagsFilename + PyProperty_Type=python37.PyProperty_Type DATA + PyRangeIter_Type=python37.PyRangeIter_Type DATA + PyRange_Type=python37.PyRange_Type DATA + PyReversed_Type=python37.PyReversed_Type DATA + PySeqIter_New=python37.PySeqIter_New + PySeqIter_Type=python37.PySeqIter_Type DATA + PySequence_Check=python37.PySequence_Check + PySequence_Concat=python37.PySequence_Concat + PySequence_Contains=python37.PySequence_Contains + PySequence_Count=python37.PySequence_Count + PySequence_DelItem=python37.PySequence_DelItem + PySequence_DelSlice=python37.PySequence_DelSlice + PySequence_Fast=python37.PySequence_Fast + PySequence_GetItem=python37.PySequence_GetItem + PySequence_GetSlice=python37.PySequence_GetSlice + PySequence_In=python37.PySequence_In + PySequence_InPlaceConcat=python37.PySequence_InPlaceConcat + PySequence_InPlaceRepeat=python37.PySequence_InPlaceRepeat + PySequence_Index=python37.PySequence_Index + PySequence_Length=python37.PySequence_Length + PySequence_List=python37.PySequence_List + PySequence_Repeat=python37.PySequence_Repeat + PySequence_SetItem=python37.PySequence_SetItem + PySequence_SetSlice=python37.PySequence_SetSlice + PySequence_Size=python37.PySequence_Size + PySequence_Tuple=python37.PySequence_Tuple + PySetIter_Type=python37.PySetIter_Type DATA + PySet_Add=python37.PySet_Add + PySet_Clear=python37.PySet_Clear + PySet_Contains=python37.PySet_Contains + PySet_Discard=python37.PySet_Discard + PySet_New=python37.PySet_New + PySet_Pop=python37.PySet_Pop + PySet_Size=python37.PySet_Size + PySet_Type=python37.PySet_Type DATA + PySlice_GetIndices=python37.PySlice_GetIndices + PySlice_GetIndicesEx=python37.PySlice_GetIndicesEx + PySlice_New=python37.PySlice_New + PySlice_Type=python37.PySlice_Type DATA + PySortWrapper_Type=python37.PySortWrapper_Type DATA + PyState_AddModule=python37.PyState_AddModule + PyState_FindModule=python37.PyState_FindModule + PyState_RemoveModule=python37.PyState_RemoveModule + PyStructSequence_GetItem=python37.PyStructSequence_GetItem + PyStructSequence_New=python37.PyStructSequence_New + PyStructSequence_NewType=python37.PyStructSequence_NewType + PyStructSequence_SetItem=python37.PyStructSequence_SetItem + PySuper_Type=python37.PySuper_Type DATA + PySys_AddWarnOption=python37.PySys_AddWarnOption + PySys_AddWarnOptionUnicode=python37.PySys_AddWarnOptionUnicode ++ PySys_AddXOption=python37.PySys_AddXOption + PySys_FormatStderr=python37.PySys_FormatStderr + PySys_FormatStdout=python37.PySys_FormatStdout + PySys_GetObject=python37.PySys_GetObject ++ PySys_GetXOptions=python37.PySys_GetXOptions + PySys_HasWarnOptions=python37.PySys_HasWarnOptions + PySys_ResetWarnOptions=python37.PySys_ResetWarnOptions + PySys_SetArgv=python37.PySys_SetArgv + PySys_SetArgvEx=python37.PySys_SetArgvEx + PySys_SetObject=python37.PySys_SetObject + PySys_SetPath=python37.PySys_SetPath + PySys_WriteStderr=python37.PySys_WriteStderr + PySys_WriteStdout=python37.PySys_WriteStdout + PyThreadState_Clear=python37.PyThreadState_Clear + PyThreadState_Delete=python37.PyThreadState_Delete + PyThreadState_DeleteCurrent=python37.PyThreadState_DeleteCurrent + PyThreadState_Get=python37.PyThreadState_Get + PyThreadState_GetDict=python37.PyThreadState_GetDict + PyThreadState_New=python37.PyThreadState_New + PyThreadState_SetAsyncExc=python37.PyThreadState_SetAsyncExc + PyThreadState_Swap=python37.PyThreadState_Swap + PyTraceBack_Here=python37.PyTraceBack_Here + PyTraceBack_Print=python37.PyTraceBack_Print + PyTraceBack_Type=python37.PyTraceBack_Type DATA + PyTupleIter_Type=python37.PyTupleIter_Type DATA + PyTuple_ClearFreeList=python37.PyTuple_ClearFreeList + PyTuple_GetItem=python37.PyTuple_GetItem + PyTuple_GetSlice=python37.PyTuple_GetSlice + PyTuple_New=python37.PyTuple_New + PyTuple_Pack=python37.PyTuple_Pack + PyTuple_SetItem=python37.PyTuple_SetItem + PyTuple_Size=python37.PyTuple_Size + PyTuple_Type=python37.PyTuple_Type DATA + PyType_ClearCache=python37.PyType_ClearCache + PyType_FromSpec=python37.PyType_FromSpec + PyType_FromSpecWithBases=python37.PyType_FromSpecWithBases + PyType_GenericAlloc=python37.PyType_GenericAlloc + PyType_GenericNew=python37.PyType_GenericNew + PyType_GetFlags=python37.PyType_GetFlags + PyType_GetSlot=python37.PyType_GetSlot + PyType_IsSubtype=python37.PyType_IsSubtype + PyType_Modified=python37.PyType_Modified + PyType_Ready=python37.PyType_Ready + PyType_Type=python37.PyType_Type DATA + PyUnicodeDecodeError_Create=python37.PyUnicodeDecodeError_Create + PyUnicodeDecodeError_GetEncoding=python37.PyUnicodeDecodeError_GetEncoding + PyUnicodeDecodeError_GetEnd=python37.PyUnicodeDecodeError_GetEnd + PyUnicodeDecodeError_GetObject=python37.PyUnicodeDecodeError_GetObject + PyUnicodeDecodeError_GetReason=python37.PyUnicodeDecodeError_GetReason + PyUnicodeDecodeError_GetStart=python37.PyUnicodeDecodeError_GetStart + PyUnicodeDecodeError_SetEnd=python37.PyUnicodeDecodeError_SetEnd + PyUnicodeDecodeError_SetReason=python37.PyUnicodeDecodeError_SetReason + PyUnicodeDecodeError_SetStart=python37.PyUnicodeDecodeError_SetStart + PyUnicodeEncodeError_GetEncoding=python37.PyUnicodeEncodeError_GetEncoding + PyUnicodeEncodeError_GetEnd=python37.PyUnicodeEncodeError_GetEnd + PyUnicodeEncodeError_GetObject=python37.PyUnicodeEncodeError_GetObject + PyUnicodeEncodeError_GetReason=python37.PyUnicodeEncodeError_GetReason + PyUnicodeEncodeError_GetStart=python37.PyUnicodeEncodeError_GetStart + PyUnicodeEncodeError_SetEnd=python37.PyUnicodeEncodeError_SetEnd + PyUnicodeEncodeError_SetReason=python37.PyUnicodeEncodeError_SetReason + PyUnicodeEncodeError_SetStart=python37.PyUnicodeEncodeError_SetStart + PyUnicodeIter_Type=python37.PyUnicodeIter_Type DATA + PyUnicodeTranslateError_GetEnd=python37.PyUnicodeTranslateError_GetEnd + PyUnicodeTranslateError_GetObject=python37.PyUnicodeTranslateError_GetObject + PyUnicodeTranslateError_GetReason=python37.PyUnicodeTranslateError_GetReason + PyUnicodeTranslateError_GetStart=python37.PyUnicodeTranslateError_GetStart + PyUnicodeTranslateError_SetEnd=python37.PyUnicodeTranslateError_SetEnd + PyUnicodeTranslateError_SetReason=python37.PyUnicodeTranslateError_SetReason + PyUnicodeTranslateError_SetStart=python37.PyUnicodeTranslateError_SetStart + PyUnicode_Append=python37.PyUnicode_Append + PyUnicode_AppendAndDel=python37.PyUnicode_AppendAndDel + PyUnicode_AsASCIIString=python37.PyUnicode_AsASCIIString + PyUnicode_AsCharmapString=python37.PyUnicode_AsCharmapString + PyUnicode_AsDecodedObject=python37.PyUnicode_AsDecodedObject + PyUnicode_AsDecodedUnicode=python37.PyUnicode_AsDecodedUnicode + PyUnicode_AsEncodedObject=python37.PyUnicode_AsEncodedObject + PyUnicode_AsEncodedString=python37.PyUnicode_AsEncodedString + PyUnicode_AsEncodedUnicode=python37.PyUnicode_AsEncodedUnicode + PyUnicode_AsLatin1String=python37.PyUnicode_AsLatin1String + PyUnicode_AsRawUnicodeEscapeString=python37.PyUnicode_AsRawUnicodeEscapeString ++ PyUnicode_AsUCS4=python37.PyUnicode_AsUCS4 ++ PyUnicode_AsUCS4Copy=python37.PyUnicode_AsUCS4Copy + PyUnicode_AsUTF16String=python37.PyUnicode_AsUTF16String + PyUnicode_AsUTF32String=python37.PyUnicode_AsUTF32String + PyUnicode_AsUTF8String=python37.PyUnicode_AsUTF8String + PyUnicode_AsUnicodeEscapeString=python37.PyUnicode_AsUnicodeEscapeString + PyUnicode_AsWideChar=python37.PyUnicode_AsWideChar ++ PyUnicode_AsWideCharString=python37.PyUnicode_AsWideCharString + PyUnicode_BuildEncodingMap=python37.PyUnicode_BuildEncodingMap + PyUnicode_ClearFreeList=python37.PyUnicode_ClearFreeList + PyUnicode_Compare=python37.PyUnicode_Compare + PyUnicode_CompareWithASCIIString=python37.PyUnicode_CompareWithASCIIString + PyUnicode_Concat=python37.PyUnicode_Concat + PyUnicode_Contains=python37.PyUnicode_Contains + PyUnicode_Count=python37.PyUnicode_Count + PyUnicode_Decode=python37.PyUnicode_Decode + PyUnicode_DecodeASCII=python37.PyUnicode_DecodeASCII + PyUnicode_DecodeCharmap=python37.PyUnicode_DecodeCharmap + PyUnicode_DecodeFSDefault=python37.PyUnicode_DecodeFSDefault + PyUnicode_DecodeFSDefaultAndSize=python37.PyUnicode_DecodeFSDefaultAndSize + PyUnicode_DecodeLatin1=python37.PyUnicode_DecodeLatin1 ++ PyUnicode_DecodeLocale=python37.PyUnicode_DecodeLocale ++ PyUnicode_DecodeLocaleAndSize=python37.PyUnicode_DecodeLocaleAndSize + PyUnicode_DecodeRawUnicodeEscape=python37.PyUnicode_DecodeRawUnicodeEscape + PyUnicode_DecodeUTF16=python37.PyUnicode_DecodeUTF16 + PyUnicode_DecodeUTF16Stateful=python37.PyUnicode_DecodeUTF16Stateful + PyUnicode_DecodeUTF32=python37.PyUnicode_DecodeUTF32 + PyUnicode_DecodeUTF32Stateful=python37.PyUnicode_DecodeUTF32Stateful + PyUnicode_DecodeUTF7=python37.PyUnicode_DecodeUTF7 + PyUnicode_DecodeUTF7Stateful=python37.PyUnicode_DecodeUTF7Stateful + PyUnicode_DecodeUTF8=python37.PyUnicode_DecodeUTF8 + PyUnicode_DecodeUTF8Stateful=python37.PyUnicode_DecodeUTF8Stateful + PyUnicode_DecodeUnicodeEscape=python37.PyUnicode_DecodeUnicodeEscape + PyUnicode_EncodeFSDefault=python37.PyUnicode_EncodeFSDefault ++ PyUnicode_EncodeLocale=python37.PyUnicode_EncodeLocale + PyUnicode_FSConverter=python37.PyUnicode_FSConverter + PyUnicode_FSDecoder=python37.PyUnicode_FSDecoder + PyUnicode_Find=python37.PyUnicode_Find ++ PyUnicode_FindChar=python37.PyUnicode_FindChar + PyUnicode_Format=python37.PyUnicode_Format + PyUnicode_FromEncodedObject=python37.PyUnicode_FromEncodedObject + PyUnicode_FromFormat=python37.PyUnicode_FromFormat + PyUnicode_FromFormatV=python37.PyUnicode_FromFormatV + PyUnicode_FromObject=python37.PyUnicode_FromObject + PyUnicode_FromOrdinal=python37.PyUnicode_FromOrdinal + PyUnicode_FromString=python37.PyUnicode_FromString + PyUnicode_FromStringAndSize=python37.PyUnicode_FromStringAndSize + PyUnicode_FromWideChar=python37.PyUnicode_FromWideChar + PyUnicode_GetDefaultEncoding=python37.PyUnicode_GetDefaultEncoding ++ PyUnicode_GetLength=python37.PyUnicode_GetLength + PyUnicode_GetSize=python37.PyUnicode_GetSize + PyUnicode_InternFromString=python37.PyUnicode_InternFromString + PyUnicode_InternImmortal=python37.PyUnicode_InternImmortal + PyUnicode_InternInPlace=python37.PyUnicode_InternInPlace + PyUnicode_IsIdentifier=python37.PyUnicode_IsIdentifier + PyUnicode_Join=python37.PyUnicode_Join + PyUnicode_Partition=python37.PyUnicode_Partition + PyUnicode_RPartition=python37.PyUnicode_RPartition + PyUnicode_RSplit=python37.PyUnicode_RSplit ++ PyUnicode_ReadChar=python37.PyUnicode_ReadChar + PyUnicode_Replace=python37.PyUnicode_Replace + PyUnicode_Resize=python37.PyUnicode_Resize + PyUnicode_RichCompare=python37.PyUnicode_RichCompare + PyUnicode_Split=python37.PyUnicode_Split + PyUnicode_Splitlines=python37.PyUnicode_Splitlines ++ PyUnicode_Substring=python37.PyUnicode_Substring + PyUnicode_Tailmatch=python37.PyUnicode_Tailmatch + PyUnicode_Translate=python37.PyUnicode_Translate + PyUnicode_Type=python37.PyUnicode_Type DATA ++ PyUnicode_WriteChar=python37.PyUnicode_WriteChar + PyWeakref_GetObject=python37.PyWeakref_GetObject + PyWeakref_NewProxy=python37.PyWeakref_NewProxy + PyWeakref_NewRef=python37.PyWeakref_NewRef + PyWrapperDescr_Type=python37.PyWrapperDescr_Type DATA + PyWrapper_New=python37.PyWrapper_New + PyZip_Type=python37.PyZip_Type DATA + Py_AddPendingCall=python37.Py_AddPendingCall + Py_AtExit=python37.Py_AtExit + Py_BuildValue=python37.Py_BuildValue + Py_CompileString=python37.Py_CompileString + Py_DecRef=python37.Py_DecRef ++ Py_DecodeLocale=python37.Py_DecodeLocale ++ Py_EncodeLocale=python37.Py_EncodeLocale + Py_EndInterpreter=python37.Py_EndInterpreter + Py_Exit=python37.Py_Exit + Py_FatalError=python37.Py_FatalError ++ Py_FileSystemDefaultEncodeErrors=python37.Py_FileSystemDefaultEncodeErrors DATA + Py_FileSystemDefaultEncoding=python37.Py_FileSystemDefaultEncoding DATA + Py_Finalize=python37.Py_Finalize + Py_FinalizeEx=python37.Py_FinalizeEx + Py_GetBuildInfo=python37.Py_GetBuildInfo + Py_GetCompiler=python37.Py_GetCompiler + Py_GetCopyright=python37.Py_GetCopyright + Py_GetExecPrefix=python37.Py_GetExecPrefix + Py_GetPath=python37.Py_GetPath + Py_GetPlatform=python37.Py_GetPlatform + Py_GetPrefix=python37.Py_GetPrefix + Py_GetProgramFullPath=python37.Py_GetProgramFullPath + Py_GetProgramName=python37.Py_GetProgramName + Py_GetPythonHome=python37.Py_GetPythonHome + Py_GetRecursionLimit=python37.Py_GetRecursionLimit + Py_GetVersion=python37.Py_GetVersion + Py_HasFileSystemDefaultEncoding=python37.Py_HasFileSystemDefaultEncoding DATA + Py_IncRef=python37.Py_IncRef + Py_Initialize=python37.Py_Initialize + Py_InitializeEx=python37.Py_InitializeEx + Py_IsInitialized=python37.Py_IsInitialized + Py_Main=python37.Py_Main + Py_MakePendingCalls=python37.Py_MakePendingCalls + Py_NewInterpreter=python37.Py_NewInterpreter + Py_ReprEnter=python37.Py_ReprEnter + Py_ReprLeave=python37.Py_ReprLeave ++ Py_SetPath=python37.Py_SetPath + Py_SetProgramName=python37.Py_SetProgramName + Py_SetPythonHome=python37.Py_SetPythonHome + Py_SetRecursionLimit=python37.Py_SetRecursionLimit + Py_SymtableString=python37.Py_SymtableString + Py_VaBuildValue=python37.Py_VaBuildValue + _PyArg_ParseTupleAndKeywords_SizeT=python37._PyArg_ParseTupleAndKeywords_SizeT + _PyArg_ParseTuple_SizeT=python37._PyArg_ParseTuple_SizeT + _PyArg_Parse_SizeT=python37._PyArg_Parse_SizeT + _PyArg_VaParseTupleAndKeywords_SizeT=python37._PyArg_VaParseTupleAndKeywords_SizeT + _PyArg_VaParse_SizeT=python37._PyArg_VaParse_SizeT + _PyErr_BadInternalCall=python37._PyErr_BadInternalCall + _PyObject_CallFunction_SizeT=python37._PyObject_CallFunction_SizeT + _PyObject_CallMethod_SizeT=python37._PyObject_CallMethod_SizeT + _PyObject_GC_Malloc=python37._PyObject_GC_Malloc + _PyObject_GC_New=python37._PyObject_GC_New + _PyObject_GC_NewVar=python37._PyObject_GC_NewVar + _PyObject_GC_Resize=python37._PyObject_GC_Resize + _PyObject_New=python37._PyObject_New + _PyObject_NewVar=python37._PyObject_NewVar + _PyState_AddModule=python37._PyState_AddModule + _PyThreadState_Init=python37._PyThreadState_Init + _PyThreadState_Prealloc=python37._PyThreadState_Prealloc + _PyTrash_delete_later=python37._PyTrash_delete_later DATA + _PyTrash_delete_nesting=python37._PyTrash_delete_nesting DATA + _PyTrash_deposit_object=python37._PyTrash_deposit_object + _PyTrash_destroy_chain=python37._PyTrash_destroy_chain ++ _PyTrash_thread_deposit_object=python37._PyTrash_thread_deposit_object ++ _PyTrash_thread_destroy_chain=python37._PyTrash_thread_destroy_chain + _PyWeakref_CallableProxyType=python37._PyWeakref_CallableProxyType DATA + _PyWeakref_ProxyType=python37._PyWeakref_ProxyType DATA + _PyWeakref_RefType=python37._PyWeakref_RefType DATA + _Py_BuildValue_SizeT=python37._Py_BuildValue_SizeT + _Py_CheckRecursionLimit=python37._Py_CheckRecursionLimit DATA + _Py_CheckRecursiveCall=python37._Py_CheckRecursiveCall + _Py_Dealloc=python37._Py_Dealloc + _Py_EllipsisObject=python37._Py_EllipsisObject DATA + _Py_FalseStruct=python37._Py_FalseStruct DATA + _Py_NoneStruct=python37._Py_NoneStruct DATA + _Py_NotImplementedStruct=python37._Py_NotImplementedStruct DATA + _Py_SwappedOp=python37._Py_SwappedOp DATA + _Py_TrueStruct=python37._Py_TrueStruct DATA + _Py_VaBuildValue_SizeT=python37._Py_VaBuildValue_SizeT