[issue41636] distutils.util.strtobool documented behaviour

2020-08-25 Thread Graham Oliver


New submission from Graham Oliver :

Here is the text 

https://docs.python.org/3.6/distutils/apiref.html#distutils.util.strtobool

Convert a string representation of truth to true (1) or false (0).

True values are y, yes, t, true, on and 1; false values are n, no, f, false, 
off and 0. Raises ValueError if val is anything else.

I wondered what would happen with 'FALSE' i.e. upper case. It appears to behave 
the same way as 'false'. In fact case does not seem to be an issue, so 'FaLsE' 
will return 0 as well.

So a note that this function is independent of case may be helpful

--
assignee: docs@python
components: Documentation
messages: 375902
nosy: Graham.Oliver, docs@python
priority: normal
severity: normal
status: open
title: distutils.util.strtobool documented behaviour
versions: Python 3.6

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



[issue24386] Bug Tracker emails going to gmail spam

2015-06-04 Thread Graham Oliver

New submission from Graham Oliver:

I noticed that when I created an issue in this Bug Tracjer all of the 
associated emails were ending up in my gmail spam. '...in violation of Google's 
recommended email sender guidelines.' An explanatory link sends me to
https://support.google.com/mail/answer/81126?hl=en-GB#authentication
Cheers
g

--
components: email
messages: 244849
nosy: Graham.Oliver, barry, r.david.murray
priority: normal
severity: normal
status: open
title: Bug Tracker emails going to gmail spam
type: behavior
versions: Python 3.5

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



[issue24356] venv documentation incorrect / misleading

2015-06-01 Thread Graham Oliver

Graham Oliver added the comment:

ok current version
Each virtual environment has its own Python binary (allowing creation of 
environments with various Python versions) and can have its own independent set 
of installed Python packages in its site directories.

Suggested Alternative
Each virtual environment has its own isolated Python binary (which matches the 
version used to create it) and can have its own independent set of installed 
Python packages in its site directories.

--

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



[issue24356] venv documentation incorrect / misleading

2015-06-01 Thread Graham Oliver

Graham Oliver added the comment:

See also
https://groups.google.com/d/msg/comp.lang.python/BUmyc_hzAsA/Nx5QgT1gzYEJ

--

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



[issue24356] venv documentation incorrect / misleading

2015-06-01 Thread Graham Oliver

New submission from Graham Oliver:

See my question here
https://groups.google.com/forum/#!topic/comp.lang.python/BUmyc_hzAsA
In particular Carl Meyer's response
https://groups.google.com/d/msg/comp.lang.python/BUmyc_hzAsA/-cT-N-g_LL4J

I am not sure what is possible with venv but I would suggest that the statement 
'allowing creation of environments with various Python versions' needs to be 
clarified and / or altered.

Thanks
Graham

--
assignee: docs@python
components: Documentation
messages: 244618
nosy: Graham.Oliver, docs@python
priority: normal
severity: normal
status: open
title: venv documentation incorrect / misleading
versions: Python 3.3

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



[issue3991] urllib.request.urlopen does not handle non-ASCII characters

2014-05-28 Thread Graham Oliver

Graham Oliver added the comment:

hello
I came across this bug when using 'ā' in a url
To get around the problem I used the 'URL encoded' version '%C4%81' instead of 
'ā'
See this page
http://www.charbase.com/0101-unicode-latin-small-letter-a-with-macron
I tried using the 'puny code' for 'ā' 'xn--yda' but that didn't work

--
nosy: +Graham.Oliver

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