[issue36380] collections.Counter in-place operators are unexpectedly slow

2019-03-20 Thread SilentGhost
Change by SilentGhost : -- versions: -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue36380> ___ ___ Python-bugs-list mailing list Unsub

[issue36378] Add support to load from paths to json.load

2019-03-20 Thread SilentGhost
Change by SilentGhost : -- nosy: +ezio.melotti, rhettinger ___ Python tracker <https://bugs.python.org/issue36378> ___ ___ Python-bugs-list mailing list Unsub

[issue36374] A possible null pointer dereference in compile.c's merge_consts_recursive()

2019-03-20 Thread SilentGhost
Change by SilentGhost : -- nosy: +inada.naoki ___ Python tracker <https://bugs.python.org/issue36374> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36371] FancyGetopt.generate_help crashes with TypeError

2019-03-19 Thread SilentGhost
SilentGhost added the comment: I'm not sure why you're using distutils, but two extra spaces at the end of string is not likely to be fixed. The module is frozen and only present in the tree for historical reasons. -- components: +Distutils nosy: +SilentGhost, dstufft, eric.araujo

[issue36372] Flawed handling of URL redirect

2019-03-19 Thread SilentGhost
Change by SilentGhost : -- components: +Library (Lib) -IO nosy: +orsenthil type: crash -> behavior ___ Python tracker <https://bugs.python.org/issu

[issue36349] Including parentheses in a regular expression pattern enclosed by literal square bracket characters cause the square brackets not to be matched

2019-03-18 Thread SilentGhost
SilentGhost added the comment: Fabrod, this has nothing to do with the square brackets. It is your assumption that the return value should be the same that is wrong. Cf.: >>> re.findall(r'a.+', 'abc') ['abc'] >>> re.findall(r'a(.+)', 'abc') ['bc'] This is the correct do

[issue36316] Provide SHA256 checksums for installers

2019-03-16 Thread SilentGhost
Change by SilentGhost : -- nosy: +benjamin.peterson ___ Python tracker <https://bugs.python.org/issue36316> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36314] Pivot_Table Docstring Error

2019-03-16 Thread SilentGhost
Change by SilentGhost : -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue36314> ___ ___

[issue35773] test_bdb fails on AIX bot (regression)

2019-03-16 Thread SilentGhost
Change by SilentGhost : -- nosy: +David.Edelsohn ___ Python tracker <https://bugs.python.org/issue35773> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9030] ctypes variable limits

2019-03-16 Thread SilentGhost
SilentGhost added the comment: Is this enhancement still relevant for ctypes or can the issue be closed as "won't fix"? -- nosy: +SilentGhost, amaury.forgeotdarc, belopolsky, meador.inge ___ Python tracker <https://bugs.python.

[issue16961] No regression tests for -E and individual environment vars

2019-03-16 Thread SilentGhost
SilentGhost added the comment: Nick, please re-open if you feel this issue is still relevant. -- nosy: +SilentGhost resolution: -> out of date stage: -> resolved ___ Python tracker <https://bugs.python.org/i

[issue10514] configure does not create accurate Makefile on AIX

2019-03-16 Thread SilentGhost
Change by SilentGhost : -- nosy: +David.Edelsohn ___ Python tracker <https://bugs.python.org/issue10514> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22587] os.path.abspath(None) behavior is inconsistent between platforms

2019-03-16 Thread SilentGhost
SilentGhost added the comment: I'm closing this bug as fixed as TypeError is being raised on Linux on 3.7.2 (I think it was fixed for all platforms, due to work on path-like interface in 3.6). I don't think it's worth implementing this in 2.7 at this stage. -- nosy: +SilentGhost

[issue14934] generator objects can clear their weakrefs before being resurrected

2019-03-16 Thread SilentGhost
Change by SilentGhost : -- versions: +Python 3.8 -Python 3.4, Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue14934> ___ ___ Python-bug

