[issue18138] ctx.load_verify_locations(cadata)

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue20915] Add "pip" section to experts list in devguide

2014-06-19 Thread Ezio Melotti
Ezio Melotti added the comment: > What about adding a “pip” line in experts.rst in the devguide? Should this be under "ensurepip" in the "Modules" section or under "pip" in the "Miscellaneous" section? > can you give Donald and Marcus sufficient rights for bug triage This is done. > what abo

[issue17006] Add advice on best practices for hashing secrets

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: needs patch -> patch review versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ ___ Python-bu

[issue17383] Possibly ambiguous phrasing in tutorial/modules#more-on-modules

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20945] why save the item to be replaced as olditem in PyTuple_SetItem? It's not useful at all.

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: -> resolved ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue21811] Anticipate fixes to 3.x and 2.7 for OS X 10.10 Yosemite support

2014-06-19 Thread Ned Deily
Ned Deily added the comment: To clarify, item 1 above should be read as: "1. When running Pythons installed from current 3.4.1 and 2.7.7 binary installers [...]" -- ___ Python tracker

[issue20446] ipaddress: hash similarities for ipv4 and ipv6

2014-06-19 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ncoghlan, pmoody ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue17462] argparse FAQ: how it is different from optparse

2014-06-19 Thread Ezio Melotti
Ezio Melotti added the comment: Patch LGTM. -- versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue20915] Add "pip" section to experts list in devguide

2014-06-19 Thread Nick Coghlan
Nick Coghlan added the comment: On 20 Jun 2014 08:51, "Ezio Melotti" wrote: > > > Ezio Melotti added the comment: > > > What about adding a “pip” line in experts.rst in the devguide? > > Should this be under "ensurepip" in the "Modules" section or under "pip" in the "Miscellaneous" section? Bot

[issue20062] Remove emacs page from devguide

2014-06-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset a79c7088ed10 by Ezio Melotti in branch 'default': #20062: replace emacs page of the devguide with a link to the PythonEditors wiki page. Initial patch by Albert Looney. http://hg.python.org/devguide/rev/a79c7088ed10 -- nosy: +python-dev _

[issue20062] Remove emacs page from devguide

2014-06-19 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! -- assignee: -> ezio.melotti resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker

[issue21738] Enum docs claim replacing __new__ is not possible

2014-06-19 Thread Ethan Furman
Ethan Furman added the comment: Common, no. And if the docs were silent on the matter that would be okay, but unfortunately the docs declare that it is not possible, which is just plain wrong. Patch also mentions _value_ as that is the supported interface when customizing __new__ methods. -

[issue20915] Add "pip" section to experts list in devguide

2014-06-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset ae349e31b56e by Ezio Melotti in branch 'default': #20915: add pip experts to the expert list. http://hg.python.org/devguide/rev/ae349e31b56e -- nosy: +python-dev ___ Python tracker

[issue20915] Add "pip" section to experts list in devguide

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti : -- assignee: -> ezio.melotti resolution: -> fixed stage: needs patch -> resolved status: open -> closed type: -> enhancement ___ Python tracker ___ _

[issue15588] quopri: encodestring and decodestring handle bytes, not strings

2014-06-19 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have a review on this fairly small patch please. -- nosy: +BreamoreBoy ___ Python tracker ___

[issue18872] platform.linux_distribution() doesn't recognize Amazon Linux

2014-06-19 Thread Mark Lawrence
Mark Lawrence added the comment: The patch adds 'system' to _supported_dists in platform.py. I've no idea whether or not this is acceptable. -- nosy: +BreamoreBoy type: behavior -> enhancement ___ Python tracker

[issue21261] Teach IDLE to Autocomplete dictionary keys

2014-06-19 Thread Eduardo Seabra
Eduardo Seabra added the comment: >From the example, I couldn't know if the patch should also autocomplete int >and other types. So here's a patch that autocompletes string dictionary keys. I'm new contributing so let me know if I made anything wrong and I'll fix as soon as possible. -

[issue21809] Building Python3 on VMS - External repository

2014-06-19 Thread John Malmberg
John Malmberg added the comment: This is an informational ticket. At this point, it is a spare time activity for me. Hopefully there are other interested parties to help. Time will tell. -- ___ Python tracker _

[issue9739] Output of help(...) is wider than 80 characters

2014-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: Perhaps after the Google Summer of Code project is done (mid-August). -- ___ Python tracker ___ ___ P

[issue6133] LOAD_CONST followed by LOAD_ATTR can be optimized to just be a LOAD_CONST

2014-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: later -> rejected stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue21655] Write Unit Test for Vec2 and TNavigator class in the Turtle Module

