summaryrefslogtreecommitdiffstats
path: root/Doc/library/venv.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-05-30 20:03:20 (GMT)
committerGeorg Brandl <georg@python.org>2012-05-30 20:03:20 (GMT)
commit3539afd5c90045b86a7cb5190fbff53051e5a1b4 (patch)
tree3b1f6344a457412ca100185dce36b27d86d5802a /Doc/library/venv.rst
parenta0cf90e3b1bebde4dea8b99083830b9fb209a1c0 (diff)
downloadcpython-3539afd5c90045b86a7cb5190fbff53051e5a1b4.zip
cpython-3539afd5c90045b86a7cb5190fbff53051e5a1b4.tar.gz
cpython-3539afd5c90045b86a7cb5190fbff53051e5a1b4.tar.bz2
Update pydoc topics and fix new suspicious markup.
Diffstat (limited to 'Doc/library/venv.rst')
-rw-r--r--Doc/library/venv.rst4
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst
index 7f81281..035e8d6 100644
--- a/Doc/library/venv.rst
+++ b/Doc/library/venv.rst
@@ -136,9 +136,7 @@ hooks available for subclass customization::
def create(self, env_dir):
"""
Create a virtualized Python environment in a directory.
-
- :param env_dir: The target directory to create an environment in.
-
+ env_dir is the target directory to create an environment in.
"""
env_dir = os.path.abspath(env_dir)
context = self.create_directories(env_dir)