[issue32540] venv docs - doesn't match behavior

2018-02-20 Thread Mariatta Wijaya

Mariatta Wijaya  added the comment:

This should be good now.
Thanks!

--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32540] venv docs - doesn't match behavior

2018-02-20 Thread Mariatta Wijaya

Mariatta Wijaya  added the comment:


New changeset 76c3f5eeb07aeb037da1ed6761dd9bd95e2c1d8d by Mariatta (Miss 
Islington (bot)) in branch '3.6':
bpo-32540: Update venv documentation (GH-5736)
https://github.com/python/cpython/commit/76c3f5eeb07aeb037da1ed6761dd9bd95e2c1d8d


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32540] venv docs - doesn't match behavior

2018-02-20 Thread Mariatta Wijaya

Mariatta Wijaya  added the comment:


New changeset 98a86cbb9bed94a232263698041acd2775da3dad by Mariatta (Miss 
Islington (bot)) in branch '3.7':
bpo-32540: Update venv documentation (GH-5736)
https://github.com/python/cpython/commit/98a86cbb9bed94a232263698041acd2775da3dad


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32540] venv docs - doesn't match behavior

2018-02-20 Thread miss-islington

Change by miss-islington :


--
pull_requests: +5567

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32540] venv docs - doesn't match behavior

2018-02-20 Thread miss-islington

Change by miss-islington :


--
pull_requests: +5566
stage: backport needed -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32540] venv docs - doesn't match behavior

2018-02-20 Thread Mariatta Wijaya

Mariatta Wijaya  added the comment:

I've went ahead to initiate the backports.

--
stage: patch review -> backport needed
versions: +Python 3.6, Python 3.7

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32540] venv docs - doesn't match behavior

2018-02-20 Thread Mariatta Wijaya

Mariatta Wijaya  added the comment:

The PR was against master branch. So if backports are needed, you can add 
"needs backport to" labels on GH-5736 and the bot will take care of it.

--
nosy: +Mariatta

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32540] venv docs - doesn't match behavior

2018-02-20 Thread Jason R. Coombs

Jason R. Coombs  added the comment:

I thought I saw the PR to the 3.6 branch. If that's not the case - a backport 
to 3.7 would be much appreciated.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32540] venv docs - doesn't match behavior

2018-02-20 Thread Cheryl Sabella

Cheryl Sabella  added the comment:

Does this need to be backported to 3.7 and 3.6?  Or can it be closed as 
resolved?

--
nosy: +csabella

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32540] venv docs - doesn't match behavior

2018-02-18 Thread TROUVERIE Joachim

Change by TROUVERIE Joachim :


--
keywords: +patch
pull_requests: +5516
stage: needs patch -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32540] venv docs - doesn't match behavior

2018-02-18 Thread Jason R. Coombs via Python-bugs-list

Jason R. Coombs  added the comment:

@jtrouverie: Yes, please do. Thanks!

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32540] venv docs - doesn't match behavior

2018-02-18 Thread Joachim Trouverie

Joachim Trouverie  added the comment:

Is there anybody working on this issue or can I make a PR ?

--
nosy: +jtrouverie

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32540] venv docs - doesn't match behavior

2018-02-01 Thread Cheryl Sabella

Change by Cheryl Sabella :


--
keywords: +easy
stage:  -> needs patch
type:  -> enhancement
versions: +Python 3.8

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32540] venv docs - doesn't match behavior

2018-01-12 Thread Jason R. Coombs

New submission from Jason R. Coombs :

In the docs for the venv command, it states:

> Changed in version 3.4: In earlier versions, if the target directory already 
> existed, an error was raised, unless the --clear or --upgrade option was 
> provided. Now, if an existing directory is specified, its contents are 
> removed and the directory is processed as if it had been newly created.

However, that's not the behavior I observe:

$ python -m venv env
$ env/bin/pip install -q requests
$ python -m venv env  
$ env/bin/python -c "import requests"
$

Plus, I believe the _current_ behavior should be documented not in a 'change' 
note. I suggest the change note should read:

> Changed in version 3.4: In earlier versions, if the target directory already 
> existed, an error was raised, unless the --clear or --upgrade option was 
> provided.

And the third paragraph, following "It also creates an (initially 
empty...Lib\site-packages).":

> If an existing directory is specified, it will be re-used.

--
assignee: docs@python
components: Documentation
messages: 309867
nosy: docs@python, jason.coombs
priority: normal
severity: normal
status: open
title: venv docs - doesn't match behavior

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com