[issue7094] Add alternate float formatting styles to new-style formatting.

2014-06-29 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: patch review - resolved ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7094

[issue21213] Memory bomb by incorrect custom serializer to json.dumps

2014-06-29 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: - resolved ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21213 ___ ___ Python-bugs-list

[issue16701] Docs missing the behavior of += (in-place add) for lists.

2014-06-29 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +rhettinger ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16701 ___ ___ Python-bugs-list

[issue21358] Augmented assignment doc: clarify 'only evaluated once'

2014-06-29 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21358 ___ ___ Python-bugs

[issue13272] 2to3 fix_renames doesn't rename string.lowercase/uppercase/letters

2014-06-28 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- keywords: +easy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13272 ___ ___ Python-bugs-list

[issue21874] test_strptime fails on rhel/centos/fedora systems

2014-06-28 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +belopolsky, lemburg ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21874 ___ ___ Python

[issue6130] There ought to be a way for extension types to associate documentation with their tp_new or tp_init methods

2014-06-27 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti, larry, ncoghlan stage: - needs patch type: - enhancement versions: +Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6130

[issue21046] Document formulas used in statistics

2014-06-27 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- resolution: - works for me stage: needs patch - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21046

[issue1528154] New sequences for Unicode groups and block ranges needed

2014-06-27 Thread Ezio Melotti
Ezio Melotti added the comment: This seems to be the only one currently. Other issues might have closed in favor of #2636 though. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1528154

[issue21844] Fix HTMLParser in unicodeless build

2014-06-27 Thread Ezio Melotti
Ezio Melotti added the comment: I think that Unicode support should be required for HTMLParser. If you don't want tests to fail in Unicode-less build it would be probably easier to just skip them altogether. -- ___ Python tracker rep

[issue14477] Rietveld test issue

2014-06-26 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: - resolved ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14477 ___ ___ Python-bugs-list

[issue18853] Got ResourceWarning unclosed file when running Lib/shlex.py demo

2014-06-26 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- versions: -Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18853 ___ ___ Python-bugs

[issue21844] Fix HTMLParser in unicodeless build

2014-06-24 Thread Ezio Melotti
Ezio Melotti added the comment: You forgot to attach the patch :) -- assignee: - ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21844

[issue6916] Remove deprecated items from asynchat

2014-06-21 Thread Ezio Melotti
Ezio Melotti added the comment: IMHO until the code is there, the documentation also should be there -- even if it just to acknowledge the existence of the code and signal its deprecation. Whether the code is eventually removed or not it's a separate issue

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

2014-06-21 Thread Ezio Melotti
Ezio Melotti added the comment: _ID_FIRST_CATEGORIES = {Lu, Ll, Lt, Lm, Lo, Nl, Other_ID_Start} _ID_CATEGORIES = _ID_FIRST_CATEGORIES | {Mn, Mc, Nd, Pc, Other_ID_Continue} Note that Other_ID_Start and Other_ID_Continue

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

2014-06-21 Thread Ezio Melotti
Ezio Melotti added the comment: It's an optimization. Assuming the majority of characters will be ASCII, most non-identifier characters will fail this test, thus avoiding the more involved generic Unicode check. I don't know what kind of characters are usually received as input. If things

[issue6916] Remove deprecated items from asynchat

2014-06-20 Thread Ezio Melotti
Ezio Melotti added the comment: I don't think removing the documentation for a deprecated item is a good solution. If people find it somewhere (old code, googling, via dir()) and find no related documentation, they might keep using it. If it's clearly documented that the item exists but it's

[issue14534] Add method to mark unittest.TestCases as do not run.

2014-06-19 Thread Ezio Melotti
Ezio Melotti added the comment: +1 on the idea. While the mixin method works and it's not overly complex, it might not be immediately obvious to those unfamiliar with it and to those reviewing the code (i.e. there's no clear hint about the reason why the base class doesn't inherit from

[issue21720] TypeError: Item in ``from list'' not a string message

2014-06-19 Thread Ezio Melotti
Ezio Melotti added the comment: Do you want to propose a patch? I think the standard message in these cases is along the lines of TypeError: fromlist argument X must be str, not unicode -- keywords: +easy nosy: +ezio.melotti stage: - needs patch

[issue21690] re documentation: re.compile links to re.search / re.match instead of regex.search / regex.match

2014-06-19 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the report! -- assignee: docs@python - ezio.melotti nosy: +ezio.melotti stage: - resolved status: open - closed type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue21738] Enum docs claim replacing __new__ is not possible

2014-06-19 Thread Ezio Melotti
Ezio Melotti added the comment: Is this common enough that it deserves to be documented? -- components: +Documentation nosy: +ezio.melotti type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21738

