[issue25933] Unhandled exception (TypeError) with ftplib in function retrbinary/retrlines causes inoperable behavior without crashing

2015-12-24 Thread SilentGhost
SilentGhost added the comment: OK, here is the patch with the test that I think is exercising the issue. -- keywords: +needs review, patch stage: -> patch review Added file: http://bugs.python.org/file41403/issue25933.diff ___ Python tracker &l

[issue25947] Installation problem

2015-12-25 Thread SilentGhost
Changes by SilentGhost : -- components: +Installation, Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue25

[issue25941] Add 'How to Review a Patch' section to devguide

2015-12-25 Thread SilentGhost
SilentGhost added the comment: Content of the article is in very reasonable shape, I have only couple of notes: 1. I don't think "production" is a good description of the python's repository workflow, so I'd suggest changing it to "repository". 2. Lack of

[issue25951] SSLSocket.sendall() does not return None on success like socket.sendall()

2015-12-25 Thread SilentGhost
Changes by SilentGhost : -- nosy: +alex, christian.heimes, dstufft, giampaolo.rodola, janssen, pitrou type: -> behavior versions: +Python 3.5, Python 3.6 -Python 3.4 ___ Python tracker <http://bugs.python.org/issu

[issue25952] code_context not available in exec()

2015-12-25 Thread SilentGhost
Changes by SilentGhost : -- components: +Library (Lib) nosy: +yselivanov versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issue25952> ___ ___ Pytho

[issue25953] re fails to identify invalid numeric group references in replacement strings

2015-12-25 Thread SilentGhost
SilentGhost added the comment: Well, at least on the surface of it, the fix seems pretty straightforward: check for the group index. With this patch the behaviour is as expected, but I get two tests erroring out since they're expecting differently worded error. This probably needs adjust

[issue25964] optparse.py:1668: (file) shadows builtin

2015-12-28 Thread SilentGhost
SilentGhost added the comment: None of this warnings highlights a real issue. Furthermore, optparse module is deprecated and you'd be better off using argparse instead. -- components: +Library (Lib) nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: ope

[issue25964] optparse.py:1668: (file) shadows builtin

2015-12-28 Thread SilentGhost
SilentGhost added the comment: The deprecation warning is clearly displayed at the top of the module documentation: https://docs.python.org/3/library/optparse.html Regarding variable names: it is not an issue and pychecker is simply mistaken here

[issue25942] subprocess.call SIGKILLs too liberally

2015-12-28 Thread SilentGhost
SilentGhost added the comment: The code was introduced to solve issue 12494, so I'm adding Victor to weigh in. -- nosy: +SilentGhost, haypo versions: +Python 3.5, Python 3.6 -Python 3.3 ___ Python tracker <http://bugs.python.org/is

[issue25973] Segmentation fault with nonlocal and two underscores

2015-12-29 Thread SilentGhost
Changes by SilentGhost : -- components: +Interpreter Core versions: +Python 3.5, Python 3.6 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue25

[issue25976] telnetlib SyntaxError: invalid syntax

2015-12-29 Thread SilentGhost
SilentGhost added the comment: The host ip needs to be supplied as a string: telnetlib.Telnet(host='192.168.1.15', port=3490, timeout=5) -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open -> closed

[issue19475] Add timespec optional flag to datetime isoformat() to choose the precision

2015-12-29 Thread SilentGhost
Changes by SilentGhost : -- stage: patch review -> commit review ___ Python tracker <http://bugs.python.org/issue19475> ___ ___ Python-bugs-list mailing list Un

[issue25977] Typo fixes in Lib/tokenize.py

2015-12-29 Thread SilentGhost
Changes by SilentGhost : -- nosy: +meador.inge ___ Python tracker <http://bugs.python.org/issue25977> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25916] wave module readframes now returns bytes not str

2016-01-01 Thread SilentGhost
SilentGhost added the comment: Here is the updated patch. -- Added file: http://bugs.python.org/file41465/issue25916_3.diff ___ Python tracker <http://bugs.python.org/issue25

