We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0688d68 commit a0b7923Copy full SHA for a0b7923
Doc/library/venv.rst
@@ -129,13 +129,13 @@ creation according to their needs, the :class:`EnvBuilder` class.
129
env_dir is the target directory to create an environment in.
130
"""
131
env_dir = os.path.abspath(env_dir)
132
- context = self.create_directories(env_dir)
+ context = self.ensure_directories(env_dir)
133
self.create_configuration(context)
134
self.setup_python(context)
135
self.setup_scripts(context)
136
self.post_setup(context)
137
138
- Each of the methods :meth:`create_directories`,
+ Each of the methods :meth:`ensure_directories`,
139
:meth:`create_configuration`, :meth:`setup_python`,
140
:meth:`setup_scripts` and :meth:`post_setup` can be overridden.
141
0 commit comments