[issue26299] wsgiref.util FileWrapper raises ValueError: I/O operation on closed file.

2016-02-07 Thread SilentGhost
Changes by SilentGhost : -- nosy: +pje versions: +Python 3.6 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue26299> ___ ___ Python-bugs-list mailin

[issue25226] "suffix" attribute not documented in logging.TimedRotatingFileHandler

2016-02-07 Thread SilentGhost
SilentGhost added the comment: It isn't documented because it's an internal attribute. If it did work for someone, it's by accident. Naturally, Vinay would have to make a final judgement regarding this, but I'd be inclined to close as not a bug. -

[issue24950] FAIL: test_expanduser when $HOME=/

2016-02-07 Thread SilentGhost
SilentGhost added the comment: Here is the patch that addresses the issue in both tests. Felix, could you test it? -- keywords: +patch stage: -> patch review Added file: http://bugs.python.org/file41842/issue24950.diff ___ Python tracker &l

[issue24950] FAIL: test_expanduser when $HOME=/

2016-02-07 Thread SilentGhost
SilentGhost added the comment: > What if HOME is "//"? Is this possible? What would be the result of these tests? Would they fail? As far as I understand my patch is just fixing problem introduced by fixes from issue 17809. -- ___ P

[issue25226] "suffix" attribute not documented in logging.TimedRotatingFileHandler

2016-02-07 Thread SilentGhost
Changes by SilentGhost : -- stage: -> resolved ___ Python tracker <http://bugs.python.org/issue25226> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue25985] Use sys.version_info instead of sys.version

2016-02-08 Thread SilentGhost
SilentGhost added the comment: > On a related note, I think that > https://hg.python.org/cpython/file/tip/Makefile.pre.in#l571 should get the > same treatment. Agree, that should be included in the patch. -- nosy: +SilentGhost ___ Pytho

[issue25985] Use sys.version_info instead of sys.version

2016-02-10 Thread SilentGhost
SilentGhost added the comment: No further comments from me. -- ___ Python tracker <http://bugs.python.org/issue25985> ___ ___ Python-bugs-list mailing list Unsub

[issue26333] Multiprocessing imap hangs when generator input errors

2016-02-10 Thread SilentGhost
Changes by SilentGhost : -- nosy: +jnoller, sbt versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue26333> ___ ___ Python-bugs-list m

[issue26334] bytes.translate() doesn't take keyword arguments; docs suggests it does

2016-02-10 Thread SilentGhost
SilentGhost added the comment: I don't think docs suggest that in any way. The keyword arguments are typically described like this: https://docs.python.org/3/library/stdtypes.html#str.split bytes.translate has a typical signature of a function with optional positional argu

[issue26356] Registration

2016-02-13 Thread SilentGhost
Changes by SilentGhost : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue26356> ___ ___

[issue26359] CPython build options for out-of-the box performance

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

[issue15873] datetime: add ability to parse RFC 3339 dates and times

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

[issue15873] datetime: add ability to parse RFC 3339 dates and times

2016-02-18 Thread SilentGhost
SilentGhost added the comment: Mathieu, nothing was attached. The penalty's worth only a few if statements, I wouldn't worry too much about it. Besides, a C version is going to be provided as well, right? Perhaps the following approach might solve the subclasses problem: regex = di

[issue15873] datetime: add ability to parse RFC 3339 dates and times

2016-02-18 Thread SilentGhost
SilentGhost added the comment: Probably only other solution that I see is to add the third argument, an actual class, e.g.: _parse_isodatetime(cls, string, datetime) -- ___ Python tracker <http://bugs.python.org/issue15

[issue26387] Race condition in sqlite module

2016-02-18 Thread SilentGhost
Changes by SilentGhost : -- components: +Extension Modules nosy: +ghaering versions: -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue26

[issue26385] the call of tempfile.NamedTemporaryFile fails and leaves a file on the disk

2016-02-18 Thread SilentGhost
SilentGhost added the comment: Here is a naïve fix including a test. -- keywords: +patch nosy: +SilentGhost, georg.brandl stage: -> patch review versions: +Python 3.5, Python 3.6 Added file: http://bugs.python.org/file41959/issue26385.d

[issue26381] Add 'geo' URI scheme (RFC 5870) to urllib.parse.uses_params

2016-02-18 Thread SilentGhost
New submission from SilentGhost: Here is the spec: https://tools.ietf.org/html/rfc5870#section-3.3 -- nosy: +SilentGhost, orsenthil ___ Python tracker <http://bugs.python.org/issue26