[issue36306] inspect.signature(math.log) raises ValueError

2019-03-15 Thread SilentGhost
Change by SilentGhost : -- superseder: -> Argument Clinic: Fix signature of optional positional-only arguments type: -> behavior ___ Python tracker <https://bugs.python.org/i

[issue36306] inspect.signature(math.log) raises ValueError

2019-03-15 Thread SilentGhost
SilentGhost added the comment: In fact, I don't see anything warranting a separate issue. I'd suggest to close this and perhaps ping Larry instead on the issue 29299 which you mentioned. -- ___ Python tracker <https://bugs.python.org/issue36

[issue36306] inspect.signature(math.log) raises ValueError

2019-03-15 Thread SilentGhost
SilentGhost added the comment: It's the only function with an optional argument in math, on 3.7 all such function result in ValueError, e.g. getattr, iter, max. -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.org/issue36

[issue36298] Lib/pyclbr.py crashes when the package spec cannot be determined by importlib

2019-03-15 Thread SilentGhost
Change by SilentGhost : -- components: +Library (Lib) nosy: +brett.cannon ___ Python tracker <https://bugs.python.org/issue36298> ___ ___ Python-bugs-list mailin

[issue32545] Unable to install Python 3.7.0a4 on Windows 10 - Error 0x80070643: Failed to install MSI package.

2019-03-14 Thread SilentGhost
Change by SilentGhost : -- Removed message: https://bugs.python.org/msg337895 ___ Python tracker <https://bugs.python.org/issue32545> ___ ___ Python-bugs-list m

[issue36271] '_io.TextIOWrapper' object has no attribute 'mode'

2019-03-13 Thread SilentGhost
Change by SilentGhost : -- nosy: +pitrou type: -> behavior versions: +Python 3.8 -Python 3.5 ___ Python tracker <https://bugs.python.org/issue36271> ___ _

[issue36274] http.client cannot send non-ASCII request lines

2019-03-13 Thread SilentGhost
Change by SilentGhost : -- nosy: +orsenthil versions: -Python 3.4, Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue36274> ___ ___ Pytho

[issue36279] os.wait3() leaks some uninitialized stack when no processes exist

2019-03-13 Thread SilentGhost
Change by SilentGhost : -- components: +Library (Lib) nosy: +neologix type: -> resource usage versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issu

[issue36255] Provide a simple way to delete and edit python's welcome message

2019-03-10 Thread SilentGhost
SilentGhost added the comment: You could define PYTHONSTARTUP variable and modify everything to your heart's content. https://docs.python.org/3/using/cmdline.html#envvar-PYTHONSTARTUP -- nosy: +SilentGhost ___ Python tracker <ht

[issue36250] pdb: interaction might cause "ValueError: signal only works in main thread"

2019-03-10 Thread SilentGhost
Change by SilentGhost : -- nosy: +zach.ware type: -> behavior ___ Python tracker <https://bugs.python.org/issue36250> ___ ___ Python-bugs-list mailing list Un

[issue36241] MD5 checksum is not valid for v2.7.16 "Windows x86-64 MSI installer"

2019-03-09 Thread SilentGhost
Change by SilentGhost : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue36241> ___

[issue36241] MD5 checksum is not valid for v2.7.16 "Windows x86-64 MSI installer"

2019-03-09 Thread SilentGhost
SilentGhost added the comment: I still see 2fe86194bb4027be75b29852027f1a79 as checksum -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.org/issue36

[issue36248] document about `or`, `and` operator.

2019-03-09 Thread SilentGhost
Change by SilentGhost : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue36248> ___ ___

[issue36248] document about `or`, `and` operator.

2019-03-09 Thread SilentGhost
SilentGhost added the comment: Windson, it still is not clear what exactly you find unexpected in view of supplied links: 1 or 0 and 3 or has higher precedence than and, therefore it's evaluated first. It's first argument (1) is truthy, therefore it's returned. End of comparison. 0 or 1

