[issue27663] Inconsistent CSV Writer Behaviour

2016-08-01 Thread SilentGhost
SilentGhost added the comment: It is quoting the values when line terminator contains any of the special characters. Exactly like documented. https://docs.python.org/3/library/csv.html#csv.QUOTE_MINIMAL -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status

[issue27661] Add tzinfo= argument to datetime.combine

2016-07-31 Thread SilentGhost
Changes by SilentGhost : -- nosy: +SilentGhost ___ Python tracker <http://bugs.python.org/issue27661> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27651] bytearray changes when function mutates it

2016-07-30 Thread SilentGhost
SilentGhost added the comment: bytearray is a mutable object and the behaviour is compatible with behaviour of any mutable object in Python. You're passing a into the yuke_bpe function and the original object is being modified (emptied) there. To work around this you could copy the o

[issue27633] Doc: Add missing version info to email.parser

2016-07-27 Thread SilentGhost
SilentGhost added the comment: LGTM -- assignee: -> docs@python components: +Documentation nosy: +SilentGhost, docs@python stage: -> commit review ___ Python tracker <http://bugs.python.org/i

[issue27626] Spelling fixes

2016-07-26 Thread SilentGhost
Changes by SilentGhost : -- assignee: -> docs@python components: +Documentation nosy: +SilentGhost, docs@python stage: -> patch review type: enhancement -> behavior versions: +Python 3.5 ___ Python tracker <http://bugs.python.or

[issue27625] "make install" fails when no zlib support available

2016-07-26 Thread SilentGhost
SilentGhost added the comment: Well, there isn't anything to build in case of pip. I presume that was the decision made during the PEP implementation, so I'm adding the two core developers responsible. -- nosy: +dstufft, ncoghlan ___ Pyth

[issue27625] "make install" fails when no zlib support available

2016-07-26 Thread SilentGhost
SilentGhost added the comment: I wouldn't consider that an issue to be honest, the zlib is a dependency of pip and this failure is not unexpected. -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python

[issue27625] "make install" fails when no zlib support available

2016-07-26 Thread SilentGhost
SilentGhost added the comment: Seems like the issue is caused by pip installation, so you should be able to fix it using --without-ensurepip switch for configure. -- nosy: +SilentGhost ___ Python tracker <http://bugs.python.org/issue27

[issue27613] Empty iterator is rendered as a single bracket ] when using json's iterencode

2016-07-25 Thread SilentGhost
SilentGhost added the comment: The question is why are you defining __len__ if you don't know the size of your final object? Or at least, why are you starting with a potentially wrong initial value? This issue doesn't exist if you either don't define the method or retur

[issue27613] Empty iterator is rendered as a single bracket ] when using json's iterencode

2016-07-25 Thread SilentGhost
SilentGhost added the comment: Why does your __len__ method returns 1? Shouldn't it be 0 since this is an empty iterator? Changing it to zero seems to fix the "issue" too. ------ nosy: +SilentGhost ___ Python tracker <http://bugs.pyt

[issue27612] socket.gethostbyname resolving octal IP addresses incorrectly

2016-07-25 Thread SilentGhost
Changes by SilentGhost : -- components: +Macintosh nosy: +ned.deily, ronaldoussoren ___ Python tracker <http://bugs.python.org/issue27612> ___ ___ Python-bug

[issue27601] Minor inaccuracy in hash documentation

2016-07-23 Thread SilentGhost
Changes by SilentGhost : -- resolution: fixed -> status: closed -> open ___ Python tracker <http://bugs.python.org/issue27601> ___ ___ Python-bugs-list

[issue27580] CSV Null Byte Error

2016-07-21 Thread SilentGhost
Changes by SilentGhost : -- versions: +Python 3.6 -Python 3.5 ___ Python tracker <http://bugs.python.org/issue27580> ___ ___ Python-bugs-list mailing list Unsub

[issue27539] negative Fraction ** negative int not normalized

