diff --git a/docs/conf.py b/docs/conf.py
index a7a4ab08c5..5533bf0191 100755
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -166,6 +166,10 @@ html_favicon = 'static/favicon.ico'
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['static']
+# Add a custom CSS file for HTML generation
+html_css_files = [
+ 'custom.css',
+]
# Add any extra paths that contain custom files (such as robots.txt or
# .htaccess) here, relative to this directory. These files are copied
# directly to the root of the documentation.
diff --git a/docs/differences/python_35.rst b/docs/differences/python_35.rst
index 94b10b5837..0fdc6121a1 100644
--- a/docs/differences/python_35.rst
+++ b/docs/differences/python_35.rst
@@ -5,55 +5,60 @@ Python 3.5
Below is a list of finalised/accepted PEPs for Python 3.5 grouped into their impact to MicroPython.
- +----------------------------------------------------------------------------------------------------------+---------------+
- | **Extensions to the syntax:** | **Status** |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | `PEP 448 `_ | additional unpacking generalizations | Partial |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | `PEP 465 `_ | a new matrix multiplication operator | Completed |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | `PEP 492 `_ | coroutines with async and await syntax | Completed |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | **Extensions and changes to runtime:** |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | `PEP 461 `_ | % formatting for binary strings | Completed |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | `PEP 475 `_ | retrying system calls that fail with EINTR | Completed |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | `PEP 479 `_ | change StopIteration handling inside generators | Completed |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | **Standard library changes:** |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | `PEP 471 `_ | os.scandir() | |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | `PEP 485 `_ | math.isclose(), a function for testing | Completed |
- | | approximate equality | |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | **Miscellaneous changes:** |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | `PEP 441 `_ | improved Python zip application support | |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | `PEP 486 `_ | make the Python Launcher aware of virtual | Not relevant |
- | | environments | |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | `PEP 484 `_ | type hints (advisory only) | In Progress |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | `PEP 488 `_ | elimination of PYO files | Not relevant |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
- | `PEP 489 `_ | redesigning extension module loading | |
- +--------------------------------------------------------+-------------------------------------------------+---------------+
+.. table::
+ :widths: 30 50 20
+ +--------------------------------------------------------------------------------------------------------------+--------------------+
+ | **Extensions to the syntax** | **Status** |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | `PEP 448 `_ | Additional unpacking generalizations | Partial |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | `PEP 465 `_ | A new matrix multiplication operator | Complete |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | `PEP 492 `_ | Coroutines with ``async`` and ``await`` syntax | Complete |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | **Extensions and changes to runtime** |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | `PEP 461 `_ | % formatting for binary strings | Complete |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | `PEP 475 `_ | Retrying system calls that fail with ``EINTR`` | Complete |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | `PEP 479 `_ | Change ``StopIteration`` handling inside generators | Complete |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | **Standard library changes** |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | `PEP 471 `_ | ``os.scandir()`` | |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | `PEP 485 `_ | ``math.isclose()``, a function for testing | Complete |
+ | | approximate equality | |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | **Miscellaneous changes** |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | `PEP 441 `_ | Improved Python zip application support | |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | `PEP 486 `_ | Make the Python Launcher aware of virtual | Not relevant |
+ | | environments | |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | `PEP 484 `_ | Type hints (advisory only) | Complete [#fth]_ |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | `PEP 488 `_ | Elimination of PYO files | Not relevant |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
+ | `PEP 489 `_ | Redesigning extension module loading | |
+ +--------------------------------------------------------+-----------------------------------------------------+--------------------+
Other Language Changes:
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | Added the *namereplace* error handlers. The *backslashreplace* error handlers now work with decoding and | |
- | translating. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | Property docstrings are now writable. This is especially useful for collections.namedtuple() docstrings | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | Circular imports involving relative imports are now supported. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
+.. table::
+ :widths: 90 10
+
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | Added the *namereplace* error handlers. The *backslashreplace* error handlers now work with decoding and | |
+ | translating. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | Property docstrings are now writable. This is especially useful for collections.namedtuple() docstrings | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | Circular imports involving relative imports are now supported. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
New Modules:
@@ -65,117 +70,124 @@ New Modules:
Changes to built-in modules:
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | `collections `_ |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The *OrderedDict* class is now implemented in C, which makes it 4 to 100 times faster. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | *OrderedDict.items()* , *OrderedDict.keys()* , *OrderedDict.values()* views now support reversed() | |
- | iteration. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The deque class now defines *index()*, *insert()*, and *copy()*, and supports the + and * operators. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | Docstrings produced by namedtuple() can now be updated. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The UserString class now implements the *__getnewargs__()*, *__rmod__()*, *casefold()*, *format_map()*, | |
- | *isprintable()*, and *maketrans()* methods to match the corresponding methods of str. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | `heapq `_ |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | Element comparison in *merge()* can now be customized by passing a key function in a new optional key | |
- | keyword argument, and a new optional *reverse* keyword argument can be used to reverse element comparison | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | `io `_ |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | A new *BufferedIOBase.readinto1()* method, that uses at most one call to the underlying raw stream's | |
- | *RawIOBase.read()* or *RawIOBase.readinto()* methods | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | `json `_ | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | JSON decoder now raises JSONDecodeError instead of ValueError to provide better context information about | |
- | the error. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | `math `_ |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | Two new constants have been added to the math module: *inf* and *nan*. | Completed |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | A new function *isclose()* provides a way to test for approximate equality. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | A new *gcd()* function has been added. The *fractions.gcd()* function is now deprecated. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | `os `_ |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The new *scandir()* function returning an iterator of DirEntry objects has been added. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The *urandom()* function now uses the *getrandom()* syscall on Linux 3.17 or newer, and *getentropy()* on | |
- | OpenBSD 5.6 and newer, removing the need to use /dev/urandom and avoiding failures due to potential file | |
- | descriptor exhaustion. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | New *get_blocking()* and *set_blocking()* functions allow getting and setting a file descriptor's blocking| |
- | mode (O_NONBLOCK.) | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | There is a new *os.path.commonpath()* function returning the longest common sub-path of each passed | |
- | pathname | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | `re `_ | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | References and conditional references to groups with fixed length are now allowed in lookbehind assertions| |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The number of capturing groups in regular expressions is no longer limited to 100. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The *sub()* and *subn()* functions now replace unmatched groups with empty strings instead of raising an | |
- | exception. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The *re.error* exceptions have new attributes, msg, pattern, pos, lineno, and colno, that provide better | |
- | context information about the error | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | `socket `_ |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | Functions with timeouts now use a monotonic clock, instead of a system clock. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | A new *socket.sendfile()* method allows sending a file over a socket by using the high-performance | |
- | *os.sendfile()* function on UNIX, resulting in uploads being from 2 to 3 times faster than when using | |
- | plain *socket.send()* | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The *socket.sendall()* method no longer resets the socket timeout every time bytes are received or sent. | |
- | The socket timeout is now the maximum total duration to send all data. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The backlog argument of the *socket.listen()* method is now optional. By default it is set to SOMAXCONN or| Completed |
- | to 128, whichever is less. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | `ssl `_ |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | Memory BIO Support | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | Application-Layer Protocol Negotiation Support | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | There is a new *SSLSocket.version()* method to query the actual protocol version in use. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The SSLSocket class now implements a *SSLSocket.sendfile()* method. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The *SSLSocket.send()* method now raises either the *ssl.SSLWantReadError* or *ssl.SSLWantWriteError* | |
- | exception on a non-blocking socket if the operation would block. Previously, it would return 0. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The *cert_time_to_seconds()* function now interprets the input time as UTC and not as local time, per RFC | |
- | 5280. Additionally, the return value is always an int. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | New *SSLObject.shared_ciphers()* and *SSLSocket.shared_ciphers()* methods return the list of ciphers sent | |
- | by the client during the handshake. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The *SSLSocket.do_handshake()*, *SSLSocket.read()*, *SSLSocket.shutdown()*, and *SSLSocket.write()* | |
- | methods of the SSLSocket class no longer reset the socket timeout every time bytes are received or sent. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The *match_hostname()* function now supports matching of IP addresses. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | `sys `_ |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | A new *set_coroutine_wrapper()* function allows setting a global hook that will be called whenever a | |
- | coroutine object is created by an async def function. A corresponding *get_coroutine_wrapper()* can be | |
- | used to obtain a currently set wrapper. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | A new *is_finalizing()* function can be used to check if the Python interpreter is shutting down. | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | `time `_ |
- +-----------------------------------------------------------------------------------------------------------+---------------+
- | The *monotonic()* function is now always available | |
- +-----------------------------------------------------------------------------------------------------------+---------------+
+.. table::
+ :widths: 90 10
+
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | `collections `_ |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The *OrderedDict* class is now implemented in C, which makes it 4 to 100 times faster. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | *OrderedDict.items()* , *OrderedDict.keys()* , *OrderedDict.values()* views now support reversed() | |
+ | iteration. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The deque class now defines *index()*, *insert()*, and *copy()*, and supports the + and * operators. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | Docstrings produced by namedtuple() can now be updated. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The UserString class now implements the *__getnewargs__()*, *__rmod__()*, *casefold()*, *format_map()*, | |
+ | *isprintable()*, and *maketrans()* methods to match the corresponding methods of str. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | `heapq `_ |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | Element comparison in *merge()* can now be customized by passing a key function in a new optional key | |
+ | keyword argument, and a new optional *reverse* keyword argument can be used to reverse element comparison | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | `io `_ |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | A new *BufferedIOBase.readinto1()* method, that uses at most one call to the underlying raw stream's | |
+ | *RawIOBase.read()* or *RawIOBase.readinto()* methods | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | `json `_ | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | JSON decoder now raises JSONDecodeError instead of ValueError to provide better context information about | |
+ | the error. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | `math `_ |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | Two new constants have been added to the math module: *inf* and *nan*. | Complete |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | A new function *isclose()* provides a way to test for approximate equality. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | A new *gcd()* function has been added. The *fractions.gcd()* function is now deprecated. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | `os `_ |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The new *scandir()* function returning an iterator of DirEntry objects has been added. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The *urandom()* function now uses the *getrandom()* syscall on Linux 3.17 or newer, and *getentropy()* on | |
+ | OpenBSD 5.6 and newer, removing the need to use /dev/urandom and avoiding failures due to potential file | |
+ | descriptor exhaustion. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | New *get_blocking()* and *set_blocking()* functions allow getting and setting a file descriptor's blocking| |
+ | mode (O_NONBLOCK.) | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | There is a new *os.path.commonpath()* function returning the longest common sub-path of each passed | |
+ | pathname | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | `re `_ | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | References and conditional references to groups with fixed length are now allowed in lookbehind assertions| |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The number of capturing groups in regular expressions is no longer limited to 100. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The *sub()* and *subn()* functions now replace unmatched groups with empty strings instead of raising an | |
+ | exception. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The *re.error* exceptions have new attributes, msg, pattern, pos, lineno, and colno, that provide better | |
+ | context information about the error | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | `socket `_ |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | Functions with timeouts now use a monotonic clock, instead of a system clock. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | A new *socket.sendfile()* method allows sending a file over a socket by using the high-performance | |
+ | *os.sendfile()* function on UNIX, resulting in uploads being from 2 to 3 times faster than when using | |
+ | plain *socket.send()* | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The *socket.sendall()* method no longer resets the socket timeout every time bytes are received or sent. | |
+ | The socket timeout is now the maximum total duration to send all data. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The backlog argument of the *socket.listen()* method is now optional. By default it is set to SOMAXCONN or| Complete |
+ | to 128, whichever is less. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | `ssl `_ |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | Memory BIO Support | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | Application-Layer Protocol Negotiation Support | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | There is a new *SSLSocket.version()* method to query the actual protocol version in use. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The SSLSocket class now implements a *SSLSocket.sendfile()* method. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The *SSLSocket.send()* method now raises either the *ssl.SSLWantReadError* or *ssl.SSLWantWriteError* | |
+ | exception on a non-blocking socket if the operation would block. Previously, it would return 0. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The *cert_time_to_seconds()* function now interprets the input time as UTC and not as local time, per RFC | |
+ | 5280. Additionally, the return value is always an int. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | New *SSLObject.shared_ciphers()* and *SSLSocket.shared_ciphers()* methods return the list of ciphers sent | |
+ | by the client during the handshake. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The *SSLSocket.do_handshake()*, *SSLSocket.read()*, *SSLSocket.shutdown()*, and *SSLSocket.write()* | |
+ | methods of the SSLSocket class no longer reset the socket timeout every time bytes are received or sent. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The *match_hostname()* function now supports matching of IP addresses. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | `sys `_ |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | A new *set_coroutine_wrapper()* function allows setting a global hook that will be called whenever a | |
+ | coroutine object is created by an async def function. A corresponding *get_coroutine_wrapper()* can be | |
+ | used to obtain a currently set wrapper. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | A new *is_finalizing()* function can be used to check if the Python interpreter is shutting down. | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | `time `_ |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+ | The *monotonic()* function is now always available | |
+ +-----------------------------------------------------------------------------------------------------------+---------------+
+
+.. rubric:: Notes
+
+.. [#fth] The MicroPython parser correct ignores all type hints. However, the ``typing`` module is not built-in.
diff --git a/docs/differences/python_36.rst b/docs/differences/python_36.rst
index edf6bef023..3315b0594d 100644
--- a/docs/differences/python_36.rst
+++ b/docs/differences/python_36.rst
@@ -5,53 +5,59 @@ Python 3.6
Python 3.6 beta 1 was released on 12 Sep 2016, and a summary of the new features can be found here:
- +-----------------------------------------------------------------------------------------------------------+--------------+
- | **New Syntax Features:** | **Status** |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 498 `_ | Literal String Formatting | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 515 `_ | Underscores in Numeric Literals | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 525 `_ | Asynchronous Generators | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 526 `_ | Syntax for Variable Annotations (provisional) | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 530 `_ | Asynchronous Comprehensions | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | **New Built-in Features:** |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 468 `_ | Preserving the order of *kwargs* in a function | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 487 `_ | Simpler customization of class creation | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 520 `_ | Preserving Class Attribute Definition Order | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | **Standard Library Changes:** |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 495 `_ | Local Time Disambiguation | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 506 `_ | Adding A Secrets Module To The Standard Library | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 519 `_ | Adding a file system path protocol | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | **CPython internals:** |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 509 `_ | Add a private version to dict | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 523 `_ | Adding a frame evaluation API to CPython | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | **Linux/Window Changes** |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 524 `_ | Make os.urandom() blocking on Linux | |
- | | (during system startup) | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 528 `_ | Change Windows console encoding to UTF-8 | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
- | `PEP 529 `_ | Change Windows filesystem encoding to UTF-8 | |
- +--------------------------------------------------------+--------------------------------------------------+--------------+
+.. table::
+ :widths: 30 50 20
+
+ +-----------------------------------------------------------------------------------------------------------+-----------------+
+ | **New Syntax Features** | **Status** |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 498 `_ | Literal String Formatting | Complete |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 515 `_ | Underscores in Numeric Literals | Complete |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 525 `_ | Asynchronous Generators | |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 526 `_ | Syntax for Variable Annotations (provisional) | Complete |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 530 `_ | Asynchronous Comprehensions | |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | **New Built-in Features** |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 468 `_ | Preserving the order of *kwargs* in a function | |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 487 `_ | Simpler customization of class creation | |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 520 `_ | Preserving Class Attribute Definition Order | |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | **Standard Library Changes** |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 495 `_ | Local Time Disambiguation | |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 506 `_ | Adding A Secrets Module To The Standard Library | |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 519 `_ | Adding a file system path protocol | |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | **CPython Internals** |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 509 `_ | Add a private version to dict | Won't do |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 523 `_ | Adding a frame evaluation API to CPython | |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | **Linux/Window Changes** |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 524 `_ | Make ``os.urandom()`` blocking on Linux | |
+ | | (during system startup) | |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 528 `_ | Change Windows console encoding to UTF-8 | |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
+ | `PEP 529 `_ | Change Windows filesystem encoding to UTF-8 | |
+ +--------------------------------------------------------+--------------------------------------------------+-----------------+
Other Language Changes:
+.. table::
+ :widths: 90 10
+
+-------------------------------------------------------------------------------------------------------------+---------------+
| A *global* or *nonlocal* statement must now textually appear before the first use of the affected name in | |
| the same scope. Previously this was a SyntaxWarning. | |
@@ -71,6 +77,9 @@ Other Language Changes:
Changes to built-in modules:
+.. table::
+ :widths: 90 10
+
+--------------------------------------------------------------------------------------------------------------+----------------+
| `array `_ | |
+--------------------------------------------------------------------------------------------------------------+----------------+
@@ -78,7 +87,7 @@ Changes to built-in modules:
+--------------------------------------------------------------------------------------------------------------+----------------+
| `binascii `_ | |
+--------------------------------------------------------------------------------------------------------------+----------------+
- | The b2a_base64() function now accepts an optional newline keyword argument to control whether the newline | Completed |
+ | The b2a_base64() function now accepts an optional newline keyword argument to control whether the newline | Complete |
| character is appended to the return value | |
+--------------------------------------------------------------------------------------------------------------+----------------+
| `cmath `_ | |
@@ -121,7 +130,7 @@ Changes to built-in modules:
+--------------------------------------------------------------------------------------------------------------+----------------+
| `math `_ |
+--------------------------------------------------------------------------------------------------------------+----------------+
- | The new math.tau (τ) constant has been added | Completed |
+ | The new math.tau (τ) constant has been added | Complete |
+--------------------------------------------------------------------------------------------------------------+----------------+
| `os `_ |
+--------------------------------------------------------------------------------------------------------------+----------------+
@@ -136,7 +145,7 @@ Changes to built-in modules:
| `re `_ |
+--------------------------------------------------------------------------------------------------------------+----------------+
| Added support of modifier spans in regular expressions. Examples: *'(?i:p)ython'* matches 'python' and | |
- | 'Python', but not 'PYTHON'; *'(?i)g(?-i:v)r'* matches *'GvR'* and *'gvr'*, but not *'GVR'* . | |
+ | 'Python', but not 'PYTHON'; *'(?i)g(?-i:v)r'* matches *'GvR'* and *'gvr'*, but not *'GVR'*. | |
+--------------------------------------------------------------------------------------------------------------+----------------+
| Match object groups can be accessed by *__getitem__*, which is equivalent to *group()*. So *mo['name']* is | |
| now equivalent to *mo.group('name')*. | |
diff --git a/docs/differences/python_37.rst b/docs/differences/python_37.rst
index c46678e931..86d1b6e81f 100644
--- a/docs/differences/python_37.rst
+++ b/docs/differences/python_37.rst
@@ -5,72 +5,81 @@ Python 3.7
New Features:
- +--------------------------------------------------------+--------------------------------------------------+----------------+
- | **Features:** | **Status** |
- +--------------------------------------------------------+--------------------------------------------------+----------------+
- | `PEP 538 `_ | Coercing the legacy C locale to a UTF-8 based | |
- | | locale | |
- +--------------------------------------------------------+--------------------------------------------------+----------------+
- | `PEP 539 `_ | A New C-API for Thread-Local Storage in CPython | |
- +--------------------------------------------------------+--------------------------------------------------+----------------+
- | `PEP 540 `_ | UTF-8 mode | |
- +--------------------------------------------------------+--------------------------------------------------+----------------+
- | `PEP 552 `_ | Deterministic pyc | |
- +--------------------------------------------------------+--------------------------------------------------+----------------+
- | `PEP 553 `_ | Built-in breakpoint() | |
- +--------------------------------------------------------+--------------------------------------------------+----------------+
- | `PEP 557 `_ | Data Classes | |
- +--------------------------------------------------------+--------------------------------------------------+----------------+
- | `PEP 560 `_ | Core support for typing module and generic types | |
- +--------------------------------------------------------+--------------------------------------------------+----------------+
- | `PEP 562 `_ | Module __getattr__ and __dir__ | Partially done |
- +--------------------------------------------------------+--------------------------------------------------+----------------+
- | `PEP 563 `_ | Postponed Evaluation of Annotations | |
- +--------------------------------------------------------+--------------------------------------------------+----------------+
- | `PEP 564 `_ | Time functions with nanosecond resolution | |
- +--------------------------------------------------------+--------------------------------------------------+----------------+
- | `PEP 565 `_ | Show DeprecationWarning in __main__ | |
- +--------------------------------------------------------+--------------------------------------------------+----------------+
- | `PEP 567 `_ | Context Variables | |
- +--------------------------------------------------------+--------------------------------------------------+----------------+
+.. table::
+ :widths: 20 60 20
+
+ +--------------------------------------------------------+--------------------------------------------------+--------------------------------------+
+ | **Feature** | **Status** |
+ +--------------------------------------------------------+--------------------------------------------------+--------------------------------------+
+ | `PEP 538 `_ | Coercing the legacy C locale to a UTF-8 based | |
+ | | locale | |
+ +--------------------------------------------------------+--------------------------------------------------+--------------------------------------+
+ | `PEP 539 `_ | A New C-API for Thread-Local Storage in CPython | |
+ +--------------------------------------------------------+--------------------------------------------------+--------------------------------------+
+ | `PEP 540 `_ | UTF-8 mode | |
+ +--------------------------------------------------------+--------------------------------------------------+--------------------------------------+
+ | `PEP 552 `_ | Deterministic pyc | |
+ +--------------------------------------------------------+--------------------------------------------------+--------------------------------------+
+ | `PEP 553 `_ | Built-in ``breakpoint()`` | |
+ +--------------------------------------------------------+--------------------------------------------------+--------------------------------------+
+ | `PEP 557 `_ | Data Classes | |
+ +--------------------------------------------------------+--------------------------------------------------+--------------------------------------+
+ | `PEP 560 `_ | Core support for typing module and generic types | |
+ +--------------------------------------------------------+--------------------------------------------------+--------------------------------------+
+ | `PEP 562 `_ | Module ``__getattr__`` and ``__dir__`` | Partial |
+ +--------------------------------------------------------+--------------------------------------------------+--------------------------------------+
+ | `PEP 563 `_ | Postponed Evaluation of Annotations | |
+ +--------------------------------------------------------+--------------------------------------------------+--------------------------------------+
+ | `PEP 564 `_ | Time functions with nanosecond resolution | Partial [#ftimenanosec]_ |
+ +--------------------------------------------------------+--------------------------------------------------+--------------------------------------+
+ | `PEP 565 `_ | Show DeprecationWarning in ``__main__`` | |
+ +--------------------------------------------------------+--------------------------------------------------+--------------------------------------+
+ | `PEP 567 `_ | Context Variables | |
+ +--------------------------------------------------------+--------------------------------------------------+--------------------------------------+
Other Language Changes:
- +----------------------------------------------------------------------------------------------------------+----------------+
- | async and await are now reserved keywords | Completed |
- +----------------------------------------------------------------------------------------------------------+----------------+
- | dict objects must preserve insertion-order | |
- +----------------------------------------------------------------------------------------------------------+----------------+
- | More than 255 arguments can now be passed to a function; a function can now have more than 255 parameters| |
- +----------------------------------------------------------------------------------------------------------+----------------+
- | bytes.fromhex() and bytearray.fromhex() now ignore all ASCII whitespace, not only spaces | |
- +----------------------------------------------------------------------------------------------------------+----------------+
- | str, bytes, and bytearray gained support for the new isascii() method, which can be used to test if a | |
- | string or bytes contain only the ASCII characters | |
- +----------------------------------------------------------------------------------------------------------+----------------+
- | ImportError now displays module name and module __file__ path whenfrom ... import ... fails | |
- +----------------------------------------------------------------------------------------------------------+----------------+
- | Circular imports involving absolute imports with binding a submodule to a name are now supported | |
- +----------------------------------------------------------------------------------------------------------+----------------+
- | object.__format__(x, '') is now equivalent to str(x) rather than format(str(self), '') | |
- +----------------------------------------------------------------------------------------------------------+----------------+
- | In order to better support dynamic creation of stack traces, types.TracebackType can now be instantiated | |
- | from Python code, and the tb_next attribute on tracebacks is now writable | |
- +----------------------------------------------------------------------------------------------------------+----------------+
- | When using the -m switch, sys.path[0] is now eagerly expanded to the full starting directory path, rather| |
- | than being left as the empty directory (which allows imports from the current working directory at the | |
- | time when an import occurs) | |
- +----------------------------------------------------------------------------------------------------------+----------------+
- | The new -X importtime option or the PYTHONPROFILEIMPORTTIME environment variable can be used to show the | |
- | timing of each module import | |
- +----------------------------------------------------------------------------------------------------------+----------------+
+.. table::
+ :widths: 90 10
+
+ +-----------------------------------------------------------------------------------------------------------------+----------------+
+ | ``async`` and ``await`` are now reserved keywords | Complete |
+ +-----------------------------------------------------------------------------------------------------------------+----------------+
+ | ``dict`` objects must preserve insertion-order | |
+ +-----------------------------------------------------------------------------------------------------------------+----------------+
+ | More than 255 arguments can now be passed to a function; a function can now have more than 255 parameters | |
+ +-----------------------------------------------------------------------------------------------------------------+----------------+
+ | ``bytes.fromhex()`` and ``bytearray.fromhex()`` now ignore all ASCII whitespace, not only spaces | |
+ +-----------------------------------------------------------------------------------------------------------------+----------------+
+ | ``str``, ``bytes``, and ``bytearray`` gained support for the new ``isascii()`` method, which can be used to | |
+ | test if a string or bytes contain only the ASCII characters | |
+ +-----------------------------------------------------------------------------------------------------------------+----------------+
+ | ``ImportError`` now displays module name and module ``__file__`` path when ``from ... import ...`` fails | |
+ +-----------------------------------------------------------------------------------------------------------------+----------------+
+ | Circular imports involving absolute imports with binding a submodule to a name are now supported | |
+ +-----------------------------------------------------------------------------------------------------------------+----------------+
+ | ``object.__format__(x, '')`` is now equivalent to ``str(x)`` rather than ``format(str(self), '')`` | |
+ +-----------------------------------------------------------------------------------------------------------------+----------------+
+ | In order to better support dynamic creation of stack traces, ``types.TracebackType`` can now be | |
+ | instantiated from Python code, and the ``tb_next`` attribute on tracebacks is now writable | |
+ +-----------------------------------------------------------------------------------------------------------------+----------------+
+ | When using the ``-m`` switch, ``sys.path[0]`` is now eagerly expanded to the full starting directory path, | |
+ | rather than being left as the empty directory (which allows imports from the current working directory | |
+ | at the time when an import occurs) | |
+ +-----------------------------------------------------------------------------------------------------------------+----------------+
+ | The new ``-X importtime`` option or the ``PYTHONPROFILEIMPORTTIME`` environment variable can be used to | |
+ | show the timing of each module import | |
+ +-----------------------------------------------------------------------------------------------------------------+----------------+
Changes to built-in modules:
+.. table::
+ :widths: 90 10
+
+------------------------------------------------------------------------------------------------------------+----------------+
| `asyncio `_ | |
+------------------------------------------------------------------------------------------------------------+----------------+
- | asyncio (many, may need a separate ticket) | |
+ | Too many to list | |
+------------------------------------------------------------------------------------------------------------+----------------+
| `gc `_ | |
+------------------------------------------------------------------------------------------------------------+----------------+
@@ -93,3 +102,7 @@ Changes to built-in modules:
+------------------------------------------------------------------------------------------------------------+----------------+
| Mostly updates to support nanosecond resolution in PEP564, see above | |
+------------------------------------------------------------------------------------------------------------+----------------+
+
+.. rubric:: Notes
+
+.. [#ftimenanosec] Only :func:`time.time_ns` is implemented.
diff --git a/docs/differences/python_38.rst b/docs/differences/python_38.rst
index 47840a8b40..32fd68d2ca 100644
--- a/docs/differences/python_38.rst
+++ b/docs/differences/python_38.rst
@@ -5,15 +5,18 @@ Python 3.8
Python 3.8.0 (final) was released on the 14 October 2019. The Features for 3.8
are defined in `PEP 569 `_ and
-a detailed description of the changes can be found in What's New in `Python
+a detailed description of the changes can be found in `What's New in Python
3.8. `_
+.. table::
+ :widths: 20 60 20
+
+--------------------------------------------------------+---------------------------------------------------+---------------+
- | **Features:** | Status |
+ | **Features** | **Status** |
+--------------------------------------------------------+---------------------------------------------------+---------------+
| `PEP 570 `_ | Positional-only arguments | |
+--------------------------------------------------------+---------------------------------------------------+---------------+
- | `PEP 572 `_ | Assignment Expressions | |
+ | `PEP 572 `_ | Assignment Expressions | Complete |
+--------------------------------------------------------+---------------------------------------------------+---------------+
| `PEP 574 `_ | Pickle protocol 5 with out-of-band data | |
+--------------------------------------------------------+---------------------------------------------------+---------------+
@@ -25,13 +28,16 @@ a detailed description of the changes can be found in What's New in `Python
+--------------------------------------------------------+---------------------------------------------------+---------------+
| **Miscellaneous** |
+------------------------------------------------------------------------------------------------------------+---------------+
- | f-strings support = for self-documenting expressions and debugging | Completed |
+ | f-strings support = for self-documenting expressions and debugging | Complete |
+------------------------------------------------------------------------------------------------------------+---------------+
Other Language Changes:
+.. table::
+ :widths: 90 10
+
+------------------------------------------------------------------------------------------------------------+-------------+
- | A *continue* statement was illegal in the *finally* clause due to a problem with the implementation. In | Completed |
+ | A *continue* statement was illegal in the *finally* clause due to a problem with the implementation. In | Complete |
| Python 3.8 this restriction was lifted | |
+------------------------------------------------------------------------------------------------------------+-------------+
| The *bool*, *int* , and *fractions.Fraction* types now have an *as_integer_ratio()* method like that found | |
@@ -72,14 +78,17 @@ Other Language Changes:
Changes to built-in modules:
+.. table::
+ :widths: 90 10
+
+------------------------------------------------------------------------------------------------------------+-------------+
- | `asyncio` |
+ | `asyncio `_ |
+------------------------------------------------------------------------------------------------------------+-------------+
- | *asyncio.run()* has graduated from the provisional to stable API | Completed |
+ | *asyncio.run()* has graduated from the provisional to stable API | Complete |
+------------------------------------------------------------------------------------------------------------+-------------+
| Running *python -m asyncio* launches a natively async REPL | |
+------------------------------------------------------------------------------------------------------------+-------------+
- | The exception *asyncio.CancelledError* now inherits from *BaseException* rather than *Exception* and no | Completed |
+ | The exception *asyncio.CancelledError* now inherits from *BaseException* rather than *Exception* and no | Complete |
| longer inherits from *concurrent.futures.CancelledError* | |
+------------------------------------------------------------------------------------------------------------+-------------+
| Added *asyncio.Task.get_coro()* for getting the wrapped coroutine within an *asyncio.Task* | |
@@ -90,12 +99,12 @@ Changes to built-in modules:
| Added support for Happy Eyeballs to *asyncio.loop.create_connection()*. To specify the behavior, two new | |
| parameters have been added: *happy_eyeballs_delay* and interleave. | |
+------------------------------------------------------------------------------------------------------------+-------------+
- | `gc` |
+ | `gc `_ |
+------------------------------------------------------------------------------------------------------------+-------------+
| *get_objects()* can now receive an optional generation parameter indicating a generation to get objects | |
| from. (Note, though, that while *gc* is a built-in, *get_objects()* is not implemented for MicroPython) | |
+------------------------------------------------------------------------------------------------------------+-------------+
- | `math` |
+ | `math `_ |
+------------------------------------------------------------------------------------------------------------+-------------+
| Added new function *math.dist()* for computing Euclidean distance between two points | |
+------------------------------------------------------------------------------------------------------------+-------------+
@@ -109,9 +118,9 @@ Changes to built-in modules:
| Added a new function *math.isqrt()* for computing accurate integer square roots without conversion to | |
| floating point | |
+------------------------------------------------------------------------------------------------------------+-------------+
- | The function *math.factorial()* no longer accepts arguments that are not int-like | Completed |
+ | The function *math.factorial()* no longer accepts arguments that are not int-like | Complete |
+------------------------------------------------------------------------------------------------------------+-------------+
- | `sys` |
+ | `sys `_ |
+------------------------------------------------------------------------------------------------------------+-------------+
| Add new *sys.unraisablehook()* function which can be overridden to control how "unraisable exceptions" | |
| are handled | |
diff --git a/docs/differences/python_39.rst b/docs/differences/python_39.rst
index 6852dd635e..023c6d7c1e 100644
--- a/docs/differences/python_39.rst
+++ b/docs/differences/python_39.rst
@@ -8,35 +8,41 @@ defined in `PEP 596
and a detailed description of the changes can be found in
`What's New in Python 3.9 `_
+.. table::
+ :widths: 20 60 20
+
+--------------------------------------------------------+----------------------------------------------------+--------------+
- | **Features:** | | **Status** |
+ | **Features** | | **Status** |
+--------------------------------------------------------+----------------------------------------------------+--------------+
- | `PEP 573 `_ | fast access to module state from methods of C | |
+ | `PEP 573 `_ | Fast access to module state from methods of C | |
| | extension types | |
+--------------------------------------------------------+----------------------------------------------------+--------------+
- | `PEP 584 `_ | union operators added to dict | |
+ | `PEP 584 `_ | Union operators added to dict | |
+--------------------------------------------------------+----------------------------------------------------+--------------+
- | `PEP 585 `_ | type hinting generics in standard collections | |
+ | `PEP 585 `_ | Type hinting generics in standard collections | |
+--------------------------------------------------------+----------------------------------------------------+--------------+
- | `PEP 593 `_ | flexible function and variable annotations | |
+ | `PEP 593 `_ | Flexible function and variable annotations | |
+--------------------------------------------------------+----------------------------------------------------+--------------+
| `PEP 602 `_ | CPython adopts an annual release cycle. Instead of | |
| | annual, aiming for two month release cycle | |
+--------------------------------------------------------+----------------------------------------------------+--------------+
- | `PEP 614 `_ | relaxed grammar restrictions on decorators | |
+ | `PEP 614 `_ | Relaxed grammar restrictions on decorators | |
+--------------------------------------------------------+----------------------------------------------------+--------------+
- | `PEP 615 `_ | the IANA Time Zone Database is now present in the | |
+ | `PEP 615 `_ | The IANA Time Zone Database is now present in the | |
| | standard library in the zoneinfo module | |
+--------------------------------------------------------+----------------------------------------------------+--------------+
- | `PEP 616 `_ | string methods to remove prefixes and suffixes | |
+ | `PEP 616 `_ | String methods to remove prefixes and suffixes | |
+--------------------------------------------------------+----------------------------------------------------+--------------+
| `PEP 617 `_ | CPython now uses a new parser based on PEG | |
+--------------------------------------------------------+----------------------------------------------------+--------------+
Other Language Changes:
+.. table::
+ :widths: 90 10
+
+-------------------------------------------------------------------------------------------------------------+---------------+
- | *__import__()* now raises *ImportError* instead of *ValueError* | Completed |
+ | *__import__()* now raises *ImportError* instead of *ValueError* | Complete |
+-------------------------------------------------------------------------------------------------------------+---------------+
| Python now gets the absolute path of the script filename specified on the command line (ex: *python3* | |
| *script.py*): the *__file__* attribute of the *__main__* module became an absolute path, rather than a | |
@@ -62,8 +68,11 @@ Other Language Changes:
Changes to built-in modules:
+.. table::
+ :widths: 90 10
+
+---------------------------------------------------------------------------------------------------------------+---------------+
- | `asyncio` |
+ | `asyncio `_ |
+---------------------------------------------------------------------------------------------------------------+---------------+
| Due to significant security concerns, the reuse_address parameter of *asyncio.loop.create_datagram_endpoint()*| |
| is no longer supported | |
@@ -82,13 +91,13 @@ Changes to built-in modules:
+---------------------------------------------------------------------------------------------------------------+---------------+
| *asyncio* now raises *TyperError* when calling incompatible methods with an *ssl.SSLSocket* socket | |
+---------------------------------------------------------------------------------------------------------------+---------------+
- | `gc` |
+ | `gc `_ |
+---------------------------------------------------------------------------------------------------------------+---------------+
| Garbage collection does not block on resurrected objects | |
+---------------------------------------------------------------------------------------------------------------+---------------+
| Added a new function *gc.is_finalized()* to check if an object has been finalized by the garbage collector | |
+---------------------------------------------------------------------------------------------------------------+---------------+
- | `math` |
+ | `math `_ |
+---------------------------------------------------------------------------------------------------------------+---------------+
| Expanded the *math.gcd()* function to handle multiple arguments. Formerly, it only supported two arguments | |
+---------------------------------------------------------------------------------------------------------------+---------------+
@@ -98,21 +107,21 @@ Changes to built-in modules:
+---------------------------------------------------------------------------------------------------------------+---------------+
| Added *math.ulp()*: return the value of the least significant bit of a float | |
+---------------------------------------------------------------------------------------------------------------+---------------+
- | `os` |
+ | `os `_ |
+---------------------------------------------------------------------------------------------------------------+---------------+
| Exposed the Linux-specific *os.pidfd_open()* and *os.P_PIDFD* | |
+---------------------------------------------------------------------------------------------------------------+---------------+
- | The *os.unsetenv()* function is now also available on Windows | Completed |
+ | The *os.unsetenv()* function is now also available on Windows | Complete |
+---------------------------------------------------------------------------------------------------------------+---------------+
- | The *os.putenv()* and *os.unsetenv()* functions are now always available | Completed |
+ | The *os.putenv()* and *os.unsetenv()* functions are now always available | Complete |
+---------------------------------------------------------------------------------------------------------------+---------------+
| Added *os.waitstatus_to_exitcode()* function: convert a wait status to an exit code | |
+---------------------------------------------------------------------------------------------------------------+---------------+
- | `random` |
+ | `random `_ |
+---------------------------------------------------------------------------------------------------------------+---------------+
| Added a new *random.Random.randbytes* method: generate random bytes | |
+---------------------------------------------------------------------------------------------------------------+---------------+
- | `sys` |
+ | `sys `_ |
+---------------------------------------------------------------------------------------------------------------+---------------+
| Added a new *sys.platlibdir* attribute: name of the platform-specific library directory | |
+---------------------------------------------------------------------------------------------------------------+---------------+
diff --git a/docs/static/custom.css b/docs/static/custom.css
new file mode 100644
index 0000000000..b0a7f746fc
--- /dev/null
+++ b/docs/static/custom.css
@@ -0,0 +1,5 @@
+/* Workaround to force Sphinx to render tables to 100% and wordwrap */
+/* See https://stackoverflow.com/questions/69359978/grid-table-does-not-word-wrap for more details */
+.wy-table-responsive table td, .wy-table-responsive table th {
+ white-space: inherit;
+}