[issue25916] wave module readframes now returns bytes not str

2016-01-01 Thread SilentGhost
Changes by SilentGhost : Added file: http://bugs.python.org/file41466/issue25916_4.diff ___ Python tracker <http://bugs.python.org/issue25916> ___ ___ Python-bugs-list m

[issue25997] Tarfile.add with bytes path is failling

2016-01-02 Thread SilentGhost
Changes by SilentGhost : -- components: +Library (Lib) -Unicode nosy: +lars.gustaebel versions: +Python 3.5, Python 3.6 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue25

[issue25999] Add support of native number in bin()

2016-01-03 Thread SilentGhost
Changes by SilentGhost : -- components: +Interpreter Core -Argument Clinic versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issue25

[issue26002] make statistics.median_grouped more efficient

2016-01-03 Thread SilentGhost
Changes by SilentGhost : -- nosy: +steven.daprano versions: -Python 3.4 ___ Python tracker <http://bugs.python.org/issue26002> ___ ___ Python-bugs-list mailin

[issue26022] string.replace(' ', ' ') has to be called 2 times before it works

2016-01-06 Thread SilentGhost
SilentGhost added the comment: Could you provide us with a sample file that demonstrates this behaviour? -- nosy: +SilentGhost ___ Python tracker <http://bugs.python.org/issue26

[issue26026] True%2 is True

2016-01-06 Thread SilentGhost
SilentGhost added the comment: Arithmetic operations should not be used with booleans, they happen to work due to boolean bean a subclass of int. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open -> closed type: -&

[issue26028] .sort() Causing Strings to Be Listed on the same line

2016-01-06 Thread SilentGhost
SilentGhost added the comment: Please use stackoverflow or python-tutor list to get help on this. https://mail.python.org/pipermail/tutor/ What it looks like is the problem with your text editor not being able to support EOL characters from a different OS. -- nosy: +SilentGhost

[issue26047] argparse.ArgumentError documentation wrong

2016-01-08 Thread SilentGhost
SilentGhost added the comment: Christof, you'd have to demonstrate the issue in more than just words. The returned status code is hard-coded to be 2 in the error method and it does end up being 2 when i run, could you post some output that led you to believe that it is 1? --

[issue11440] fix_callable should be dropped from lib2to3 / changed

2016-01-09 Thread SilentGhost
Changes by SilentGhost : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue11440> ___ ___

[issue26064] directory is getting separated

2016-01-09 Thread SilentGhost
SilentGhost added the comment: It behaves exactly as described in documentation, the only thing I could suggest is to re-read the following for details: https://docs.python.org/3/library/os.path.html#os.path.split -- nosy: +SilentGhost resolution: -> not a bug stage: -> re

[issue26062] IPython4 bash magic ! with {} does not work with Python 3.5.1

2016-01-09 Thread SilentGhost
SilentGhost added the comment: > It seems to me, that this change in python is not nessesary. > I don't, know how to find the commit, message who has changed this and why. It was done in issue 13598. It's a bit puzzling that IPython decided to depend on behaviour of a pri

[issue26076] redundant checks in tok_get in Parser\tokenizer.c

2016-01-10 Thread SilentGhost
Changes by SilentGhost : -- keywords: +patch nosy: +benjamin.peterson stage: -> patch review versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue26076] redundant checks in tok_get in Parser\tokenizer.c

2016-01-10 Thread SilentGhost
SilentGhost added the comment: The patch indeed would be more useful, though I'd suggest to actually delete the lines you think should be deleted, rather than just leave the commented out. -- nosy: +SilentGhost ___ Python tracker

[issue26076] redundant checks in tok_get in Parser\tokenizer.c

2016-01-10 Thread SilentGhost
Changes by SilentGhost : -- versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issue26076> ___ ___

[issue26079] Build with Visual Studio 2015 using PlatformToolset=v120

2016-01-11 Thread SilentGhost
Changes by SilentGhost : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware type: crash -> compile error ___ Python tracker <http://bugs.python.org/issu