2016-07-17 Thread SilentGhost
Changes by SilentGhost : -- nosy: +mark.dickinson, rhettinger ___ Python tracker <http://bugs.python.org/issue27539> ___ ___ Python-bugs-list mailing list Unsub

[issue27495] Pretty printing sorting for set and frozenset instances

2016-07-12 Thread SilentGhost
Changes by SilentGhost : -- nosy: +fdrake stage: -> patch review versions: -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issu

[issue27486] FTPlib hangs on some pasv responses

2016-07-11 Thread SilentGhost
Changes by SilentGhost : -- nosy: +giampaolo.rodola stage: -> test needed ___ Python tracker <http://bugs.python.org/issue27486> ___ ___ Python-bugs-list mai

[issue27464] Document that SplitResult & friends are namedtuples

2016-07-08 Thread SilentGhost
Changes by SilentGhost : -- assignee: -> docs@python components: +Documentation nosy: +docs@python stage: -> needs patch versions: +Python 3.5, Python 3.6 ___ Python tracker <http://bugs.python.org/i

[issue27441] redundant assignments to ob_size of new ints that _PyLong_New returned

2016-07-05 Thread SilentGhost
Changes by SilentGhost : -- nosy: +haypo, serhiy.storchaka stage: -> commit review versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issu

[issue27455] Fix tkinter examples to be PEP8 compliant

2016-07-05 Thread SilentGhost
SilentGhost added the comment: This patch is going to be rejected, camelCase is standard convention in tkinter and logging modules and that's why it is used in documentation as well. -- nosy: +SilentGhost ___ Python tracker <http://bugs.py

[issue27430] Spelling fixes

2016-07-01 Thread SilentGhost
Changes by SilentGhost : -- assignee: -> docs@python components: +Documentation nosy: +docs@python stage: -> patch review versions: +Python 3.5, Python 3.6 ___ Python tracker <http://bugs.python.org/i

[issue20825] containment test for "ip_network in ip_network"

2016-06-25 Thread SilentGhost
SilentGhost added the comment: Have you seen my comments on rietveld re you previous patch? -- ___ Python tracker <http://bugs.python.org/issue20825> ___ ___ Pytho

[issue20674] Update comments in dictobject.c

2016-06-24 Thread SilentGhost
SilentGhost added the comment: I've left comments on rietveld. Not sure if everyone's seeing them. -- nosy: +SilentGhost stage: needs patch -> patch review ___ Python tracker <http://bugs.pytho

[issue27376] Add mock_import method to mock module

2016-06-23 Thread SilentGhost
Changes by SilentGhost : -- nosy: +michael.foord stage: -> patch review ___ Python tracker <http://bugs.python.org/issue27376> ___ ___ Python-bugs-list mai

[issue27377] Add smarter socket.fromfd()

2016-06-23 Thread SilentGhost
SilentGhost added the comment: The patch applies cleanly, not sure why the rietveld link doesn't appear. Perhaps because of the extension? In test, I noticed, that you're not testing that OSError is raised, perhaps something to add? -- nosy: +S

[issue27371] Runaway memory consumption using update()

2016-06-23 Thread SilentGhost
Changes by SilentGhost : -- nosy: +gpolo, serhiy.storchaka ___ Python tracker <http://bugs.python.org/issue27371> ___ ___ Python-bugs-list mailing list Unsub

[issue27368] os.mkdir is not working for multiple level of directory creation in windows environment

2016-06-22 Thread SilentGhost
SilentGhost added the comment: You need to use os.makedirs -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open -> closed type: enhancement -> behavior ___ Python tracker <http://bugs.python

[issue27360] _deque and _islice are sometimes None

2016-06-21 Thread SilentGhost
SilentGhost added the comment: This seems to have been reported on riak's tracker: https://github.com/basho/riak-python-client/issues/449 -- nosy: +SilentGhost resolution: -> third party stage: -> resolved status: open -> closed type: cra

[issue27361] ValueError on eval after 'from pandas import *'

2016-06-21 Thread SilentGhost
SilentGhost added the comment: Pandas is not part of the standard library. Their issue tracker is at https://github.com/pydata/pandas/issues -- nosy: +SilentGhost resolution: -> third party stage: -> resolved status: open -> closed _