[issue21739] Add hint about expression in list comprehensions (https://docs.python.org/2/tutorial/datastructures.html#list-comprehensions)

2014-06-19 Thread Ezio Melotti
Ezio Melotti added the comment: If we don't want to go into the details of why it's not equivalent, using roughly equivalent might be enough. -- keywords: +easy nosy: +ezio.melotti stage: - needs patch type: - enhancement ___ Python tracker rep

[issue21740] doctest doesn't allow duck-typing callables

2014-06-19 Thread Ezio Melotti
Ezio Melotti added the comment: Would using callable() instead of inspect.isfunction() be ok? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21740

[issue20457] Use partition and enumerate make getopt easier

2014-06-19 Thread Ezio Melotti
Ezio Melotti added the comment: Based on Raymond's comment I'm going to close this. Thanks anyway for the patch. -- resolution: - rejected stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http

[issue1043134] Add preferred extensions for MIME types

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: test needed - patch review versions: +Python 3.5 -Python 3.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1043134

[issue18410] Idle: test SearchDialog.py

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: needs patch - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18410

[issue20091] An index entry for __main__ in 30.5 runpy is missing

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- keywords: +easy stage: - needs patch type: - enhancement versions: +Python 3.5 -Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20091

[issue18138] ctx.load_verify_locations(cadata)

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18138 ___ ___ Python-bugs

[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 about adding

[issue17006] Add advice on best practices for hashing secrets

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: needs patch - patch review versions: +Python 3.5 -Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17006

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

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: needs patch - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17383

[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 ezio.melo...@gmail.com: -- stage: - resolved ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20945 ___ ___ Python-bugs-list

[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 rep...@bugs.python.org http://bugs.python.org/issue17462

[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 rep...@bugs.python.org http://bugs.python.org/issue20062

[issue20915] Add pip section to experts list in devguide

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- assignee: - ezio.melotti resolution: - fixed stage: needs patch - resolved status: open - closed type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20915

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

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- resolution: - not a bug stage: - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13102

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

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: needs patch - patch review type: - enhancement versions: +Python 3.5 -Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12933

[issue17888] docs: more information on documentation team

2014-06-19 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- keywords: +easy stage: - needs patch type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17888

[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

[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 considered

[issue21759] URL Typo in Documentation FAQ

2014-06-14 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- keywords: +easy nosy: +ezio.melotti stage: - needs patch type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21759

[issue21533] built-in types dict docs - construct dict from iterable, not iterator

2014-06-02 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti, zach.ware type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21533

[issue9196] Improve docs for string interpolation %s re Unicode strings

2014-06-02 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +eric.smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9196 ___ ___ Python-bugs-list

[issue21547] '!s' formatting documentation bug

2014-06-02 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21547

[issue21573] Clean up turtle.py code formatting

2014-05-31 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21573 ___ ___ Python-bugs

[issue21582] use support.captured_stdx context managers - test_asyncore

2014-05-31 Thread Ezio Melotti
Ezio Melotti added the comment: The patch includes two sets of changes: 1) uses support.captured_stderr() where appropriate; 2) removes some from import and uses support.x instead; The former looks OK to me and could be applied, the latter doesn't look very useful. -- nosy

[issue21592] Make statistics.median run in linear time

2014-05-31 Thread Ezio Melotti
Ezio Melotti added the comment: I have written some proof of concept code here [1], I would appreciate you commenting on it, before I turn it into a patch, as I haven't contributed code to Python before. I would encourage you to consult the devguide, prepare a patch, and upload it here so

[issue21604] Misleading 2to3 fixer name in documentation: standard_error

2014-05-31 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- keywords: +easy nosy: +jesstess stage: - needs patch type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21604

[issue21611] int() docstring - unclear what number is

2014-05-31 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti, zach.ware type: - enhancement versions: -Python 3.1, Python 3.2, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21611

[issue21589] Use better idiom in unittest example

2014-05-27 Thread Ezio Melotti
Ezio Melotti added the comment: This is a duplicate of #11468. -- nosy: +ezio.melotti, rhettinger resolution: - duplicate stage: - resolved status: open - closed superseder: - Improve unittest basic example in the doc ___ Python tracker rep

[issue21054] Improve indexing of syntax symbols

2014-05-26 Thread Ezio Melotti
Ezio Melotti added the comment: All the current dependences are currently fixed. Are you planning to add more in the future or can this issue be closed? -- assignee: - docs@python components: +Documentation nosy: +docs@python, ezio.melotti type: - enhancement

[issue21072] Python docs and downloads not available for Egypt

2014-05-26 Thread Ezio Melotti
Ezio Melotti added the comment: IIUC there was a similar issue from China, and on the old site we fixed it by adding http://legacy.python.org/getit/. I don't know what was made to this page to make it work from China and if it still exists on the new website, but maybe the same trick could

[issue21077] Turtle Circle Speed 0

2014-05-26 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: - needs patch type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21077

[issue21310] ResourceWarning when open() fails with io.UnsupportedOperation: File or stream is not seekable

2014-05-26 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +haypo, pitrou, serhiy.storchaka type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21310

[issue21429] Input.output error with multiprocessing

2014-05-26 Thread Ezio Melotti
Ezio Melotti added the comment: Can you provide more information about the error (e.g. the relevant piece of code where the error generates, if you can reproduce it every time or if it's sporadic, a minimal piece of code that can reproduce the same issue, etc.)? I would also suggest to report

[issue21434] python -3 documentation is outdated

2014-05-26 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +terry.reedy stage: patch review - commit review type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21434

[issue21445] Some asserts in test_filecmp have the wrong messages

2014-05-26 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: - commit review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21445 ___ ___ Python-bugs

[issue21553] Behaviour of modules depends on how they where imported

2014-05-22 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +brett.cannon, eric.snow, ncoghlan ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21553

[issue21514] update json module docs in light of RFC 7159 ECMA-404

2014-05-16 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti, pitrou, rhettinger stage: - needs patch type: - enhancement versions: +Python 3.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21514

[issue21046] Document formulas used in statistics

2014-05-16 Thread Ezio Melotti
Ezio Melotti added the comment: Do you want to propose a patch? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21046 ___ ___ Python-bugs-list

[issue21046] Document formulas used in statistics

2014-05-16 Thread Ezio Melotti
Ezio Melotti added the comment: From msg214692 it seems to me that Alex wants Python-friendly formulas or examples, rather than mathematical formulas. Most functions seems to already have them, so I was asking for a patch to get a better idea of which functions he thinks should be improved

[issue21047] html.parser.HTMLParser: convert_charrefs should become True by default

2014-05-16 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- assignee: - ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21047 ___ ___ Python

[issue21512] time module becomes None after raise SystemExit

2014-05-15 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +benjamin.peterson, pitrou resolution: - not a bug status: open - pending ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21512

[issue21034] Python docs reference the Distribute package which has been deprecated in favor of Setuptools

2014-05-14 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +eric.araujo stage: - patch review type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21034

[issue21031] [patch] Add AlpineLinux to the platform module's supported distributions list

2014-05-14 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +brett.cannon, ezio.melotti stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21031

[issue21046] Document formulas used in statistics

2014-05-14 Thread Ezio Melotti
Ezio Melotti added the comment: E.g. median([x1, x2, x3, x4, x5]) = x3 median([x1, x2, x3, x4, x5, x6]) = (x3 + x4) / 2 The docs seem to already contain similar examples for some of the functions (e.g. median()), but not for others (e.g. mean()). For these, if the formula can be expressed

[issue21160] incorrect comments in nturl2path.py

2014-05-10 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- keywords: +patch Added file: http://bugs.python.org/file35208/d7f128afe9db.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21160

[issue21160] incorrect comments in nturl2path.py

2014-05-10 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: Removed file: http://bugs.python.org/file35208/d7f128afe9db.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21160

[issue21165] Optimize str.translate() for replacement with substrings and non-ASCII strings

2014-05-10 Thread Ezio Melotti
Ezio Melotti added the comment: Aren't there similar benchmarks in the benchmarks repo? If not, would it be reasonable to add this there? -- nosy: +ezio.melotti stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue21188] Broken link

2014-05-10 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: - resolved ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21188 ___ ___ Python-bugs-list

[issue21198] Minor tarfile documentation bug

2014-05-10 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: - needs patch type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21198

[issue20872] dbm/gdbm/ndbm close methods are not document

2014-05-10 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- assignee: - docs@python components: +Documentation keywords: +easy nosy: +docs@python stage: - needs patch type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue21470] Better seeding for the random module

2014-05-10 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21470 ___ ___ Python-bugs

[issue21458] MirBSD support

2014-05-09 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +skrah stage: - patch review type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21458

[issue20745] test_statistics fails in refleak mode

2014-05-09 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti stage: - needs patch versions: +Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20745

[issue20745] test_statistics fails in refleak mode

2014-05-09 Thread Ezio Melotti
Ezio Melotti added the comment: #20746 seems to have a patch for this. -- nosy: +xdegaye ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20745

[issue20780] Shadowed (duplicate name but different body) test in test_statistics

2014-05-09 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20780

[issue20815] ipaddress unit tests PEP8

2014-05-09 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: - commit review type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20815

[issue20826] Faster implementation to collapse consecutive ip-networks

2014-05-09 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20826

[issue20837] Ambiguity words in base64 documentation

2014-05-09 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: - patch review type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20837

[issue20840] AttributeError: 'module' object has no attribute 'ArgumentParser'

2014-05-09 Thread Ezio Melotti
Ezio Melotti added the comment: Closing for lack of feedback. Feel free to re-open if/when more info are available. -- nosy: +ezio.melotti status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20840

[issue20847] asyncio docs should call out that network logging is a no-no

2014-05-09 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- components: +Documentation stage: - needs patch type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20847

[issue20851] Update devguide to cover testing from a tarball

2014-05-09 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: - needs patch type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20851

[issue20853] pdb args crashes when an arg is not printable

2014-05-09 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20853 ___ ___ Python-bugs

[issue20859] Context of documentation for conditional expressions

2014-05-09 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20859 ___ ___ Python-bugs

[issue19217] Calling assertEquals for moderately long list takes too long

2014-04-29 Thread Ezio Melotti
Ezio Melotti added the comment: I don't think I will have time for this for a while, so if anyone wants to provide tests they are welcomed to do it. The related #11763 already has some tests, so those might be adapted for this issue. -- keywords: +easy stage: patch review - test

[issue18967] Find a less conflict prone approach to Misc/NEWS

2014-04-24 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: Added file: http://bugs.python.org/file35032/newsmerge.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18967

[issue18967] Find a less conflict prone approach to Misc/NEWS

2014-04-24 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: Removed file: http://bugs.python.org/file35011/newsmerge.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18967

[issue18967] Find a less conflict prone approach to Misc/NEWS

2014-04-23 Thread Ezio Melotti
Ezio Melotti added the comment: One of the Mercurial devs convinced me to pursue what I had initially proposed in msg197645 and write a merge script (attached). The script is still a proof of concept, it makes a few assumptions and doesn't handle all the cases, but I did a few tests

[issue21338] Silent mode for compileall

2014-04-23 Thread Ezio Melotti
Ezio Melotti added the comment: This seems a reasonable request. Do you want to propose a patch? -- keywords: +easy nosy: +ezio.melotti stage: - needs patch type: - enhancement versions: +Python 3.5 ___ Python tracker rep...@bugs.python.org http

[issue18967] Find a less conflict prone approach to Misc/NEWS

2014-04-21 Thread Ezio Melotti
Ezio Melotti added the comment: Unless one looks carefully, it does not help the problen of merging maintenance bugfix items into a default list that also contains enhancement news not in the maintenance list*. What if instead of having sections in Misc/NEWS for core/library/documentation

[issue18967] Find a less conflict prone approach to Misc/NEWS

2014-04-21 Thread Ezio Melotti
Ezio Melotti added the comment: Also having a list of enhancements and bug fixes might be more meaningful for users than a list of core issues vs library issues vs other similar sections. This could also be done with two separate files, with the new features/enhancements file existing only

[issue18967] Find a less conflict prone approach to Misc/NEWS

2014-04-21 Thread Ezio Melotti
Ezio Melotti added the comment: Agreed. Once the gating system is in place nothing prevent us to read the NEWS entry either from the patch that is being committed or from a field in the tracker and then including it together with the patch once it is approved

[issue18967] Find a less conflict prone approach to Misc/NEWS

2014-04-20 Thread Ezio Melotti
Ezio Melotti added the comment: Have you considered how this is going to change if/when PEP 462 will be implemented? AFAIU PEP 462 suggests that commits happen directly from the bug tracker (or something equivalent), so we will likely start to add the NEWS entry there as well. Assuming

[issue20962] Rather modest chunk size in gzip.GzipFile

2014-04-20 Thread Ezio Melotti
Ezio Melotti added the comment: You should try with different chunk and file sizes and see what is the best compromise. Tagging as easy in case someone wants to put together a small script to benchmark this (maybe it could even be added to http://hg.python.org/benchmarks/), or even a patch

[issue20969] Author of EPUB version of Python docs is set to Unknown instead of PSF

2014-04-20 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- keywords: +easy nosy: +ezio.melotti stage: - needs patch versions: +Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20969

[issue20977] pyflakes: undefined ctype in 2 except blocks in the email module

2014-04-20 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- keywords: +easy stage: - needs patch type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20977

[issue20997] Wrong URL fragment identifier in search result

2014-04-20 Thread Ezio Melotti
Ezio Melotti added the comment: It might be a bug in the older Sphinx version used to build the 2.x docs. If this is the case, it's probably not worth fixing. Georg? -- nosy: +ezio.melotti, georg.brandl resolution: - wont fix status: open - pending

[issue21213] Memory bomb by incorrect custom serializer to json.dumps

2014-04-20 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti, pitrou, rhettinger type: - behavior versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21213

[issue21221] Minor struct_time documentation bug

2014-04-20 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- keywords: +easy stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21221

<    3   4   5   6   7   8   9   10   11   12   >