[issue22642] trace module: unclear error message

2016-01-11 Thread SilentGhost
SilentGhost added the comment: I could submit a patch, but I'd switch over from getopt to argparse. I think this exactly the case when such a change is warranted. -- nosy: +SilentGhost ___ Python tracker <http://bugs.python.org/is

[issue22642] trace module: convert to argparse

2016-01-12 Thread SilentGhost
SilentGhost added the comment: Here is the patch that incorporates earlier changes from Vajrasky's patch as well as wording from Evan's patch in issue24649. I've extended the test of failures, but I'm not sure if much can be done about the test of successful executions. I&

[issue24649] python -mtrace --help is wrong

2016-01-12 Thread SilentGhost
SilentGhost added the comment: A re-write using argparse is submitted in the issue22642, that's why I'm closing this issue. Changes from Evan's patch were incorporated in the submitted patch there. ------ nosy: +SilentGhost resolution: -> out of date stage: needs patch

[issue22642] trace module: convert to argparse

2016-01-12 Thread SilentGhost
SilentGhost added the comment: Here is the updated version of the patch that addresses Senthil's comments. Besides re-flowing code, I've also added enforcement of --summary switch and re-factored and expanded the test_failures. It probably would be good if someone could test this

[issue26103] Contradiction in definition of "data descriptor" between (dotted lookup behavior/datamodel documentation) and (inspect lib/descriptor how-to)

2016-01-14 Thread SilentGhost
Changes by SilentGhost : -- assignee: -> docs@python components: +Documentation, Library (Lib) nosy: +docs@python, yselivanov stage: -> needs patch versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4 ___ Python tracker

[issue26096] '*' glob string matches dot files in pathlib

2016-01-14 Thread SilentGhost
Changes by SilentGhost : -- components: +Library (Lib) nosy: +gvanrossum, pitrou versions: +Python 3.6 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue26

[issue25957] sockaddr_l2 lacks CID, address type (AF_BLUETOOTH sockets)

2016-01-14 Thread SilentGhost
Changes by SilentGhost : -- components: +Library (Lib) nosy: +haypo ___ Python tracker <http://bugs.python.org/issue25957> ___ ___ Python-bugs-list mailin

[issue25602] Add support for EVFILT_USER kqueue filter

2016-01-14 Thread SilentGhost
Changes by SilentGhost : -- nosy: +haypo stage: -> patch review ___ Python tracker <http://bugs.python.org/issue25602> ___ ___ Python-bugs-list mailing list Un

[issue26038] zipfile cannot handle zip files where the archive size for a file does not match actual contents

2016-01-14 Thread SilentGhost
Changes by SilentGhost : -- nosy: +alanmcintyre, serhiy.storchaka, twouters versions: +Python 3.5, Python 3.6 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue26

[issue25491] ftplib.sendcmd only accepts string

2016-01-14 Thread SilentGhost
Changes by SilentGhost : -- nosy: +giampaolo.rodola versions: +Python 3.6 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue25491> ___ ___ Python-bug

[issue24945] Expose Py_TPFLAGS_ values from Python

2016-01-14 Thread SilentGhost
Changes by SilentGhost : -- nosy: +benjamin.peterson versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issue24945> ___ ___ Python-bugs-list mailin

[issue25753] Reference leaks in test_smtplib

2016-01-14 Thread SilentGhost
SilentGhost added the comment: Serhiy, I cannot reproduce these leaks on recent checkout. Is this something that's still happens for you? -- nosy: +SilentGhost ___ Python tracker <http://bugs.python.org/is

[issue26112] Error on example using "dialect" parameter. have to be: "dialect=dialect"

2016-01-14 Thread SilentGhost
SilentGhost added the comment: No, the shown code works just fine. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue26113] pathlib p.match('') should return False rather than raising exception

2016-01-14 Thread SilentGhost
Changes by SilentGhost : -- components: +Library (Lib) nosy: +gvanrossum, pitrou versions: +Python 3.6 -Python 3.5 ___ Python tracker <http://bugs.python.org/issue26