[issue12851] ctypes: getbuffer() never provides strides

2019-03-08 Thread SilentGhost
Change by SilentGhost : -- nosy: +amaury.forgeotdarc, belopolsky, meador.inge ___ Python tracker <https://bugs.python.org/issue12851> ___ ___ Python-bugs-list m

[issue36242] spam

2019-03-08 Thread SilentGhost
Change by SilentGhost : -- Removed message: https://bugs.python.org/msg337508 ___ Python tracker <https://bugs.python.org/issue36242> ___ ___ Python-bugs-list m

[issue36242] spam

2019-03-08 Thread SilentGhost
Change by SilentGhost : -- nosy: -aod resolution: -> not a bug stage: -> resolved status: open -> closed title: ABC: We ask U.S. news media to interview Human Rights expert Alfred de Zayas about Venezuela. -> spam ___ Python tra

[issue36218] .sort() segfaults consistently on crafted input

2019-03-07 Thread SilentGhost
SilentGhost added the comment: > The following patch fixed the issue and made the whole test suite pass: Rémi, are you saying there are failing tests currently in the master related to this bug? It seems there are actually very few tests that test for TypeError and all those introdu

[issue36218] .sort() segfaults consistently on crafted input

2019-03-06 Thread SilentGhost
Change by SilentGhost : -- nosy: +elliot.gorokhovsky ___ Python tracker <https://bugs.python.org/issue36218> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36218] .sort() segfaults consistently on crafted input

2019-03-06 Thread SilentGhost
Change by SilentGhost : -- versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue36218> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36218] .sort() segfaults consistently on crafted input

2019-03-06 Thread SilentGhost
SilentGhost added the comment: Can confirm on 3.7.1 on Linux. The same is happening for sorted. I wonder if the optimisation done in 1e34da49ef2 is responsible -- components: +Interpreter Core nosy: +SilentGhost, rhettinger stage: -> needs pa

[issue36213] subprocess.check_output() fails with OSError: [WinError 87] when current directory name is too long

2019-03-06 Thread SilentGhost
Change by SilentGhost : -- type: -> behavior versions: +Python 3.6 ___ Python tracker <https://bugs.python.org/issue36213> ___ ___ Python-bugs-list mai

[issue36203] PyWeakref_NewRef docs are misleading

2019-03-05 Thread SilentGhost
Change by SilentGhost : -- assignee: -> docs@python components: +Documentation, ctypes nosy: +docs@python type: -> behavior ___ Python tracker <https://bugs.python.org/i

[issue36200] display index on IndexError

2019-03-05 Thread SilentGhost
Change by SilentGhost : -- resolution: -> duplicate superseder: -> Add index attribute to IndexError ___ Python tracker <https://bugs.python.org/i

[issue36193] Redirected stderr not reset properly when using logging

2019-03-05 Thread SilentGhost
Change by SilentGhost : -- nosy: +vinay.sajip ___ Python tracker <https://bugs.python.org/issue36193> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36180] mboxMessage.get_payload throws TypeError on malformed content type

2019-03-04 Thread SilentGhost
Change by SilentGhost : -- components: +email nosy: +barry, r.david.murray stage: -> test needed type: -> behavior versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/i

[issue36171] tkinter scrollbar missing 'state' option

2019-03-03 Thread SilentGhost
Change by SilentGhost : -- nosy: +gpolo, serhiy.storchaka type: -> enhancement versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issu

[issue35100] urllib.parse.unquote_to_bytes: needs "escape plus" option

2019-03-02 Thread SilentGhost
Change by SilentGhost : -- nosy: +orsenthil versions: +Python 3.8 -Python 3.5, Python 3.6, Python 3.7 ___ Python tracker <https://bugs.python.org/issue35

[issue36106] resolve sinpi() name clash with libm

2019-02-25 Thread SilentGhost
Change by SilentGhost : -- nosy: +mark.dickinson stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36106> ___ ___ Python-bugs-list mai