[issue27347] Private

2016-06-18 Thread SilentGhost
Changes by SilentGhost : -- Removed message: http://bugs.python.org/msg268813 ___ Python tracker <http://bugs.python.org/issue27347> ___ ___ Python-bugs-list m

[issue27347] Private

2016-06-18 Thread SilentGhost
Changes by SilentGhost : Removed file: http://bugs.python.org/file43458/bugreport-2016-05-29-03-43-39.txt ___ Python tracker <http://bugs.python.org/issue27347> ___ ___

[issue27316] [PDB] NameError in list comprehension in PDB

2016-06-14 Thread SilentGhost
Changes by SilentGhost : -- resolution: -> works for me stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue27316> ___ ___

[issue27318] Add support for symlinks to zipfile

2016-06-14 Thread SilentGhost
Changes by SilentGhost : -- nosy: +alanmcintyre, serhiy.storchaka, twouters versions: +Python 3.6 -Python 2.7 ___ Python tracker <http://bugs.python.org/issue27

[issue27316] [PDB] NameError in list comprehension in PDB

2016-06-14 Thread SilentGhost
SilentGhost added the comment: I cannot reproduce this issue on 3.5, do you have a chance to test this on a 3.5 or some other version of python? Also, could you provide any more details of your system? -- nosy: +SilentGhost ___ Python tracker

[issue27316] [PDB] NameError in list comprehension in PDB

2016-06-14 Thread SilentGhost
Changes by SilentGhost : -- nosy: +georg.brandl type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue27316> ___ ___ Python-bugs-list mai

[issue27306] Grammatical Error in Documentation - Tarfile page

2016-06-13 Thread SilentGhost
SilentGhost added the comment: LGTM. -- stage: needs patch -> commit review ___ Python tracker <http://bugs.python.org/issue27306> ___ ___ Python-bugs-list mai

[issue27305] Crash with "pip list --outdated" on Windows 10 with Python 2.7.12rc1

2016-06-13 Thread SilentGhost
SilentGhost added the comment: pip is not part of standard library, its issue tracker is at https://github.com/pypa/pip/issues -- nosy: +SilentGhost resolution: -> third party stage: -> resolved status: open -> closed ___ Python track

[issue27306] Grammatical Error in Documentation - Tarfile page

2016-06-13 Thread SilentGhost
SilentGhost added the comment: There are more occurrences of "it is already exists" in the first table. -- nosy: +SilentGhost stage: -> needs patch versions: +Python 3.6 ___ Python tracker <http://bugs.pytho

[issue27303] [argparse] Unify options in help output

2016-06-12 Thread SilentGhost
Changes by SilentGhost : -- versions: +Python 3.6 -Python 3.5 ___ Python tracker <http://bugs.python.org/issue27303> ___ ___ Python-bugs-list mailing list Unsub

[issue27295] heaps library does not have support for max heap

2016-06-11 Thread SilentGhost
Changes by SilentGhost : -- nosy: +rhettinger, stutzbach type: -> enhancement versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issu

[issue20825] containment test for "ip_network in ip_network"

2016-06-10 Thread SilentGhost
Changes by SilentGhost : -- nosy: +SilentGhost ___ Python tracker <http://bugs.python.org/issue20825> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27281] unpickling an xmlrpc.client.Fault raises TypeError

2016-06-09 Thread SilentGhost
Changes by SilentGhost : -- nosy: +loewis stage: -> patch review versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issu

[issue27277] Fatal Python error: Segmentation fault in test_exceptions

2016-06-09 Thread SilentGhost
Changes by SilentGhost : -- components: +Tests ___ Python tracker <http://bugs.python.org/issue27277> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27274] [ctypes] Allow from_pointer creation

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

[issue27269] ipaddress: Wrong behavior with ::ffff:1.2.3.4 style IPs

2016-06-08 Thread SilentGhost
Changes by SilentGhost : -- nosy: +pmoody versions: -Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue27269> ___ ___ Python-bugs-list mailin