[issue26374] concurrent_futures Executor.map semantics better specified in docs

2016-02-18 Thread SilentGhost
Changes by SilentGhost : -- components: +Library (Lib) nosy: +bquinlan ___ Python tracker <http://bugs.python.org/issue26374> ___ ___ Python-bugs-list mailin

[issue26370] shelve filename inconsistent between platforms

2016-02-18 Thread SilentGhost
SilentGhost added the comment: Would you like to try to submit a patch for a solution you think most appropriate? -- nosy: +SilentGhost, georg.brandl type: behavior -> enhancement versions: +Python 3.6 -Python 3.5 ___ Python tracker &l

[issue26385] the call of tempfile.NamedTemporaryFile fails and leaves a file on the disk

2016-02-18 Thread SilentGhost
SilentGhost added the comment: I wonder if Victor could clarify why bare except wasn't used in the python3 version. Anyway, here is the updated patch testing for TypeError as well. -- nosy: +haypo Added file: http://bugs.python.org/file41968/issue26385_2

[issue26385] the call of tempfile.NamedTemporaryFile fails and leaves a file on the disk

2016-02-20 Thread SilentGhost
SilentGhost added the comment: Here is the updated patch including fixes for except and order of deletion. -- Added file: http://bugs.python.org/file41979/issue26385_3.diff ___ Python tracker <http://bugs.python.org/issue26

[issue26385] the call of tempfile.NamedTemporaryFile fails and leaves a file on the disk

2016-02-21 Thread SilentGhost
SilentGhost added the comment: Then, I think the TypeError check could be dropped and 'wr' replaced by an obviously wrong value, both seem fairly trivial. I don't have a working 2.7 checkout, so if anyone wants to extend the fix to that branch, they'r

[issue26401] Error in documentation for "compile" built-in function

2016-02-21 Thread SilentGhost
SilentGhost added the comment: Here is the patch. -- keywords: +patch nosy: +SilentGhost versions: +Python 3.6 Added file: http://bugs.python.org/file41985/issue26401.diff ___ Python tracker <http://bugs.python.org/issue26

[issue26402] Regression in Python 3.5 xmlrpc.client, raises RemoteDisconnected seemingly randomly.

2016-02-21 Thread SilentGhost
SilentGhost added the comment: The code in question[0] was introduced in issue 3566: perhaps Martin could comment on existing implementation. [0] https://hg.python.org/cpython/rev/eba80326ba53 -- components: +Library (Lib) -IO nosy: +SilentGhost, martin.panter stage: -> test nee

[issue26401] Error in documentation for "compile" built-in function

2016-02-21 Thread SilentGhost
SilentGhost added the comment: TypeError is raised in 3.4 -- ___ Python tracker <http://bugs.python.org/issue26401> ___ ___ Python-bugs-list mailing list Unsub

[issue26401] Error in documentation for "compile" built-in function

2016-02-21 Thread SilentGhost
SilentGhost added the comment: Updated patch. -- Added file: http://bugs.python.org/file41989/issue26401_2.diff ___ Python tracker <http://bugs.python.org/issue26

[issue25910] Fixing links in documentation

2016-02-22 Thread SilentGhost
Changes by SilentGhost : -- status: open -> languishing ___ Python tracker <http://bugs.python.org/issue25910> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue26411] Suggestion concerning compile-time warnings

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

[issue26405] tkinter askopenfilename doubleclick issue on windows

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

[issue25801] ResourceWarning in test_zipfile64

2016-02-22 Thread SilentGhost
Changes by SilentGhost : -- status: open -> languishing ___ Python tracker <http://bugs.python.org/issue25801> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue26430] quote marks problem on loaded file

2016-02-24 Thread SilentGhost
SilentGhost added the comment: Could you please upload the test file that would allow us to reproduce this behaviour. -- nosy: +SilentGhost ___ Python tracker <http://bugs.python.org/issue26

[issue26430] quote marks problem on loaded file

2016-02-24 Thread SilentGhost
SilentGhost added the comment: OK, sorry, but this is just nonsense. What most likely happens in your case is that the file doesn't contain a standard ASCII double quote, but one of it's fancy siblings. For the note: I did test and naturally wasn't able to

[issue25910] Fixing links in documentation