[issue36094] When using an SMTP SSL connection,, get ValueError.

2019-02-23 Thread SilentGhost
Change by SilentGhost : -- stage: patch review -> type: resource usage -> behavior versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/i

[issue36094] When using an SMTP SSL connection,, get ValueError.

2019-02-23 Thread SilentGhost
Change by SilentGhost : -- stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36094> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue36091] clean up async generator from types module

2019-02-22 Thread SilentGhost
Change by SilentGhost : -- nosy: +yselivanov ___ Python tracker <https://bugs.python.org/issue36091> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36086] Split IDLE into separate feature in Windows installer

2019-02-22 Thread SilentGhost
Change by SilentGhost : -- nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue36086> ___ ___ Python-bug

[issue36082] The built-in round() function giving a wrong output

2019-02-22 Thread SilentGhost
SilentGhost added the comment: This is the documented behaviour. It might seem counter-intuitive, but it's is not likely to change. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open -> closed ___ Pytho

[issue36077] Inheritance dataclasses fields and default init statement

2019-02-22 Thread SilentGhost
Change by SilentGhost : -- nosy: +eric.smith versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue36077> ___ ___ Python-bugs-list mailin

[issue36073] sqlite crashes with converters mutating cursor

2019-02-21 Thread SilentGhost
Change by SilentGhost : -- nosy: +ghaering versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue36073> ___ ___ Python-bugs-list m

[issue36046] support dropping privileges when running subprocesses

2019-02-20 Thread SilentGhost
Change by SilentGhost : -- nosy: +giampaolo.rodola ___ Python tracker <https://bugs.python.org/issue36046> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36051] Drop the GIL during large bytes.join operations?

2019-02-20 Thread SilentGhost
Change by SilentGhost : -- title: (Performance) Drop the GIL during large bytes.join operations? -> Drop the GIL during large bytes.join operations? type: -> performance versions: +Python 3.8 -Python 3.7 ___ Python tracker

[issue36033] logging.makeLogRecord should update "rv" using a dict defined with bytes instead of strings

2019-02-19 Thread SilentGhost
Change by SilentGhost : -- components: +Library (Lib) nosy: +vinay.sajip ___ Python tracker <https://bugs.python.org/issue36033> ___ ___ Python-bugs-list mailin

[issue36015] streamhandler canont represent streams with an integer as name

2019-02-18 Thread SilentGhost
Change by SilentGhost : -- nosy: +vinay.sajip type: crash -> behavior ___ Python tracker <https://bugs.python.org/issue36015> ___ ___ Python-bugs-list mai

[issue35999] multpirocessing.Process alive after SIGTERM on parent

2019-02-17 Thread SilentGhost
Change by SilentGhost : -- nosy: +davin, pitrou type: -> behavior ___ Python tracker <https://bugs.python.org/issue35999> ___ ___ Python-bugs-list mai

[issue36001] LIBFFI_INCLUDEDIR is not detected when set into a profile nor in ./configure LIBFFI_INCLUDEDIR="path/to/libffi/include"

2019-02-17 Thread SilentGhost
Change by SilentGhost : -- nosy: +amaury.forgeotdarc, belopolsky, meador.inge ___ Python tracker <https://bugs.python.org/issue36001> ___ ___ Python-bugs-list m

[issue35962] Slight error in words in [ 2.4.1. String and Bytes literals ]

2019-02-14 Thread SilentGhost
Change by SilentGhost : -- nosy: +remi.lapeyre ___ Python tracker <https://bugs.python.org/issue35962> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35962] Slight error in words in [ 2.4.1. String and Bytes literals ]

2019-02-14 Thread SilentGhost
SilentGhost added the comment: I don't think that's what the sentence say at all. It says, that a backslash can be used to escape a newline character (not "n"). This refers only to triple-quoted literals and is described in the first row of the table of escape seque

[issue35989] ipaddress.IPv4Network allows prefix > 32

