summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial/stdlib.rst
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2020-05-19 02:33:01 (GMT)
committerGitHub <noreply@github.com>2020-05-19 02:33:01 (GMT)
commitd4fe098d1ee4f4056ac65cae55f5ffdd439dede0 (patch)
tree68ecea7a92cd666eca0acd93635adff58ff64814 /Doc/tutorial/stdlib.rst
parent9095f76613c8dd67beb21992def837bb8a37ed25 (diff)
downloadcpython-d4fe098d1ee4f4056ac65cae55f5ffdd439dede0.zip
cpython-d4fe098d1ee4f4056ac65cae55f5ffdd439dede0.tar.gz
cpython-d4fe098d1ee4f4056ac65cae55f5ffdd439dede0.tar.bz2
Python 3.10.0a0 (GH-20198)
Diffstat (limited to 'Doc/tutorial/stdlib.rst')
-rw-r--r--Doc/tutorial/stdlib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst
index a52653b..f33265c 100644
--- a/Doc/tutorial/stdlib.rst
+++ b/Doc/tutorial/stdlib.rst
@@ -15,7 +15,7 @@ operating system::
>>> import os
>>> os.getcwd() # Return the current working directory
- 'C:\\Python39'
+ 'C:\\Python310'
>>> os.chdir('/server/accesslogs') # Change current working directory
>>> os.system('mkdir today') # Run the command mkdir in the system shell
0