2016-02-27 Thread SilentGhost
SilentGhost added the comment: Perhaps, I'm misreading the log output, but it seems to me that it's Doc/tools/susp-ignored.csv that needs updating. Here is the attached patch. -- ___ Python tracker <http://bugs.python.o

[issue26385] the call of tempfile.NamedTemporaryFile fails and leaves a file on the disk

2016-02-29 Thread SilentGhost
Changes by SilentGhost : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue26452] Wrong line number attributed to comprehension expressions

2016-03-01 Thread SilentGhost
Changes by SilentGhost : -- nosy: +haypo, serhiy.storchaka versions: -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue26

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

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

[issue26473] Python 3.5 not run

2016-03-02 Thread SilentGhost
SilentGhost added the comment: As the installer says and as mentioned in documentation a minimum supported versions is Windows Vista. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open -> closed ___ Pytho

[issue26499] http.client.IncompleteRead from HTTPResponse read after part reading file

2016-03-07 Thread SilentGhost
SilentGhost added the comment: As far as I'm able to track it, it was a refactoring in issue 19009 that is responsible for this regression (rev 49017c391564). I'm adding Kristján, so that he'd have a look at the attached fix and test. -- keywords: +3.5regress

[issue26499] http.client.IncompleteRead from HTTPResponse read after part reading file

2016-03-09 Thread SilentGhost
SilentGhost added the comment: Here is the updated patch. I only included the additional fix for read1 since readlines is not overwritten in the HTTPConnection. Not sure how to write test for it, does it need a much longer body (compared to the one in tests) to produce this behaviour? The

[issue26499] http.client.IncompleteRead from HTTPResponse read after part reading file

2016-03-09 Thread SilentGhost
SilentGhost added the comment: All the highlighted issue are now fixed. The limit on n in read1 wasn't tested. Your suggestion regarding testing went a bit over my head, Martin. So, just trying to make sure we're on the same page. ExtendedReadTest, where I thought placing these new

[issue26532] build fails with address sanitizer

2016-03-10 Thread SilentGhost
Changes by SilentGhost : -- nosy: +benjamin.peterson, haypo, serhiy.storchaka versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issue26532> ___ ___

[issue12736] Request for python casemapping functions to use full not simple casemaps per Unicode's recommendation

2016-03-10 Thread SilentGhost
Changes by SilentGhost : -- versions: +Python 3.4, Python 3.5, Python 3.6 -Python 2.7 ___ Python tracker <http://bugs.python.org/issue12736> ___ ___ Python-bug

[issue26536] Add the SIO_LOOPBACK_FAST_PATH option to socket.ioctl

2016-03-11 Thread SilentGhost
Changes by SilentGhost : -- components: +Windows nosy: +paul.moore, pitrou, steve.dower, tim.golden, zach.ware stage: -> patch review ___ Python tracker <http://bugs.python.org/issu

[issue26499] http.client.IncompleteRead from HTTPResponse read after part reading file

2016-03-12 Thread SilentGhost
SilentGhost added the comment: OK, here is the patch including the tests that seem to exercise the behaviour. -- Added file: http://bugs.python.org/file42151/issue26499_4.diff ___ Python tracker <http://bugs.python.org/issue26

[issue26499] http.client.IncompleteRead from HTTPResponse read after part reading file

2016-03-13 Thread SilentGhost
SilentGhost added the comment: Updated patch addresses the rietveld comments. -- Added file: http://bugs.python.org/file42155/issue26499_5.diff ___ Python tracker <http://bugs.python.org/issue26

[issue26549] co_stacksize is calculated from unoptimized code

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

[issue26565] [ctypes] Add value attribute to non basic pointers.

2016-03-15 Thread SilentGhost
Changes by SilentGhost : -- nosy: +amaury.forgeotdarc, belopolsky, meador.inge versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issue26

[issue26560] Error in assertion in wsgiref.handlers.BaseHandler.start_response

2016-03-15 Thread SilentGhost
Changes by SilentGhost : -- nosy: +pje type: -> behavior versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issue26560> ___ ___ Python-bugs-lis

[issue26587] Possible duplicate entries in sys.path if .pth files are used with zip's

2016-03-18 Thread SilentGhost
SilentGhost added the comment: Could you provide a code example of your using addsitedir that results in duplicates? -- nosy: +SilentGhost stage: -> test needed versions: -Python 3.4 ___ Python tracker <http://bugs.python.org/issu