2019-02-13 Thread SilentGhost
Change by SilentGhost : -- components: +Library (Lib) nosy: +pitrou stage: -> test needed type: -> behavior ___ Python tracker <https://bugs.python.org/i

[issue35979] Incorrect __text_signature__ for the __get__ slot wrapper

2019-02-12 Thread SilentGhost
SilentGhost added the comment: Is it not? This seems to be doing exactly what's intended. If you have a reproducible bug trigger, please post it, but I'll close the issue in the meantime. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open -> cl

[issue35980] Py3 BIF random.choices() is O(N**2) but I've written O(N) code for the same task

2019-02-12 Thread SilentGhost
Change by SilentGhost : -- resolution: -> not a bug ___ Python tracker <https://bugs.python.org/issue35980> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue35966] Didn't raise "StopIteration" Error when I use "yield" in the function

2019-02-11 Thread SilentGhost
SilentGhost added the comment: Within a generator function, StopIteration exception is a sign that generator is finished. This is why this exception is caught automatically, and closes generator. This is normal and documented behaviour of generators. -- nosy: +SilentGhost, sheiun

[issue35956] Sort documentation could be improved for complex sorting

2019-02-10 Thread SilentGhost
SilentGhost added the comment: Is this not equivalent to the following? sorted(points, key=lambda p: (p.y, p.x)) -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.org/issue35

[issue35924] curses segfault resizing window

2019-02-10 Thread SilentGhost
Change by SilentGhost : -- nosy: +twouters ___ Python tracker <https://bugs.python.org/issue35924> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35936] Give modulefinder some much-needed updates.

2019-02-08 Thread SilentGhost
Change by SilentGhost : -- nosy: +jvr ___ Python tracker <https://bugs.python.org/issue35936> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35939] Remove urllib.parse._splittype from mimetypes.guess_type

2019-02-08 Thread SilentGhost
Change by SilentGhost : -- nosy: +orsenthil ___ Python tracker <https://bugs.python.org/issue35939> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35932] Interpreter gets stuck while applying a compiled regex pattern

2019-02-07 Thread SilentGhost
SilentGhost added the comment: In your variant 2 you're not using re.IGNORECASE flag, if you do you're likely to encounter the same behaviour as for the compiled pattern. At least I do on python3.6 -- components: +Regular Expressions nosy: +SilentGhost, ezio.melotti, mrabarnett type

[issue35913] asyncore: allow handling of half closed connections

2019-02-06 Thread SilentGhost
Change by SilentGhost : -- nosy: +giampaolo.rodola, josiahcarlson, stutzbach versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue35

[issue35916] 3.6.5 try/except/else/finally block executes code with typos, no errors

2019-02-06 Thread SilentGhost
SilentGhost added the comment: This seem to be the exactly documented behaviour. From https://docs.python.org/3.8/reference/compound_stmts.html#the-try-statement If finally is present, it specifies a ‘cleanup’ handler. The try clause is executed, including any except and else clauses

[issue35909] Zip Slip Vulnerability

2019-02-06 Thread SilentGhost
SilentGhost added the comment: issue 21109 was mentioned as an example of reported behaviour in https://github.com/snyk/zip-slip-vulnerability/issues/4#issuecomment-395848367 -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.

[issue35909] Zip Slip Vulnerability

2019-02-06 Thread SilentGhost
Change by SilentGhost : -- keywords: +security_issue nosy: +lars.gustaebel ___ Python tracker <https://bugs.python.org/issue35909> ___ ___ Python-bugs-list mailin

[issue35900] Add pickler hook for the user to customize the serialization of user defined functions and types.

2019-02-05 Thread SilentGhost
Change by SilentGhost : -- title: Add pickler hoor for the user to customize the serialization of user defined functions and types. -> Add pickler hook for the user to customize the serialization of user defined functions and types. ___ Pyt

[issue34572] C unpickling bypasses import thread safety

