diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 10:52:53 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 10:52:53 (GMT) |
commit | 93c85a9d1b3e6862e8133f13baf512106ba254cf (patch) | |
tree | 8fb10af79f1fa1f37e4db08504b6892569b45359 /Doc | |
parent | 892cd0ef1fbcee49e4135300c3a869c0e03ba84c (diff) | |
parent | a0b792354e85593f0a0186b107026716c4a625dc (diff) | |
download | cpython-93c85a9d1b3e6862e8133f13baf512106ba254cf.zip cpython-93c85a9d1b3e6862e8133f13baf512106ba254cf.tar.gz cpython-93c85a9d1b3e6862e8133f13baf512106ba254cf.tar.bz2 |
merge with 3.3
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/venv.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index eda0cb6..042ed8e 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -128,13 +128,13 @@ creation according to their needs, the :class:`EnvBuilder` class. env_dir is the target directory to create an environment in. """ env_dir = os.path.abspath(env_dir) - context = self.create_directories(env_dir) + context = self.ensure_directories(env_dir) self.create_configuration(context) self.setup_python(context) self.setup_scripts(context) self.post_setup(context) - Each of the methods :meth:`create_directories`, + Each of the methods :meth:`ensure_directories`, :meth:`create_configuration`, :meth:`setup_python`, :meth:`setup_scripts` and :meth:`post_setup` can be overridden. |