[issue24174] Python crash on exit

2019-12-29 Thread SilentGhost
SilentGhost added the comment: Currently lollypop seems to be residing at https://gitlab.gnome.org/World/lollypop However, this issue is filled against a no longer supported version which along with many changes in the C code warrants out-of-date closure, I think. Cédric, please re-open this

[issue39173] _AttributeHolder of argparse should support the sort function or not?

2019-12-31 Thread SilentGhost
SilentGhost added the comment: What is the use-case for this? Why would anyone care in which order arguments are represented in the object repr? -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.org/issue39

[issue39173] _AttributeHolder of argparse should support the sort function or not?

2020-01-01 Thread SilentGhost
SilentGhost added the comment: You'd need to elaborate on that. I've been using argparse for years and never once had presentational aspects affected by work. So, again, what is the actual use case for this? -- ___ Python track

[issue39173] _AttributeHolder of argparse should support the sort function or not?

2020-01-02 Thread SilentGhost
SilentGhost added the comment: The answer to the SO question seems rather complete to me and the only thing to be done on our side would be to document Formatter class and perhaps provide example implementation for sorting formatter. Assuming Raymond goes ahead with #39058 I'm stil

[issue39200] Inaccurate TypeError message for `range` without argument

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

[issue39211] Change in http.server default IP behavior?

2020-01-05 Thread SilentGhost
SilentGhost added the comment: It's the addition of flags=socket.AI_PASSIVE on Lib/http/server.py:1233 that's causing this. I think this also breaks for IPv4 sockets. -- components: +Library (Lib) keywords: +3.8regression nosy: +SilentGhost stage: ->

[issue39292] syslog constants behind rfc

2020-01-10 Thread SilentGhost
Change by SilentGhost : -- type: -> behavior versions: -Python 2.7, Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue39292> ___ ___ Py

[issue39344] Getting error while importing ssl " import _ssl # if we can't import it, let the error propagate ImportError: DLL load failed while importing _ssl: The specified module could not be found

2020-01-15 Thread SilentGhost
Change by SilentGhost : -- assignee: -> christian.heimes components: +SSL nosy: +christian.heimes versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issu

[issue39380] ftplib uses latin-1 as default encoding

2020-01-18 Thread SilentGhost
Change by SilentGhost : -- versions: -Python 3.5, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue39380> ___ ___ Python-bug

[issue39385] Add an assertNoLogs context manager to unittest TestCase

2020-01-19 Thread SilentGhost
Change by SilentGhost : -- nosy: +ezio.melotti, michael.foord, rbcollins versions: +Python 3.9 ___ Python tracker <https://bugs.python.org/issue39385> ___ ___

[issue39407] Bitfield Union does not work for bit widths greater than 8 bits

2020-01-21 Thread SilentGhost
Change by SilentGhost : -- nosy: +amaury.forgeotdarc, belopolsky, meador.inge versions: -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue39

[issue39410] CentOS 6.10 SQLite 3.30.1 - _sqlite3 builds successfully but is removed because it cannot be imported.

2020-01-21 Thread SilentGhost
Change by SilentGhost : -- components: +Library (Lib) nosy: +ghaering versions: +Python 3.9 ___ Python tracker <https://bugs.python.org/issue39410> ___ ___ Pytho

[issue39422] datetime.datetime.strptime incorrectly interpretting format '%Y%m%d'

2020-01-22 Thread SilentGhost
SilentGhost added the comment: They do not "report same datetime output". Did you mean to use '20200106' as the second input string? Because, leading zeros being optional for certain format specifiers is a documented feature of strptime. -- nosy: +SilentGhost sta

[issue39454] when \\u in byte_string , byte_string.decode('raw_unicode_escape') maybe has problem

2020-01-25 Thread SilentGhost
SilentGhost added the comment: Why are you using this type of encoding on this bytes object? It specifically says in its description that "Existing backslashes are not escaped in any way.". If you'd use unicode_escape instead, you would be able to round-trip back to your

[issue39449] New Assignment operator

2020-01-25 Thread SilentGhost
Change by SilentGhost : -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue39449> ___ ___

[issue39457] Add an autocommit property to sqlite3.Connection with a PEP 249 compliant manual commit mode and migrate

2020-01-26 Thread SilentGhost
Change by SilentGhost : -- versions: +Python 3.9 -Python 3.8 ___ Python tracker <https://bugs.python.org/issue39457> ___ ___ Python-bugs-list mailing list Unsub

[issue39468] .python_history write permission improvements