[issue27267] memory leak in _ssl.c, function load_cert_chain

2016-06-08 Thread SilentGhost
Changes by SilentGhost : -- nosy: +alex, christian.heimes, dstufft, giampaolo.rodola, janssen, pitrou ___ Python tracker <http://bugs.python.org/issue27

[issue27251] TypeError in logging.HTTPHandler.emit; possible python 2 to 3 conversion issue

2016-06-07 Thread SilentGhost
Changes by SilentGhost : -- nosy: +vinay.sajip stage: -> test needed type: -> behavior versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/i

[issue27241] Catch exceptions raised in pstats add (repl)

2016-06-06 Thread SilentGhost
Changes by SilentGhost : -- nosy: +georg.brandl stage: -> patch review ___ Python tracker <http://bugs.python.org/issue27241> ___ ___ Python-bugs-list mai

[issue27240] 'UnstructuredTokenList' object has no attribute '_fold_as_ew'

2016-06-06 Thread SilentGhost
Changes by SilentGhost : -- stage: -> needs patch type: -> behavior versions: -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/i

[issue26983] float() can return not exact float instance

2016-06-06 Thread SilentGhost
SilentGhost added the comment: test_format resulted in semi-failure due to this change. The attached patch fixes the issue. -- assignee: -> serhiy.storchaka nosy: +SilentGhost resolution: fixed -> stage: resolved -> commit review status: closed -> open Adde

[issue26867] test_ssl test_options fails on ubuntu 16.04

2016-06-06 Thread SilentGhost
Changes by SilentGhost : -- nosy: +SilentGhost versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issue26867> ___ ___ Python-bugs-list mailin

[issue27232] os.fspath() should not use repr() on error

2016-06-05 Thread SilentGhost
SilentGhost added the comment: This is behaviour introduced by issue 25548, it would make sense to me to discuss this problem there if you think it's necessary. repr in error messages has been a standard approach in Python for a very long time, however. -- nosy: +Silent

[issue27231] Support the fspath protocol in the posixpath module

2016-06-05 Thread SilentGhost
SilentGhost added the comment: There seems to be an issue with your patch, it does apply cleanly when doing that manually, but Rietveld doesn't like it. The changes in Lib/posixpath.py and Lib/test/test_posixpath.py don't show up. -- nosy: +S

[issue27168] Comprehensions and await need more unittests

2016-06-05 Thread SilentGhost
Changes by SilentGhost : -- components: +Tests title: Yury isn't sure comprehensions and await interact correctly -> Comprehensions and await need more unittests type: -> behavior ___ Python tracker <http://bugs.python.

[issue27235] Heap overflow occurred due to the int overflow (Python-2.7.11/Modules/posixmodule.c)

2016-06-05 Thread SilentGhost
Changes by SilentGhost : -- components: +Extension Modules -Interpreter Core nosy: +larry ___ Python tracker <http://bugs.python.org/issue27235> ___ ___ Python-bug

[issue27188] sqlite3 execute* methods return value not documented

2016-06-04 Thread SilentGhost
SilentGhost added the comment: Thanks for the patch, Dave. For whatever reason it doesn't seem to apply cleanly to the current tip, would you mind preparing a new patch that does? -- assignee: -> docs@python components: +Documentation nosy: +SilentGhost, berker.peksag, doc

[issue2466] os.path.ismount doesn't work for mounts the user doesn't have permission to see

2016-06-02 Thread SilentGhost
Changes by SilentGhost : -- stage: patch review -> commit review versions: -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/iss

[issue27172] Add skip_bound_arg argument to inspect.Signature.from_callable()

2016-06-01 Thread SilentGhost
Changes by SilentGhost : -- assignee: -> yselivanov stage: patch review -> commit review ___ Python tracker <http://bugs.python.org/issue27172> ___ ___ Pyth

[issue27176] Addition of assertNotRaises

2016-06-01 Thread SilentGhost
Changes by SilentGhost : -- nosy: +ezio.melotti, michael.foord, rbcollins versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issue27176> ___ ___