[issue26577] inspect.getclosurevars returns incorrect variable when using class member with the same name as other variable

2016-03-19 Thread SilentGhost
Changes by SilentGhost : -- nosy: +yselivanov type: -> behavior versions: -Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue26577> ___ _

[issue26580] Documentation for ftplib still references ftpmirror.py

2016-03-19 Thread SilentGhost
SilentGhost added the comment: This patch removes the offending paragraph. -- keywords: +patch nosy: +SilentGhost stage: -> patch review type: -> behavior versions: +Python 3.6 Added file: http://bugs.python.org/file42187/issue26580.diff ___

[issue26570] comma-separated cookies with expires header do not parse properly

2016-03-19 Thread SilentGhost
SilentGhost added the comment: This is not a regression and you can see that if you do print(SimpleCookie('A=B; expires=Thu, 01-Jan-1970 00:00:00 GMT, C=D')) The values of expires and Path attribute were parsed incorrectly, even though you got two cookies. The problem as far as I ca

[issue26583] test_timestamp_overflow fails

2016-03-19 Thread SilentGhost
Changes by SilentGhost : -- components: +Macintosh, Tests nosy: +ned.deily, ronaldoussoren type: -> behavior ___ Python tracker <http://bugs.python.org/issu

[issue26587] Possible duplicate entries in sys.path if .pth files are used with zip's

2016-03-20 Thread SilentGhost
SilentGhost added the comment: Thanks for this, Mandeep. I don't think it is entirely the same issue that Wolfgang is describing. He's particularly concerned about the clash of .zip files from the sys.path with ones coming from .pth files for example. And while the proposed fix wou

[issue26594] Tutorial example IndentationError?

2016-03-20 Thread SilentGhost
SilentGhost added the comment: Erwin, you could clearly see in the screenshot that the print call is indented, i.e. it starts in the 5th column, under letter "h" of the_world_is_flat. In what you've typed here one can clearly see that "p" of print is under "i&q

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

2016-03-20 Thread SilentGhost
Changes by SilentGhost : -- nosy: -SilentGhost ___ Python tracker <http://bugs.python.org/issue26267> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26599] segfault at 24 error 6 in python

2016-03-21 Thread SilentGhost
SilentGhost added the comment: This very much looks like a sentry problem. I'd suggest reporting it on their bug tracker. -- nosy: +SilentGhost resolution: -> third party stage: -> resolved status: open -> closed ___ Python

[issue26600] MagickMock __str__ sometimes returns MagickMock instead of str

2016-03-21 Thread SilentGhost
Changes by SilentGhost : -- nosy: +michael.foord, pitrou versions: +Python 3.6 -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue26

[issue26601] Use new madvise()'s MADV_FREE on the private heap

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

[issue26591] datetime datetime.time to datetime.time comparison does nothing

2016-03-21 Thread SilentGhost
SilentGhost added the comment: Jason, could you provide an actual paste of interactive interpreter session, so that any one could try to reproduce the issue. -- nosy: +SilentGhost stage: -> test needed type: -> behavior ___ Python tracker

[issue26582] asyncio documentation links to wrong CancelledError