2020-01-27 Thread SilentGhost
SilentGhost added the comment: 1. Your PR contains unrelated changes 2. Please test your code: submitting syntactically incorrect code just wastes everyone's time -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.org/is

[issue39486] bug in %-formatting in Python, related to escaped %-characters

2020-01-29 Thread SilentGhost
SilentGhost added the comment: This seemed to be a consequence of #29568. -- components: +Interpreter Core nosy: +SilentGhost type: -> behavior ___ Python tracker <https://bugs.python.org/issu

[issue39486] bug in %-formatting in Python, related to escaped %-characters

2020-01-29 Thread SilentGhost
Change by SilentGhost : -- nosy: +serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue39486> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39519] Can't upgrade pip version 19.3.1 to 20.0.2 on Python 3.7.4

2020-02-01 Thread SilentGhost
SilentGhost added the comment: `pip install --help` provides full list of options, the upgrade option is -U or --upgrade. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open -> closed type: security -&

[issue39521] reversed(mylist) much slower on Python 3.8.1 32-bit for Windows

2020-02-01 Thread SilentGhost
SilentGhost added the comment: Your 3.8.0 numbers are similar to 3.8.1 -- components: +Interpreter Core -Build nosy: +SilentGhost, serhiy.storchaka, vstinner ___ Python tracker <https://bugs.python.org/issue39

[issue39528] add "

2020-02-01 Thread SilentGhost
Change by SilentGhost : -- nosy: -bup resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue39526] print(text1.get(1.2,1.5))

2020-02-02 Thread SilentGhost
Change by SilentGhost : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue39526> ___ ___

[issue39274] Conversion from fractions.Fraction to bool

2020-02-02 Thread SilentGhost
SilentGhost added the comment: "Successful" PR would be merged into master. This issue is still in "patch review" stage. -- nosy: +SilentGhost ___ Python tracker <https://bug

[issue35885] configparser: indentation

2020-02-02 Thread SilentGhost
SilentGhost added the comment: I would suggest adding indent parameter to the write method, it would default to an empty string and could be used directly in the formatting operation. -- nosy: +SilentGhost ___ Python tracker <ht

[issue39581] Python Interpreter Doesn't Work Well In Thread Class

2020-02-08 Thread SilentGhost
SilentGhost added the comment: SyntaxError is produced when there is a syntax problem in the code to be executed, this code is fine from the syntax perspective, so this particular error would not be raised. It is also perfectly fine to have a function call where you have it, the only thing

[issue39581] Python Interpreter Doesn't Work Well In Thread Class

2020-02-08 Thread SilentGhost
Change by SilentGhost : -- nosy: +mark.dickinson resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue39584] MacOS crashes by running attached Python code

2020-02-08 Thread SilentGhost
Change by SilentGhost : -- nosy: +davin, vstinner ___ Python tracker <https://bugs.python.org/issue39584> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31116] base85 z85 variant encoding

2020-02-15 Thread SilentGhost
Change by SilentGhost : -- nosy: +pitrou versions: +Python 3.9 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue31116> ___ ___ Python-bugs-list mailin

[issue39644] Add Binary module.

2020-02-15 Thread SilentGhost
Change by SilentGhost : -- nosy: +Ananthakrishnan ___ Python tracker <https://bugs.python.org/issue39644> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39642] Behaviour of disabled widgets: widget.bind(func) -vs- w = widget(command=func)

2020-02-15 Thread SilentGhost
Change by SilentGhost : -- nosy: +gpolo, serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue39642> ___ ___ Python-bugs-list mailing list Unsub

[issue39625] Traceback needs more details

2020-02-15 Thread SilentGhost
Change by SilentGhost : -- components: +Interpreter Core nosy: +vstinner versions: +Python 3.9 -Python 3.8 ___ Python tracker <https://bugs.python.org/issue39

[issue39641] concatenation of Tuples

2020-02-16 Thread SilentGhost
SilentGhost added the comment: Bruce, error message says exactly why it doesn't work: you're trying to add a tuple to a list, and that doesn't work. There isn't a "third" string created anywhere, you're confused about the types of the objects. Also, pl

[issue39644] Add Binary module.

2020-02-16 Thread SilentGhost
SilentGhost added the comment: Ananthakrishnan, you've marked this issue as belonging to C API component, why? Besides, all this functionality is already present in python, what is it you're actually interested in? What is not covered by the independent packages on pypi? -

[issue39644] Add Binary module.

