diff options
author | Georg Brandl <georg@python.org> | 2012-05-26 07:11:22 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-05-26 07:11:22 (GMT) |
commit | 039b01d0153c5433ad36be725e4a66f510b9cbd9 (patch) | |
tree | 167528153662c2bb7caf422c523b8d1da1e916f9 /Doc/library/sys.rst | |
parent | d2d521eafdea651de075f987ca80bece033b9b40 (diff) | |
download | cpython-039b01d0153c5433ad36be725e4a66f510b9cbd9.zip cpython-039b01d0153c5433ad36be725e4a66f510b9cbd9.tar.gz cpython-039b01d0153c5433ad36be725e4a66f510b9cbd9.tar.bz2 |
Add missing versionadded.
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 1ba9005..fd221fc 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -39,6 +39,9 @@ always available. :data:`base_exec_prefix` will remain pointing to the base Python installation (the one which the virtual environment was created from). + .. versionadded:: 3.3 + + .. data:: base_prefix Set during Python startup, before ``site.py`` is run, to the same value as @@ -49,6 +52,9 @@ always available. :data:`base_exec_prefix` will remain pointing to the base Python installation (the one which the virtual environment was created from). + .. versionadded:: 3.3 + + .. data:: byteorder An indicator of the native byte order. This will have the value ``'big'`` on |