[issue27175] Unpickling Path objects

2016-06-01 Thread SilentGhost
Changes by SilentGhost : -- nosy: +pitrou type: -> behavior versions: -Python 3.5 ___ Python tracker <http://bugs.python.org/issue27175> ___ ___ Python-

[issue27172] Add skip_bound_arg argument to inspect.Signature.from_callable()

2016-06-01 Thread SilentGhost
New submission from SilentGhost: This could only go in 3.6, but it needs proper documentation and test(s). -- nosy: +SilentGhost, yselivanov stage: -> test needed versions: -Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue27145] long_add and long_sub might return a new int where &small_ints[x] could be returned

2016-05-31 Thread SilentGhost
Changes by SilentGhost : -- nosy: +haypo, rhettinger stage: -> patch review versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issue27145> ___ _

[issue10908] Improvements to trace._Ignore

2016-05-30 Thread SilentGhost
SilentGhost added the comment: I closed the issue because it's outdated: i) patch no longer applies cleanly; ii) changes to cmd line parsing where done in issue 22642; iii) remaining changes are largely cosmetic. As for issue 10896, a much more trivial patch would have to be produced ag

[issue27148] Make VENV_DIR relative to Script directory

2016-05-29 Thread SilentGhost
Changes by SilentGhost : -- components: +Library (Lib) -Demos and Tools nosy: +vinay.sajip versions: -Python 3.2, Python 3.3, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issue27

[issue27151] multiprocessing.Process leaves read pipes open (Process.sentinel)

2016-05-29 Thread SilentGhost
Changes by SilentGhost : -- nosy: +jnoller, sbt versions: +Python 3.6 -Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue27151> ___ ___ Pytho

[issue27121] imghdr does not support jpg files with Lavc bytes

2016-05-28 Thread SilentGhost
Changes by SilentGhost : -- components: +Library (Lib) nosy: +r.david.murray stage: -> test needed type: -> behavior versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/i

[issue27139] Increased test coverage for statistics.median_grouped

2016-05-28 Thread SilentGhost
Changes by SilentGhost : -- nosy: +steven.daprano stage: -> patch review type: -> behavior ___ Python tracker <http://bugs.python.org/issue27139> ___ ___

[issue27144] concurrent.futures.as_completed() memory inefficiency

2016-05-28 Thread SilentGhost
Changes by SilentGhost : -- stage: -> patch review versions: -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue27144> ___ _

[issue27118] Several Py_XDE/INCREFs in typeobject.c are not necessary

2016-05-24 Thread SilentGhost
Changes by SilentGhost : -- components: +Interpreter Core nosy: +serhiy.storchaka stage: -> patch review type: enhancement -> behavior ___ Python tracker <http://bugs.python.org/i

[issue27073] redundant checks in long_add and long_sub

2016-05-21 Thread SilentGhost
Changes by SilentGhost : -- nosy: +haypo, serhiy.storchaka, yselivanov stage: -> patch review type: -> behavior versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/i

[issue27071] unittest.TestCase.assertCountEqual is a very misleading name

2016-05-20 Thread SilentGhost
Changes by SilentGhost : -- nosy: +ezio.melotti, michael.foord, rbcollins type: -> behavior versions: -Python 3.3, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue27072] random.getrandbits is limited to 2**31-1 bits on 64-bit Windows

2016-05-20 Thread SilentGhost
Changes by SilentGhost : -- components: +Extension Modules, Windows -Library (Lib) nosy: +mark.dickinson, paul.moore, rhettinger, steve.dower, tim.golden, zach.ware stage: -> patch review ___ Python tracker <http://bugs.python.org/issu

[issue27039] bytearray.remove cannot remove bytes with value greater than 127

2016-05-16 Thread SilentGhost
SilentGhost added the comment: Test is not catching it, because it only deals with ascii part. -- nosy: +SilentGhost ___ Python tracker <http://bugs.python.org/issue27

[issue27039] bytearray.remove cannot remove bytes with value greater than 127