2020-02-16 Thread SilentGhost
SilentGhost added the comment: >>> 0b1110 + 0b1010 24 >>> bin(0b1110 + 0b1010) '0b11000' Can you explain how this is not enough? -- ___ Python tracker <htt

[issue39649] bdb.Bdb.format_stack_entry: checks for obsolete __args__

2020-02-16 Thread SilentGhost
Change by SilentGhost : -- nosy: +gvanrossum versions: -Python 2.7, Python 3.5, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue39

[issue39648] Update math.gcd() to accept "n" arguments.

2020-02-16 Thread SilentGhost
SilentGhost added the comment: You could (should?) use reduce, then: >>> functools.reduce(math.gcd, (6, 30, 40, 60, 20, 40)) 2 -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.or

[issue39721] Fix constness of members of tok_state struct.

2020-02-21 Thread SilentGhost
Change by SilentGhost : -- nosy: +serhiy.storchaka, vstinner type: -> behavior versions: +Python 3.9 ___ Python tracker <https://bugs.python.org/issu

[issue39723] io.open_code should accept PathLike objects

2020-02-22 Thread SilentGhost
Change by SilentGhost : -- nosy: +steve.dower versions: +Python 3.9 ___ Python tracker <https://bugs.python.org/issue39723> ___ ___ Python-bugs-list mailin

[issue39730] Licence (license) for Python 3.8.1 is missing

2020-02-23 Thread SilentGhost
Change by SilentGhost : -- priority: normal -> high stage: -> needs patch ___ Python tracker <https://bugs.python.org/issue39730> ___ ___ Python-bugs-list

[issue35885] configparser: indentation

2020-02-23 Thread SilentGhost
SilentGhost added the comment: Your PRs are missing documentation and tests. -- ___ Python tracker <https://bugs.python.org/issue35885> ___ ___ Python-bug

[issue39732] plistlib should export UIDs in XML like Apple does

2020-02-23 Thread SilentGhost
Change by SilentGhost : -- nosy: +serhiy.storchaka type: behavior -> enhancement versions: -Python 2.7, Python 3.5, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issu

[issue39733] Bug in hypergeometric function

2020-02-23 Thread SilentGhost
SilentGhost added the comment: Hi, this is a wrong bug tracker. You can report numpy issues at https://github.com/numpy/numpy/issues and scipy one's at https://github.com/scipy/scipy/issues -- nosy: +SilentGhost resolution: -> third party stage: -> resolved status: ope

[issue39737] Speed up list.__eq__ by about 6%

2020-02-24 Thread SilentGhost
Change by SilentGhost : -- nosy: +corona10, serhiy.storchaka, vstinner ___ Python tracker <https://bugs.python.org/issue39737> ___ ___ Python-bugs-list mailin

[issue39743] variable quiet is not defined in function main.

2020-02-24 Thread SilentGhost
Change by SilentGhost : -- components: +Library (Lib) -Cross-Build resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> bad input crashes py_compile library type: -> behavior ___ Python

[issue39757] EmailMessage wrong encoding for international domain

2020-02-27 Thread SilentGhost
Change by SilentGhost : -- superseder: -> email parseaddr and formataddr should be IDNA aware ___ Python tracker <https://bugs.python.org/issue39757> ___ _

[issue39861] French doc __futur__: Bad URL

2020-03-06 Thread SilentGhost
Change by SilentGhost : -- assignee: docs@python -> components: -2to3 (2.x to 3.x conversion tool), Documentation resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python

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

2020-03-06 Thread SilentGhost
Change by SilentGhost : -- versions: +Python 3.9 -Python 3.5 ___ Python tracker <https://bugs.python.org/issue21031> ___ ___ Python-bugs-list mailing list Unsub

[issue39972] Math library Bug Return None for "degrees(0)"

2020-03-16 Thread SilentGhost
Change by SilentGhost : -- nosy: +Ion SKALAMERA resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue40039] [CVE-2020-10796] Python multiprocessing Remote Code Execution vulnerability

2020-03-22 Thread SilentGhost
Change by SilentGhost : -- nosy: +davin, pitrou ___ Python tracker <https://bugs.python.org/issue40039> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40043] RegExp Conditional Construct (?(id/name)yes-pattern|no-pattern) Problem