2016-03-21 Thread SilentGhost
SilentGhost added the comment: In fact most of the :exc: reference are pointing explicitly to concurrent.futures.CancelledError (and those that don't probably should). It is interesting that you weren't able to make use of that exception, because in Lib/asyncio/futures.py#L23 it

[issue26605] Feature request: string method `to_file`

2016-03-22 Thread SilentGhost
SilentGhost added the comment: Those methods were added in 3.5, so no wonder many people would be unaware of them. I would suggest first taking such a proposal to python-ideas, since bug tracker is not a venue for proposing/advocating such sweeping changes to the language. -- nosy

[issue26606] logging.baseConfig is missing the encoding parameter

2016-03-22 Thread SilentGhost
Changes by SilentGhost : -- nosy: +vinay.sajip stage: -> patch review ___ Python tracker <http://bugs.python.org/issue26606> ___ ___ Python-bugs-list mai

[issue26611] assertRaises callableObj cannot be used as a keyword with args

2016-03-22 Thread SilentGhost
SilentGhost added the comment: Documentation [0] has callable listed as a positional argument, and this is how it should be used. [0] https://docs.python.org/2.7/library/unittest.html#unittest.TestCase.assertRaises -- nosy: +SilentGhost resolution: -> not a bug stage: -> re

[issue26587] Possible duplicate entries in sys.path if .pth files are used with zip's

2016-03-22 Thread SilentGhost
SilentGhost added the comment: I still think my fix is more appropriate as it ensures that known_paths and sys.path stay connected somehow. -- ___ Python tracker <http://bugs.python.org/issue26

[issue10894] Making stdlib APIs private

2016-03-22 Thread SilentGhost
SilentGhost added the comment: I wonder if the devguide would be a more suitable place for these guidelines. Here is the patch that adds them to stdblibchanges.rst -- keywords: +patch stage: needs patch -> patch review versions: +Python 3.5, Python 3.6 -Python 3.4 Added file: h

[issue26607] Rename a parameter in the function PyFile_FromFile

2016-03-22 Thread SilentGhost
Changes by SilentGhost : -- components: +Interpreter Core nosy: +benjamin.peterson, serhiy.storchaka stage: -> patch review ___ Python tracker <http://bugs.python.org/issu

[issue26607] Rename a parameter in the function PyFile_FromFile

2016-03-22 Thread SilentGhost
Changes by SilentGhost : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue26607> ___ ___ Pyth

[issue10894] Making stdlib APIs private

2016-03-23 Thread SilentGhost
Changes by SilentGhost : -- resolution: -> rejected stage: patch review -> resolved status: open -> closed type: -> behavior ___ Python tracker <http://bugs.python

[issue10908] Improvements to trace._Ignore

2016-03-23 Thread SilentGhost
Changes by SilentGhost : -- dependencies: -trace module compares directories as strings (--ignore-dir) resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue25805] Failure in test_pkgutil run from command-line

2016-03-23 Thread SilentGhost
SilentGhost added the comment: Upon further investigation it seems this particular test needs to be just skipped when running as __main__. -- keywords: +patch stage: -> patch review Added file: http://bugs.python.org/file42255/issue25805.d

[issue26619] 3.5.1 install fails on Windows Server 2008 R2 64-bit

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

[issue26391] Specialized sub-classes of Generic never call __init__

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

[issue26623] JSON encode: more informative error

2016-03-23 Thread SilentGhost
Changes by SilentGhost : -- nosy: +ezio.melotti, pitrou, rhettinger ___ Python tracker <http://bugs.python.org/issue26623> ___ ___ Python-bugs-list mailin

[issue26626] test_dbm_gnu

2016-03-23 Thread SilentGhost
Changes by SilentGhost : -- nosy: +georg.brandl versions: -Python 3.4 ___ Python tracker <http://bugs.python.org/issue26626> ___ ___ Python-bugs-list mailin

[issue26628] Segfault in cffi with ctypes.union argument

2016-03-23 Thread SilentGhost
Changes by SilentGhost : -- nosy: +amaury.forgeotdarc, belopolsky, meador.inge ___ Python tracker <http://bugs.python.org/issue26628> ___ ___ Python-bugs-list m

[issue26633] multiprocessing behavior combining daemon with non-daemon children inconsistent with threading

2016-03-24 Thread SilentGhost
Changes by SilentGhost : -- nosy: +jnoller, sbt ___ Python tracker <http://bugs.python.org/issue26633> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2016-03-24 Thread SilentGhost
SilentGhost added the comment: Could any one of the core developers have a look? Seems like a rather straightforward change. -- ___ Python tracker <http://bugs.python.org/issue26

[issue26640] xmlrpc.server imports xmlrpc.client

2016-03-25 Thread SilentGhost
Changes by SilentGhost : -- nosy: +loewis versions: +Python 3.6 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue26640> ___ ___ Python-bugs-list mailin

[issue26645] argparse prints help messages to stdout instead of stderr by default

2016-03-26 Thread SilentGhost
Changes by SilentGhost : -- nosy: +bethard versions: +Python 3.6 -Python 3.5 ___ Python tracker <http://bugs.python.org/issue26645> ___ ___ Python-bugs-list mailin

[issue26647] Wordcode

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

[issue26648] csv.reader Error message indicates to use deprecated

2016-03-27 Thread SilentGhost
SilentGhost added the comment: While the 'U' mode has been deprecated it doesn't mean that your example doesn't run in 3.5 - it runs just fine and will keep doing so until 4.0 I'm attaching patch that suggests using newline=None (even though it's a default value

[issue26649] Fail update installation: 'utf-8' codec can't decode