2016-05-16 Thread SilentGhost
Changes by SilentGhost : -- nosy: +serhiy.storchaka versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issue27039> ___ ___ Python-bugs-list mailin

[issue25910] Fixing links in documentation

2016-05-16 Thread SilentGhost
SilentGhost added the comment: Does it not matter that the link to pythonlabs is a part of the official license text? Besides, it's not an actual html a tag, but rather a verbatim text, surely the only correction here is to make sure that the linkcheck doesn't check links within pre

[issue27022] expose sendmmsg() syscall in sockets API

2016-05-15 Thread SilentGhost
Changes by SilentGhost : -- nosy: +pitrou versions: -Python 3.5 ___ Python tracker <http://bugs.python.org/issue27022> ___ ___ Python-bugs-list mailing list Unsub

[issue27018] Incorrect documentation of select module

2016-05-14 Thread SilentGhost
SilentGhost added the comment: Here is the patch. -- keywords: +patch nosy: +SilentGhost stage: -> patch review type: -> behavior versions: +Python 3.6 Added file: http://bugs.python.org/file42846/issue27018.diff ___ Python tracker

[issue27017] Python3.5.1: type().startswith()

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

[issue27017] Python3.5.1: type().startswith()

2016-05-14 Thread SilentGhost
SilentGhost added the comment: This is exactly how methods on Python object have been behaving for year: any method can be called either as method on instance, or as method on class, with instance passed as the first argument. -- nosy: +SilentGhost resolution: -> not a bug st

[issue27003] Python 3.5.1 fails at HTTPSTest with SSL CERT error

2016-05-11 Thread SilentGhost
Changes by SilentGhost : -- components: +Extension Modules -Build nosy: +alex, christian.heimes, dstufft, giampaolo.rodola, janssen, pitrou type: compile error -> behavior ___ Python tracker <http://bugs.python.org/issu

[issue26999] Add child separator keyword to logging.basicConfig and use it in Logger.getChild()

2016-05-11 Thread SilentGhost
Changes by SilentGhost : -- nosy: +vinay.sajip versions: +Python 3.6 -Python 3.5 ___ Python tracker <http://bugs.python.org/issue26999> ___ ___ Python-bugs-list m

[issue26972] mistakes in docstrings in the import machinery

2016-05-07 Thread SilentGhost
Changes by SilentGhost : -- nosy: +brett.cannon stage: -> patch review type: -> behavior ___ Python tracker <http://bugs.python.org/issue26972> ___ ___

[issue26959] pickle: respect dispatch for functions again

2016-05-06 Thread SilentGhost
Changes by SilentGhost : -- nosy: +alexandre.vassalotti, pitrou stage: -> patch review ___ Python tracker <http://bugs.python.org/issue26959> ___ ___ Python-

[issue26958] Suggestion to imporve queue.full reliability

2016-05-04 Thread SilentGhost
Changes by SilentGhost : -- components: +Library (Lib) nosy: +rhettinger ___ Python tracker <http://bugs.python.org/issue26958> ___ ___ Python-bugs-list mailin

[issue26945] difflib.HtmlDiff().make_file() treat few change as whole line change

2016-05-04 Thread SilentGhost
SilentGhost added the comment: This seems to do with the percentage of affected characters, the threshold seems to be about a quarter. Not sure this is a bug. -- nosy: +SilentGhost ___ Python tracker <http://bugs.python.org/issue26

[issue26956] About Idle-x version not updated for 1.13

2016-05-04 Thread SilentGhost
Changes by SilentGhost : -- nosy: +kbk, roger.serwy, terry.reedy type: -> behavior ___ Python tracker <http://bugs.python.org/issue26956> ___ ___ Python-

[issue26955] Implement equivalent to `pip.locations.distutils_scheme` in distutils

2016-05-04 Thread SilentGhost
Changes by SilentGhost : -- components: +Distutils nosy: +dstufft, eric.araujo ___ Python tracker <http://bugs.python.org/issue26955> ___ ___ Python-bugs-list m