2020-03-22 Thread SilentGhost
SilentGhost added the comment: Leon, this most likely is not a bug, not because what's stated in documentation, but because you're most likely not testing what you think you do. Here is the test that you should be doing: >>> re.match(r'(<)?(\w+@\w+(?:\.\w+)+)(?

[issue36759] astimezone() fails on Windows for pre-epoch times

2020-03-23 Thread SilentGhost
SilentGhost added the comment: Yes, I was also able to verify this issue on 3.8.2 on win10. Argument to astimezone is not required, and this happens for both naïve and aware objects. -- nosy: +belopolsky, p-ganssle resolution: duplicate -> stage: resolved -> test needed

[issue40076] isoformat function drops microseconds part if its value is 000000

2020-03-26 Thread SilentGhost
Change by SilentGhost : -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.org/issue40076> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40148] Add PurePath.with_stem()

2020-04-01 Thread SilentGhost
Change by SilentGhost : -- nosy: +pitrou type: -> enhancement versions: +Python 3.9 ___ Python tracker <https://bugs.python.org/issue40148> ___ ___ Python-

[issue40124] Clearer assertion error

2020-04-01 Thread SilentGhost
Change by SilentGhost : -- versions: -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue40124> ___ ___ Python-bugs-list mailing list Unsub

[issue40194] Document special meanings of a single underscore

2020-04-05 Thread SilentGhost
SilentGhost added the comment: Various meanings are documented in appropriate sections, ignoring and use in loops is a misunderstanding on part of the author - using underscore there is convention and doesn't have special meaning on the language level. -- nosy: +Silent

[issue40154] embedded null byte when connecting to sqlite database using a bytes object

2020-04-08 Thread SilentGhost
SilentGhost added the comment: Hi Fernando, the first parameter of the connect function is described in documentation as follows: > database is a path-like object giving the pathname (absolute or relative to > the current working directory) of the database file to be opened. You c

[issue39598] ERR_CACHE_MISS

2020-04-09 Thread SilentGhost
Change by SilentGhost : -- Removed message: https://bugs.python.org/msg366099 ___ Python tracker <https://bugs.python.org/issue39598> ___ ___ Python-bugs-list m

[issue39598] ERR_CACHE_MISS

2020-04-09 Thread SilentGhost
Change by SilentGhost : -- Removed message: https://bugs.python.org/msg361686 ___ Python tracker <https://bugs.python.org/issue39598> ___ ___ Python-bugs-list m

[issue39598] ERR_CACHE_MISS

2020-04-09 Thread SilentGhost
Change by SilentGhost : -- Removed message: https://bugs.python.org/msg362378 ___ Python tracker <https://bugs.python.org/issue39598> ___ ___ Python-bugs-list m

[issue36199] libzmq.dll causes uncontrollable screen flickering when accessing windows 2012 R2 server through remote desktop

2020-04-09 Thread SilentGhost
Change by SilentGhost : -- Removed message: https://bugs.python.org/msg361403 ___ Python tracker <https://bugs.python.org/issue36199> ___ ___ Python-bugs-list m

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

2020-04-09 Thread SilentGhost
Change by SilentGhost : -- Removed message: https://bugs.python.org/msg356223 ___ Python tracker <https://bugs.python.org/issue32545> ___ ___ Python-bugs-list m

[issue40256] Python 3.8 Not Launching on Bootcamp Windows 10.

2020-04-11 Thread SilentGhost
Change by SilentGhost : -- type: crash -> behavior ___ Python tracker <https://bugs.python.org/issue40256> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue39951] Ignore specific errors when closing ssl connections

2020-04-11 Thread SilentGhost
Change by SilentGhost : -- nosy: +christian.heimes ___ Python tracker <https://bugs.python.org/issue39951> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40260] modulefinder traceback regression starting on Windows

2020-04-12 Thread SilentGhost
Change by SilentGhost : -- nosy: +brandtbucher stage: -> needs patch type: -> behavior ___ Python tracker <https://bugs.python.org/issue40260> ___ ___

[issue40266] Failure to build _ssl module on ubuntu xenial

2020-04-12 Thread SilentGhost
SilentGhost added the comment: This should have been fixed already in #39953. Do re-open, if you can reproduce this with the latest checkouts. -- nosy: +SilentGhost resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Let's updat

[issue40270] activate (or include) json1 extension in sqlite

2020-04-13 Thread SilentGhost
Change by SilentGhost : -- components: +Extension Modules, Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware stage: -> test needed type: -> behavior versions: +Python 3.9 ___ Python tracker <https://bugs.python.org/i

[issue39953] Let's update ssl error codes

2020-04-15 Thread SilentGhost
SilentGhost added the comment: Michael, could you try with the latest fix in 584a3cfda4? -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.org/issue39