[issue26116] CSV-module. The example code don't work. Have to be: reader = csv.reader(csvfile, dialect=dialect)

2016-01-14 Thread SilentGhost
SilentGhost added the comment: Vasyl, this line in your code is causing the problem: for row in readed: The error reasonably clear states that it's due to your `fieldnames' parameter being non-iterable. Again, this has nothing whatsoever to do with `dialect' argument and d

[issue26115] pathlib.glob('**') returns only directories

2016-01-14 Thread SilentGhost
SilentGhost added the comment: It is, however, exactly what documentation says it should do: > The “**” pattern means “this directory and all subdirectories, recursively”. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open

[issue26102] access violation in PyErrFetch if tcur==null in PyGILState_Release

2016-01-14 Thread SilentGhost
Changes by SilentGhost : -- nosy: +benjamin.peterson ___ Python tracker <http://bugs.python.org/issue26102> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24950] FAIL: test_expanduser when $HOME=/

2016-01-14 Thread SilentGhost
SilentGhost added the comment: For posixpath the fix is straightforward: just skip that assert if the home ends up being '/' (the '/' is tested above). For pathlib, I'm not entirely sure what the fix should be. -- nosy: +SilentGhost, pitrou versions: +Pytho

[issue25682] __package__ not set to None under pdb in Python 3

2016-01-14 Thread SilentGhost
Changes by SilentGhost : -- nosy: +brett.cannon, eric.snow, ncoghlan ___ Python tracker <http://bugs.python.org/issue25682> ___ ___ Python-bugs-list mailin

[issue26092] doctest should allow custom sys.displayhook

2016-01-15 Thread SilentGhost
Changes by SilentGhost : -- nosy: +georg.brandl versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issue26092> ___ ___ Python-bugs-list mailin

[issue26072] pdb fails to access variables closed over

2016-01-15 Thread SilentGhost
Changes by SilentGhost : -- nosy: +georg.brandl type: -> behavior ___ Python tracker <http://bugs.python.org/issue26072> ___ ___ Python-bugs-list mai

[issue26124] shlex.quote and pipes.quote do not quote shell keywords

2016-01-15 Thread SilentGhost
Changes by SilentGhost : -- components: +Library (Lib) -Extension Modules nosy: +eric.araujo versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issue26

[issue26123] http.client status code constants incompatible with Python 3.4

2016-01-15 Thread SilentGhost
Changes by SilentGhost : -- keywords: +3.5regression nosy: +serhiy.storchaka type: -> behavior versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issu

[issue26118] String performance issue using single quotes

2016-01-15 Thread SilentGhost
SilentGhost added the comment: poostenr, this is demonstrably not a problem with the CPython, which this bug tracker is about. There are few options available on the internet if you need help with your code: mailing lists and irc are among them. -- nosy: +SilentGhost resolution

[issue26126] Possible subtle bug when normalizing and str.translate()ing

2016-01-15 Thread SilentGhost
Changes by SilentGhost : -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue26126> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue26126] Possible subtle bug when normalizing and str.translate()ing

2016-01-15 Thread SilentGhost
SilentGhost added the comment: Mark, your XFORMS dictionary contains this entry: 0x00C6: "ae" It should be 'AE'. The same applies to 0x0152: "oe" which should be 'OE'. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved

[issue26127] Broken link in docs for tokenize

2016-01-15 Thread SilentGhost
SilentGhost added the comment: Here is the patch. Most of the fixes are however for the tokenize function that was for whatever reason linked to the module. -- keywords: +patch nosy: +SilentGhost stage: -> patch review type: -> behavior Added file: http://bugs.python.org/fil

[issue26130] redundant local copy of a char pointer in classify in Parser\parser.c

2016-01-15 Thread SilentGhost
Changes by SilentGhost : -- nosy: +benjamin.peterson, brett.cannon, georg.brandl, ncoghlan, yselivanov ___ Python tracker <http://bugs.python.org/issue26

[issue26003] Issues with PyEval_InitThreads and PyGILState_Ensure

2016-01-15 Thread SilentGhost
Changes by SilentGhost : -- nosy: +haypo ___ Python tracker <http://bugs.python.org/issue26003> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25458] ftplib: command response shift - mismatch

2016-01-16 Thread SilentGhost
Changes by SilentGhost : -- nosy: +giampaolo.rodola versions: +Python 3.6 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue25458> ___ ___ Python-bug

[issue24905] Allow incremental I/O to blobs in sqlite3

2016-01-16 Thread SilentGhost
Changes by SilentGhost : -- components: +Extension Modules nosy: +ghaering ___ Python tracker <http://bugs.python.org/issue24905> ___ ___ Python-bugs-list mailin

[issue26132] 2.7.11 Windows Installer issues on Win2008R2

2016-01-16 Thread SilentGhost
Changes by SilentGhost : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <http://bugs.python.org/issue26

[issue26129] Difference in behaviour with grp.getgrgid and pwd.getpwuid

2016-01-17 Thread SilentGhost
SilentGhost added the comment: I'm adding Larry since it was his implementation of _Py_Uid_Converter in issue15301 that seems to lead to this behaviour. -- nosy: +SilentGhost, larry versions: +Python 3.6 -Python 2.7, Python 3.5 ___ Python tr

[issue25982] multiprocessing docs for Namespace lacks class definition

2016-01-17 Thread SilentGhost
Changes by SilentGhost : -- components: +Documentation ___ Python tracker <http://bugs.python.org/issue25982> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24906] asyncore asynchat hanging on ssl

2016-01-17 Thread SilentGhost
Changes by SilentGhost : -- nosy: +giampaolo.rodola, josiahcarlson, stutzbach ___ Python tracker <http://bugs.python.org/issue24906> ___ ___ Python-bugs-list m

[issue25724] SSLv3 test failure on Ubuntu 16.04 LTS

2016-01-17 Thread SilentGhost
Changes by SilentGhost : -- nosy: +alex, christian.heimes, dstufft, giampaolo.rodola, janssen, pitrou stage: -> patch review versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issu

[issue19475] Add timespec optional flag to datetime isoformat() to choose the precision

2016-01-17 Thread SilentGhost
SilentGhost added the comment: > I there anything else I can do for this? I think you've done all you could, it's just someone needs to commit it. I don't think they're being rude on purpose - it's just that there are so many committers in the nosy list that no on

[issue25627] distutils : file "bdist_rpm.py" does not quote filenames when executing the rpm command

2016-01-17 Thread SilentGhost
SilentGhost added the comment: Eric, Donald, is any one of you able to test this? -- ___ Python tracker <http://bugs.python.org/issue25627> ___ ___ Python-bug

[issue19475] Add timespec optional flag to datetime isoformat() to choose the precision

2016-01-17 Thread SilentGhost
SilentGhost added the comment: Yes, version 12 is the final patch. It doesn't add those options. To copy my opinion from the rietveld (https://bugs.python.org/review/19475/#msg14): > I don't really think nanoseconds belong here. If they don't > exist anywhere else in t

[issue19475] Add timespec optional flag to datetime isoformat() to choose the precision

2016-01-17 Thread SilentGhost
SilentGhost added the comment: > What about milliseconds? I'll leave it for Guido to make a call on > nanoseconds. My vote is +0.5. The only reason I didn't mention milliseconds because they exist in timedelta instantiation. And really, being the only place in the whole m

[issue26153] PyImport_GetModuleDict: no module dictionary! when `__del__` triggers a warning

2016-01-19 Thread SilentGhost
Changes by SilentGhost : -- nosy: +brett.cannon ___ Python tracker <http://bugs.python.org/issue26153> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26150] SequenceMatcher's algorithm is not correct

2016-01-19 Thread SilentGhost
Changes by SilentGhost : -- components: +Library (Lib) nosy: +rhettinger stage: -> test needed ___ Python tracker <http://bugs.python.org/issue26150> ___ _

[issue26155] 3.5.1 installer issue on Win 7 32 bit

2016-01-19 Thread SilentGhost
Changes by SilentGhost : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <http://bugs.python.org/issue26

[issue26169] Buffer OverFlow in IDLE

2016-01-20 Thread SilentGhost
Changes by SilentGhost : -- nosy: +kbk, roger.serwy, terry.reedy title: Buffer OverFlow -> Buffer OverFlow in IDLE ___ Python tracker <http://bugs.python.org/issu

[issue26185] zipfile.ZipInfo slots can raise unexpected AttributeError

2016-01-23 Thread SilentGhost
Changes by SilentGhost : -- nosy: +alanmcintyre, serhiy.storchaka, twouters ___ Python tracker <http://bugs.python.org/issue26185> ___ ___ Python-bugs-list mailin

[issue26185] zipfile.ZipInfo slots can raise unexpected AttributeError

2016-01-23 Thread SilentGhost
Changes by SilentGhost : -- stage: -> patch review ___ Python tracker <http://bugs.python.org/issue26185> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue26183] 2.7.11 won't clean install on Windows 10 x64

2016-01-23 Thread SilentGhost
Changes by SilentGhost : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <http://bugs.python.org/issue26

[issue26182] Deprecation warnings for the future async and await keywords

2016-01-23 Thread SilentGhost
Changes by SilentGhost : -- components: +asyncio nosy: +giampaolo.rodola, gvanrossum, haypo, pitrou, yselivanov ___ Python tracker <http://bugs.python.org/issue26

[issue26181] argparse can't handle positional argument after list (help message is wrong)

2016-01-23 Thread SilentGhost
Changes by SilentGhost : -- nosy: +bethard versions: +Python 3.5, Python 3.6 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue26181> ___ ___ Python-bug

[issue26188] Provide more helpful error message when `await` is called inside non-`async` method

2016-01-24 Thread SilentGhost
Changes by SilentGhost : -- components: +asyncio nosy: +giampaolo.rodola, gvanrossum, haypo, pitrou, yselivanov ___ Python tracker <http://bugs.python.org/issue26

[issue26192] python3 k1om dissociation permanence: libffi

2016-01-24 Thread SilentGhost
Changes by SilentGhost : -- components: +Extension Modules nosy: +doko versions: -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue26

[issue26191] pip on Windows doesn't honor Case

2016-01-24 Thread SilentGhost
SilentGhost added the comment: Assuming that you're talking about https://pypi.python.org/pypi/crypto/ - it is unfortunate that pip is so lax with capitalisation rules when installing a package, but as far as I can see there isn't a "Crypto" package anywhere and you'r

[issue26196] Argparse breaks when a switch is given an argument beginning with a dash

2016-01-25 Thread SilentGhost
SilentGhost added the comment: If you're to drop the space between the argument and its value, e.g. try_args('-a-a'), it seems to work as intended. The third example ( try_args("-a", "--")) still wouldn't work, but it looks like a reasonable workarou

[issue26209] TypeError in smtpd module with string arguments

2016-01-26 Thread SilentGhost
Changes by SilentGhost : -- nosy: +giampaolo.rodola ___ Python tracker <http://bugs.python.org/issue26209> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26214] textwrap should minimize number of breaks in extra long words

2016-01-27 Thread SilentGhost
Changes by SilentGhost : -- nosy: +georg.brandl versions: +Python 3.6 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue26214> ___ ___ Python-bugs-list m

[issue26223] decimal.to_eng_string() does not implement engineering notation in all cases.

2016-01-27 Thread SilentGhost
Changes by SilentGhost : -- versions: +Python 3.6 -Python 2.7 ___ Python tracker <http://bugs.python.org/issue26223> ___ ___ Python-bugs-list mailing list Unsub

[issue26230] Cookies do not correct if cookiename includes [ or ]

2016-01-28 Thread SilentGhost
New submission from SilentGhost: You'd have to provide more information if you'd like that looked into. -- nosy: +SilentGhost versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.o

[issue20598] argparse docs: '7'.split() is confusing magic

2016-01-28 Thread SilentGhost
SilentGhost added the comment: I think it's worth saying that this wasn't a random choice intended to confuse beginners. Strings used represent input that is identical to the command-line input: if one wants to test it, one can just copy that string directly into the propmpt, i

[issue26232] Mock(spec=spec) has no effect

2016-01-28 Thread SilentGhost
Changes by SilentGhost : -- nosy: +michael.foord ___ Python tracker <http://bugs.python.org/issue26232> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26229] Make number serialization ES6/V8 compatible

2016-01-28 Thread SilentGhost
Changes by SilentGhost : -- components: +Extension Modules -Interpreter Core nosy: +ezio.melotti, pitrou, rhettinger versions: +Python 3.6 -Python 3.5 ___ Python tracker <http://bugs.python.org/issue26

[issue26241] repr() and str() are identical for floats in 3.5

2016-01-30 Thread SilentGhost
SilentGhost added the comment: Would you mind linking to the relevant part of documentation? -- nosy: +SilentGhost ___ Python tracker <http://bugs.python.org/issue26

[issue26247] Document Chrome/Chromium for python2.7

2016-01-31 Thread SilentGhost
SilentGhost added the comment: It's due to issue 17536 and particularly 5a1429e9b621 I presume doko would be happy to follow up on that. -- nosy: +SilentGhost, doko ___ Python tracker <http://bugs.python.org/is

[issue26255] symtable.Symbol.is_referenced() returns false for valid use

2016-02-01 Thread SilentGhost
Changes by SilentGhost : -- components: +Extension Modules, Library (Lib) nosy: +benjamin.peterson ___ Python tracker <http://bugs.python.org/issue26255> ___ ___

[issue26263] Serialize array.array to JSON by default

2016-02-02 Thread SilentGhost
Changes by SilentGhost : -- components: +Extension Modules -Interpreter Core nosy: +ezio.melotti, pitrou, rhettinger ___ Python tracker <http://bugs.python.org/issue26

[issue26267] UUID docs should say how to get "standard form"

2016-02-02 Thread SilentGhost
SilentGhost added the comment: Well, you seem to suggest we add something to documentation to accommodate people who don't read it in the first place. -- ___ Python tracker <http://bugs.python.org/is

[issue26267] UUID docs should say how to get "standard form"

2016-02-02 Thread SilentGhost
SilentGhost added the comment: The docs seem to clearly show a str(x) as the way to produce the desired form (without braces). https://docs.python.org/3/library/uuid.html#example -- nosy: +SilentGhost ___ Python tracker <http://bugs.python.

[issue26115] pathlib.glob('**') returns only directories

2016-02-03 Thread SilentGhost
Changes by SilentGhost : -- nosy: +pitrou ___ Python tracker <http://bugs.python.org/issue26115> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26271] freeze.py makefile uses the wrong flags variables

2016-02-04 Thread SilentGhost
Changes by SilentGhost : -- nosy: +twouters ___ Python tracker <http://bugs.python.org/issue26271> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26269] zipfile should call lstat instead of stat if available

2016-02-04 Thread SilentGhost
Changes by SilentGhost : -- components: +Extension Modules nosy: +alanmcintyre, serhiy.storchaka, twouters versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issue26

[issue26283] zipfile can not handle the path build by os.path.join()

2016-02-04 Thread SilentGhost
Changes by SilentGhost : -- nosy: +alanmcintyre, serhiy.storchaka, twouters versions: +Python 3.6 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue26

[issue26285] Garbage collection of unused input sections from CPython binaries

2016-02-04 Thread SilentGhost
Changes by SilentGhost : -- nosy: +benjamin.peterson, brett.cannon, haypo, skrah, yselivanov ___ Python tracker <http://bugs.python.org/issue26285> ___ ___ Pytho

<    6   7   8   9   10   11   12   13   14   15   >