[issue26949] IDLE restarts when one debugs code raising SystemExit

2016-05-04 Thread SilentGhost
Changes by SilentGhost : -- nosy: +kbk, roger.serwy, terry.reedy stage: -> test needed ___ Python tracker <http://bugs.python.org/issue26949> ___ ___ Python-

[issue26943] Datetime.strptime crash

2016-05-04 Thread SilentGhost
SilentGhost added the comment: Jens, the issue seems to be related to the locale under which your script is operating. You could try to ensure that the locale is suitable for the %b switch. In any case this doesn't look like a datetime bug. -- nosy: +SilentGhost resolution: -&g

[issue26905] from multiprocessing.pool import Pool bug on linux

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

[issue26915] Test identity first in membership operation of ItemsView, ValuesView and Sequence in collections.abc

2016-05-02 Thread SilentGhost
Changes by SilentGhost : -- nosy: +rhettinger, stutzbach stage: -> patch review type: -> behavior ___ Python tracker <http://bugs.python.org/issue26915> ___ __

[issue26905] from multiprocessing.pool import Pool bug on linux

2016-05-02 Thread SilentGhost
Changes by SilentGhost : -- nosy: +jnoller, sbt -larry type: -> behavior ___ Python tracker <http://bugs.python.org/issue26905> ___ ___ Python-bugs-list mai

[issue26890] inspect.getsource gets source copy on disk even when module has not been reloaded

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

[issue26888] Multiple memory leaks after raw Py_Initialize and Py_Finalize.

2016-05-02 Thread SilentGhost
Changes by SilentGhost : -- components: +Interpreter Core -Library (Lib) nosy: +haypo, serhiy.storchaka ___ Python tracker <http://bugs.python.org/issue26

[issue26898] Error in the

2016-05-01 Thread SilentGhost
SilentGhost added the comment: LGTM -- nosy: +SilentGhost stage: -> commit review ___ Python tracker <http://bugs.python.org/issue26898> ___ ___ Python-

[issue26833] returning ctypes._SimpleCData objects from callbacks

2016-04-25 Thread SilentGhost
Changes by SilentGhost : -- components: +ctypes nosy: +amaury.forgeotdarc, belopolsky, meador.inge ___ Python tracker <http://bugs.python.org/issue26833> ___ ___

[issue26844] Wrong error message during import

2016-04-24 Thread SilentGhost
Changes by SilentGhost : -- nosy: +brett.cannon priority: normal -> low stage: -> patch review versions: -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/i

[issue26831] ConfigParser parsing failures with default_section and ExtendedInterpolation options

2016-04-23 Thread SilentGhost
SilentGhost added the comment: I think there is some misunderstanding of what default_section is supposed to do, in fact in provides default values for *other* section, as the documentation says, it doesn't mangle section separation. In case of ExtendedInterpolation, the interpol

[issue6792] Distutils-based installer does not detect 64bit versions of Python

2016-04-22 Thread SilentGhost
Changes by SilentGhost : -- versions: -Python 3.1, Python 3.3 ___ Python tracker <http://bugs.python.org/issue6792> ___ ___ Python-bugs-list mailing list Unsub

[issue19846] Python 3 raises Unicode errors with the C locale

2016-04-22 Thread SilentGhost
Changes by SilentGhost : -- nosy: +Sworddragon, a.badger, bkabrda, haypo, jwilk, larry, lemburg, loewis, ncoghlan, pitrou, r.david.murray, serhiy.storchaka, terry.reedy ___ Python tracker <http://bugs.python.org/issue19

[issue14621] Hash function is not randomized properly

2016-04-22 Thread SilentGhost
Changes by SilentGhost : -- nosy: +Arfrever, Bob.Ziuchkovski, Giovanni.Bajo, PaulMcMillan, ReneSac, Vlado.Boza, alex, arigo, benjamin.peterson, bkabrda, camara, christian.heimes, cvrebert, dmalcolm, dstufft, gregory.p.smith, haypo, iElectric, isoschiz, konk, lemburg

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