2014-06-19 Thread Lita Cho
Lita Cho added the comment: Finished testing TNavigator and Vec2 class. -- keywords: +patch title: Write Unit Test for Vec2 class in the Turtle Module -> Write Unit Test for Vec2 and TNavigator class in the Turtle Module Added file: http://bugs.python.org/file35701/vec2_tnav.patch

[issue20446] ipaddress: hash similarities for ipv4 and ipv6

2014-06-19 Thread Antoine Pitrou
Antoine Pitrou added the comment: Unless you can show up a real-world workload where this truely impacts performance, I'd classify this is a rather vague concern. -- nosy: +pitrou ___ Python tracker __

[issue21261] Teach IDLE to Autocomplete dictionary keys

2014-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: String keys is what Raymond requested and what looks sensible to me. A week ago, I committed test_idle/test_hyperparser.py and an incomplete test_autocomplete.py. So we can now, for this issue, at least partly follow our standard procedure of requiring tests w

[issue21719] Returning Windows file attribute information via os.stat()

2014-06-19 Thread Ben Hoyt
Ben Hoyt added the comment: BTW, thanks for the mention in "What's New in Python 3.5": https://docs.python.org/3.5/whatsnew/3.5.html#os Can I make one small suggestion for a tweak there? A link to the docs for os.stat() would be good. So maybe instead of mentioning "os.stat_result" -- which i

[issue13102] xml.dom.minidom does not support default namespaces

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bu

[issue12933] Update or remove claims that distutils requires external programs

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: needs patch -> patch review type: -> enhancement versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ ___

[issue17888] docs: more information on documentation team

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti : -- keywords: +easy stage: -> needs patch type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list

[issue11695] Improve argparse usage/help customization

2014-06-19 Thread paul j3
paul j3 added the comment: Here's a function that implements the format string: def custom_help(template): def usage(self): formatter = self._get_formatter() formatter.add_usage(self.usage, self._actions, self._mutually_exclusive_groups, prefix

[issue21719] Returning Windows file attribute information via os.stat()

2014-06-19 Thread Zachary Ware
Zachary Ware added the comment: If you want to make a patch to that effect, I'll commit it. At this point though, the whatsnew doc is just a stub and the whole document will be beaten into better shape closer to release time. -- ___ Python tracker <

[issue19495] Enhancement for timeit: measure time to run blocks of code using 'with'

2014-06-19 Thread Ezio Melotti
Ezio Melotti added the comment: I often write code like: import time start = time.time() ... end = time.time() print(end - start) Usually I don't do this to measure accurately the performance of some piece of code, but rather I do it for tasks that take some time (e.g. downloading a

[issue21765] Idle: make 3.x HyperParser work with non-ascii identifiers.

2014-06-19 Thread Ezio Melotti
Ezio Melotti added the comment: > I'm not sure what the "Other_ID_Start property" mentioned in [1] and > [2] means, though. Can we get someone with more in-depth knowledge of > unicode to help with this? See http://www.unicode.org/reports/tr31/#Backward_Compatibility. Basically they were consid

[issue21805] Argparse Revert config_file defaults

2014-06-19 Thread d0n
d0n added the comment: Thanks for your reply. It seems you quite good understood my use case =) and I get your point. Also, I just did not mention your (far more easier method) of accomplishing my goal. Indeed, where I use that kind of switching I conditionally change the help text as well. S

[issue21812] turtle.shapetransform doesn't transform the turtle on the first call

2014-06-19 Thread Lita Cho
Changes by Lita Cho : -- nosy: +jesstess ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue18872] platform.linux_distribution() doesn't recognize Amazon Linux

2014-06-19 Thread Ned Deily
Changes by Ned Deily : -- nosy: +lemburg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue21812] turtle.shapetransform doesn't transform the turtle on the first call

2014-06-19 Thread Lita Cho
New submission from Lita Cho: When you call turtle.shapetransform with a transformation matrix, nothing happens. You have to call turtle.shapesize or turtle.shearfactor first before turtle.shapetransform will take affect. Here is an example. turtle.shapetransform(2,0,0,2) turtle.shapesize(1)

[issue2943] Distutils should generate a better error message when the SDK is not installed

2014-06-19 Thread pokeeffe
Changes by pokeeffe : -- nosy: +pokeeffe ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue18017] ctypes.PyDLL documentation

2014-06-19 Thread marc
marc added the comment: I think the problem was a combination of two issues. First, the warning in 16.17.2.2 is a bit hidden. Kind of squeezed in between CDLL, etc and PyDLL. In contrast, 16.17.2.4 does a much better job, because it restates the fact that the GIL is released at each and every

<    1   2