2019-02-05 Thread SilentGhost
Change by SilentGhost : -- keywords: +needs review nosy: +alexandre.vassalotti ___ Python tracker <https://bugs.python.org/issue34572> ___ ___ Python-bugs-list m

[issue35885] configparser: indentation

2019-02-02 Thread SilentGhost
Change by SilentGhost : -- nosy: +lukasz.langa ___ Python tracker <https://bugs.python.org/issue35885> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35883] Change invalid unicode characters to replacement characters in argv

2019-02-01 Thread SilentGhost
Change by SilentGhost : -- nosy: +ncoghlan versions: +Python 3.7 ___ Python tracker <https://bugs.python.org/issue35883> ___ ___ Python-bugs-list mailin

[issue35883] Change invalid unicode characters to replacement characters in argv

2019-02-01 Thread SilentGhost
SilentGhost added the comment: Hm, this seems to be due to how the terminal emulator handles those special characters, actually. I can reproduce in another terminal. -- ___ Python tracker <https://bugs.python.org/issue35

[issue35883] Change invalid unicode characters to replacement characters in argv

2019-02-01 Thread SilentGhost
SilentGhost added the comment: I'm on 4.15.0-44-generic and I cannot reproduce the crash. I get "python3: can't open file '��': [Errno 2] No such file or directory" Could you try this on a different machine / installation? -- nosy: +SilentGhost type: behavio

[issue35868] Support ALL_PROXY environment variable in urllib

2019-01-31 Thread SilentGhost
SilentGhost added the comment: This sounds like an extension of existing functionality and fairly minor at that, that's why we have "enhancement" type of issue, not everything needs to be a bug. -- nosy: +SilentGhost ___ Python track

[issue35868] Support ALL_PROXY environment variable in urllib

2019-01-31 Thread SilentGhost
Change by SilentGhost : -- nosy: +orsenthil versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue35868> ___ ___ Python-bugs-list mailin

[issue35866] concurrent.futures deadlock

2019-01-31 Thread SilentGhost
Change by SilentGhost : -- nosy: +bquinlan, pitrou ___ Python tracker <https://bugs.python.org/issue35866> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34148] Fatal read error on socket transport

2019-01-29 Thread SilentGhost
Change by SilentGhost : -- nosy: +asvetlov, yselivanov versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue34148> ___ ___ Pytho

[issue35848] readinto is not a method on io.TextIOBase

2019-01-29 Thread SilentGhost
Change by SilentGhost : -- assignee: -> docs@python components: +Documentation -IO nosy: +docs@python stage: -> needs patch versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/i

[issue35849] Added thousands separators to Lib/pstats.py final report

2019-01-29 Thread SilentGhost
SilentGhost added the comment: Hi, your change breaks some test, most of the breakage is related to the change in whitespace separators. This breakages should be fixed before your PR can be considered for inclusion. You can see the status of the tests within discussion on github

[issue35835] There is no mention of breakpoint() in the pdb documentation

2019-01-27 Thread SilentGhost
Change by SilentGhost : -- assignee: -> docs@python components: +Documentation nosy: +docs@python stage: -> needs patch ___ Python tracker <https://bugs.python.org/i

[issue35720] Memory leak in Modules/main.c:pymain_parse_cmdline_impl when using the CLI flag

2019-01-14 Thread SilentGhost
Change by SilentGhost : -- nosy: +vstinner type: -> resource usage versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issu

[issue33944] Deprecate and remove pth files

2019-01-14 Thread SilentGhost
Change by SilentGhost : -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.org/issue33944> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35335] msgfmt should be able to merge more than one po file

2018-12-03 Thread SilentGhost
Change by SilentGhost : -- nosy: +eric.araujo, ezio.melotti ___ Python tracker <https://bugs.python.org/issue35335> ___ ___ Python-bugs-list mailing list Unsub

[issue35376] modulefinder skips nested modules with same name as top-level bad module

