[issue16026] csv.DictReader argument names documented incorrectly

2017-01-03 Thread Greg Bengeult

Greg Bengeult added the comment:

Here's a revised patch file for Python 3.7. This is my first ever submission to 
an open source project, so please be gentle.

--
nosy: +gbengeult
versions:  -Python 2.7, Python 3.5, Python 3.6
Added file: http://bugs.python.org/file46132/csv.rst-patch

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



[issue11681] -b option undocumented

2017-01-11 Thread Greg Bengeult

Greg Bengeult added the comment:

I have attached a patch for 2.7 that adds -b and -bb to the command line 
documentation in Modules/main.c and Doc/library/cmdline.rst, following the 
suggested text provided by Martin.

Interestingly, unicode(), bytearray(), and str() don't seem to be transitive in 
2.7.

>>> u"3" == str(3)
True

>>> str(3) == bytearray("3")
True

>>> u"3" == bytearray("3")
False

--
nosy: +gbengeult
Added file: http://bugs.python.org/file46261/b_option.patch

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



[issue11681] -b option undocumented

2017-01-12 Thread Greg Bengeult

Greg Bengeult added the comment:

Thanks for the :class: markup edits. I'm still learning this stuff.

--

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



[issue28130] Document that time.tzset updates time module globals

2017-01-12 Thread Greg Bengeult

Greg Bengeult added the comment:

How about this documentation patch for tzset()? Most of the verbiage comes from 
the Linux tzset() man page. I can also generate a similar patch for 2.7 if it's 
needed.

--
nosy: +gbengeult
versions: +Python 3.7
Added file: http://bugs.python.org/file46275/tzset_rst.patch

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



[issue28130] Document that time.tzset updates time module globals

2017-01-12 Thread Greg Bengeult

Greg Bengeult added the comment:

Here's the 2.7 patch.

--
Added file: http://bugs.python.org/file46276/tzset_rst_27.patch

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