[issue1490384] PC new-logo-based icon set

2020-04-17 Thread SilentGhost
Change by SilentGhost : -- pull_requests: -16955 ___ Python tracker <https://bugs.python.org/issue1490384> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40316] Add zero function to time, datetime, which acts as the use case of replace to limit resolution

2020-04-18 Thread SilentGhost
SilentGhost added the comment: What is the use-case for this new method? -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.org/issue40316> ___ ___

[issue40319] dict.update() return the updated dict instead of None

2020-04-18 Thread SilentGhost
SilentGhost added the comment: This looks like a proposed "enhancement" rather than a bug report. Unfortunately, this is not possible for a myriad of reasons, from backward compatibility to overall use of mutating methods in Python. -- nosy: +SilentGhost resolution: -

[issue40323] Printing of Single (') and Double (") code in one sentence using escape Code

2020-04-18 Thread SilentGhost
SilentGhost added the comment: The output in REPL is valid representation of an object that can be often be used to re-create the object, you could use print function to see how the string would look like when output on screen or written into a file. -- nosy: +SilentGhost resolution

[issue40463] csv.reader split error

2020-04-30 Thread SilentGhost
Change by SilentGhost : -- type: enhancement -> behavior versions: +Python 3.7, Python 3.8 -Python 3.6 ___ Python tracker <https://bugs.python.org/issu

[issue40664] Documentation error: itertools.dropwhile(is_even, itertools.count()) output

2020-05-17 Thread SilentGhost
SilentGhost added the comment: Did you try running that? The documentation is correct, dropwhile works differently than filter. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open -> closed type: -&

[issue40693] pathlib.Path will be broken with os.chdir command.

2020-05-19 Thread SilentGhost
Change by SilentGhost : -- components: +Library (Lib) nosy: +pitrou stage: -> needs patch type: -> behavior versions: +Python 3.7 ___ Python tracker <https://bugs.python.org/i

[issue40752] Implement PurePath.__len__

2020-05-24 Thread SilentGhost
SilentGhost added the comment: What would it do? -- nosy: +SilentGhost, pitrou ___ Python tracker <https://bugs.python.org/issue40752> ___ ___ Python-bugs-list m

[issue40739] find_library broken for binutils >= 2.32 / 2.34

2020-05-24 Thread SilentGhost
Change by SilentGhost : -- nosy: +amaury.forgeotdarc, belopolsky, meador.inge, vinay.sajip versions: -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue40

[issue27495] Pretty printing sorting for set and frozenset instances

2020-05-24 Thread SilentGhost
SilentGhost added the comment: Serhiy, would you be interested in converting your patch to a PR? -- versions: +Python 3.10 ___ Python tracker <https://bugs.python.org/issue27

[issue40768] pyaudio

2020-05-25 Thread SilentGhost
Change by SilentGhost : -- resolution: -> third party stage: -> resolved status: open -> closed type: -> behavior ___ Python tracker <https://bugs.python

[issue40771] python3 fromtimestamp generates OSError

2020-05-25 Thread SilentGhost
SilentGhost added the comment: You seem to have read the docs, so I'm a bit confused why you think that is a bug. According to https://docs.python.org/3/library/datetime.html#datetime.datetime.fromtimestamp > fromtimestamp() may raise OverflowError, if the timestamp is out of t

[issue40771] python3 fromtimestamp generates OSError

2020-05-26 Thread SilentGhost
SilentGhost added the comment: I think I would have to leave judgement on that to core developers. This, if accepted, would be a candidate for 3.10. -- versions: +Python 3.10 -Python 3.8 ___ Python tracker <https://bugs.python.org/issue40

[issue40832] hi param in bisect module should not accept negative values

2020-05-31 Thread SilentGhost
Change by SilentGhost : -- nosy: +rhettinger versions: +Python 3.10, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issue40

[issue40828] shared memory problems with multiprocessing.Pool

2020-05-31 Thread SilentGhost
Change by SilentGhost : -- nosy: +davin, pitrou ___ Python tracker <https://bugs.python.org/issue40828> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40834] sending str via channel caused truncate on last character

2020-05-31 Thread SilentGhost
Change by SilentGhost : -- nosy: +eric.snow ___ Python tracker <https://bugs.python.org/issue40834> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40845] idna encoding fails for Cherokee symbols

2020-06-02 Thread SilentGhost
SilentGhost added the comment: For the record: >>> 'ꮳꮃꭹ'.encode('punycode') b'tz9ata7l' >>> '\u13e3\u13b3\u13a9'.encode('punycode') b'f9dt7l' Also, your unicode-escaped string

[issue40845] idna encoding fails for Cherokee symbols

2020-06-02 Thread SilentGhost
SilentGhost added the comment: I took it from your msg370615: > of even more reliable > Execute '\u13e3\u13b3\u13a9'.encode('idna') -- ___ Python tracker <https

[issue40850] Programming FAQ - variables local to the lambdas

2020-06-02 Thread SilentGhost
SilentGhost added the comment: I don't think your suggestion improve readability there. I think explanation following the code example does a decent job without being overly verbose. Regarding, memoization, it is mentioned in [0], right after describing the technique. So, I'm no

[issue40885] Cannot pipe GzipFile into subprocess

2020-06-06 Thread SilentGhost
SilentGhost added the comment: > subprocess somehow gets a hold of the underlying file descriptor pointing to > the compressed file, and ends up being fed the compressed bytes That is exactly what happens, and I'd wager this is not going to change. You could easily pass the de

[issue40973] platform.platform() in Python 3.8 does not report detailed Linux platform information

2020-06-14 Thread SilentGhost
SilentGhost added the comment: This is the result of removal of platform.linux_distribution() in #28167. Which was deprecated since 3.5. As far as I understand, suggested replacement is distro package on pypi (https://pypi.org/project/distro/). -- nosy: +SilentGhost, petr.viktorin

[issue40968] urllib is unable to deal with TURN server infront

2020-06-14 Thread SilentGhost
Change by SilentGhost : -- nosy: +orsenthil ___ Python tracker <https://bugs.python.org/issue40968> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40976] Clarify motivation for `chain.from_iterable`

2020-06-14 Thread SilentGhost
Change by SilentGhost : -- assignee: -> docs@python components: +Documentation -Library (Lib) nosy: +docs@python ___ Python tracker <https://bugs.python.org/issu

[issue40981] increment is wrong in 3.7

2020-06-14 Thread SilentGhost
SilentGhost added the comment: This isn't a problem, this is how floating number implemented in Python and many other languages. Please read the linked detailed explanation and do not re-open the ticket. -- nosy: +SilentGhost status: open ->

[issue40997] python 3.8.2: datetime.datetime(1969, 1, 1).timestamp() yields OSError

2020-06-17 Thread SilentGhost
SilentGhost added the comment: This looks like a duplicate of #37527. -- nosy: +SilentGhost, belopolsky, p-ganssle resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Timestamp conversion on windows fails with timestamps clo

[issue41005] Permission denied: 'xdg-settings' when executing 'jupyter notebook' from command line

2020-06-21 Thread SilentGhost
Change by SilentGhost : -- nosy: +ned.deily, ronaldoussoren ___ Python tracker <https://bugs.python.org/issue41005> ___ ___ Python-bugs-list mailing list Unsub

[issue41064] IDLE highlights wrong place when code has syntax error of ** unpacking dict in f-string

2020-06-21 Thread SilentGhost
Change by SilentGhost : -- type: compile error -> behavior ___ Python tracker <https://bugs.python.org/issue41064> ___ ___ Python-bugs-list mailing list Un

[issue41072] Python 3.8.3 passively introduced open source software contains CVE vulnerability

2020-06-22 Thread SilentGhost
Change by SilentGhost : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue41

[issue41085] Array regression test fails

2020-06-22 Thread SilentGhost
SilentGhost added the comment: This looks like an overflow failure in a bigmem test (though the given limit 24Gb should accommodate that?). Do bigmem tests work on Windows? William, you've made some sort of modifications to the versioned files, what are those? -- compo

[issue25257] In subject line email library inserts unwanted space after a thousands comma in a number

2020-06-23 Thread SilentGhost
Change by SilentGhost : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue25257> ___ ___

[issue40636] Provide a strict form of zip (PEP-618) requiring same length inputs

2020-06-24 Thread SilentGhost
SilentGhost added the comment: Ram, please fix the typo pointed out on github https://github.com/python/cpython/commit/59cf853332a82ce92875ea3dd6bba08e1305a288#r40044022 -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.org/issue40

[issue41124] String with encode causing addition of 'b' in the beginning

2020-06-25 Thread SilentGhost
SilentGhost added the comment: Your request is likely failing for entirely different reasons. What you've done is encoded a str object into bytes object, which is represented with as literal using b prefix. It isn't being sent over the socket. -- nosy: +SilentGhost

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