2018-12-02 Thread SilentGhost
Change by SilentGhost : -- nosy: +brett.cannon, eric.snow, ncoghlan stage: -> patch review versions: -Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.org/issu

[issue35377] urlsplit scheme argument broken

2018-12-02 Thread SilentGhost
SilentGhost added the comment: While it might seem broken, it behaves according to documentation, it seems to me. -- nosy: +SilentGhost, orsenthil type: -> behavior ___ Python tracker <https://bugs.python.org/issu

[issue35335] msgfmt should be able to merge more than one po file

2018-11-29 Thread SilentGhost
SilentGhost added the comment: The test for this part of code are located in Lib/test/test_tools/test_i18n.py as you'll quickly notice there aren't any tests specific to msgfmt.py I would actually advice to start by writing some tests for existing behaviour, so you'd know if (when) you

[issue35311] exception unpickling error causes `multiprocessing.Pool` to hang forever

2018-11-28 Thread SilentGhost
Change by SilentGhost : -- nosy: +alexandre.vassalotti type: -> behavior ___ Python tracker <https://bugs.python.org/issue35311> ___ ___ Python-bugs-list mai

[issue35331] Incorrect __module__ attribute for _struct.Struct and perhaps a few others

2018-11-28 Thread SilentGhost
Change by SilentGhost : -- nosy: +mark.dickinson, meador.inge, serhiy.storchaka type: -> behavior ___ Python tracker <https://bugs.python.org/issu

[issue35332] shutil.rmtree(..., ignore_errors=True) doesn't ignore errors from os.close()

2018-11-28 Thread SilentGhost
Change by SilentGhost : -- nosy: +David.Edelsohn ___ Python tracker <https://bugs.python.org/issue35332> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35335] msgfmt should be able to merge more than one po file

2018-11-28 Thread SilentGhost
SilentGhost added the comment: The best way is to propose a PR via github (here are some details: https://devguide.python.org/pullrequest/) This sort of change, can only be applied against master (future 3.8), so don't spend time on legacy releases. -- nosy: +SilentGhost versions

[issue35338] set union/intersection/difference could accept zero arguments

2018-11-28 Thread SilentGhost
SilentGhost added the comment: You can write your code like this: set().union(*sequence) as well as: a.union(b, c) if you already have a set object available. -- nosy: +SilentGhost versions: +Python 3.8 -Python 3.7 ___ Python tracker <ht

[issue33427] Dead link in "The Python Standard Library" page

2018-05-04 Thread SilentGhost
SilentGhost <ghost@runbox.com> added the comment: The language of that paragraph could be updated as well. -- nosy: +SilentGhost stage: -> needs patch versions: +Python 2.7, Python 3.4, Python 3.5, Python 3.7, Python 3.8 ___ Python tra

[issue22276] pathlib glob ignores trailing slash in pattern

2018-05-04 Thread SilentGhost
Change by SilentGhost <ghost@runbox.com>: -- assignee: -> emilyemorehouse nosy: +brianmsheldon, emilyemorehouse stage: -> test needed versions: +Python 3.7 -Python 3.4, Python 3.5 ___ Python tracker <rep...@bugs.pyt

[issue22276] pathlib glob ignores trailing slash in pattern

2018-05-04 Thread SilentGhost
Change by SilentGhost <ghost@runbox.com>: -- versions: +Python 3.8 -Python 3.7 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue22276] pathlib glob ignores trailing slash in pattern

2018-05-04 Thread SilentGhost
Change by SilentGhost <ghost@runbox.com>: -- nosy: +robbuckley -brianmsheldon ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue33392] pathlib .glob('*/') returns files as well as directories

2018-05-04 Thread SilentGhost
Change by SilentGhost <ghost@runbox.com>: -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> pathlib glob ignores trailing slash in pattern ___ Python tracker <rep...@bugs.python.org>

<    1   2   3   4   5   6   7   8   9   10   >