2016-03-27 Thread SilentGhost
Changes by SilentGhost : -- components: +Unicode nosy: +ezio.melotti, haypo type: -> behavior ___ Python tracker <http://bugs.python.org/issue26649> ___ ___ Py

[issue26650] calendar: OverflowErrors for year == 1 and firstweekday > 0

2016-03-27 Thread SilentGhost
SilentGhost added the comment: Here is the patch. Both this patch and the fix for #15421 might violate the documented behaviour of getting the full week's worth of dates. I wonder if that should also be documented. -- keywords: +patch nosy: +SilentGhost, rhettinger stage: -&g

[issue26648] csv.reader Error message indicates to use deprecated

2016-03-27 Thread SilentGhost
SilentGhost added the comment: Ah, the bit about csv module doing it's own newline handling is what I missed. Here is the updated patch. -- Added file: http://bugs.python.org/file42306/issue26648_2.diff ___ Python tracker <http://bugs.py

[issue26488] hashlib command line interface

2016-03-28 Thread SilentGhost
Changes by SilentGhost : -- dependencies: +argparse.FileType for '-' doesn't work for a mode of 'rb' nosy: +SilentGhost ___ Python tracker <http:

[issue26652] Cannot install Python 2.7.11 on Windows Server 2008 R2

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

[issue26657] Directory traversal with http.server and SimpleHTTPServer on windows

2016-03-28 Thread SilentGhost
Changes by SilentGhost : -- components: +Windows nosy: +martin.panter, paul.moore, steve.dower, tim.golden, zach.ware versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue26

[issue26660] tempfile.TemporaryDirectory() cleanup exception on Windows if readonly files created

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

[issue26659] slice() leaks memory when part of a cycle

2016-03-29 Thread SilentGhost
Changes by SilentGhost : -- nosy: +benjamin.peterson, georg.brandl, pitrou, yselivanov ___ Python tracker <http://bugs.python.org/issue26659> ___ ___ Python-bug

[issue25805] Failure in test_pkgutil run from command-line

2016-03-29 Thread SilentGhost
Changes by SilentGhost : -- nosy: +r.david.murray versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue25805> ___ ___ Python-bugs-list mailin

[issue26664] find a bug in activate.fish of venv of cpython3.6

2016-03-29 Thread SilentGhost
Changes by SilentGhost : -- nosy: +vinay.sajip ___ Python tracker <http://bugs.python.org/issue26664> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26488] hashlib command line interface

2016-03-29 Thread SilentGhost
SilentGhost added the comment: I've left some comment on rietveld yesterday, not sure if you got the e-mail. -- ___ Python tracker <http://bugs.python.org/is

[issue26673] Tkinter error when opening IDLE configuration menu

2016-03-30 Thread SilentGhost
Changes by SilentGhost : -- components: +Tkinter nosy: +gpolo, kbk, roger.serwy, serhiy.storchaka, terry.reedy ___ Python tracker <http://bugs.python.org/issue26

[issue26655] pathlib glob case sensitivity issue on Windows

2016-03-31 Thread SilentGhost
Changes by SilentGhost : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue26655> ___ ___

[issue26677] pyvenv: activate.fish breaks $PATH for bash scripts

2016-03-31 Thread SilentGhost
Changes by SilentGhost : -- nosy: +vinay.sajip type: -> behavior ___ Python tracker <http://bugs.python.org/issue26677> ___ ___ Python-bugs-list mai

[issue26488] hashlib command line interface

2016-03-31 Thread SilentGhost
SilentGhost added the comment: The mailing system is acting up, so just for the record, I've left comments on rietveld regarding md5sum-style patch. -- ___ Python tracker <http://bugs.python.org/is

[issue26680] Incorporating float.is_integer into the numeric tower and Decimal

2016-03-31 Thread SilentGhost
Changes by SilentGhost : -- components: +Extension Modules nosy: +facundobatista, mark.dickinson, rhettinger, skrah stage: -> patch review versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issu

[issue26673] Tkinter error when opening IDLE configuration menu

2016-04-01 Thread SilentGhost
Changes by SilentGhost : -- versions: +Python 2.7 ___ Python tracker <http://bugs.python.org/issue26673> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26670] Add a developer mode: -X dev command line option

2016-04-01 Thread SilentGhost
Changes by SilentGhost : -- resolution: fixed -> rejected stage: -> resolved ___ Python tracker <http://bugs.python.org/issue26670> ___ ___ Python-bugs-

<    7   8   9   10   11   12   13   14   15   >