[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

[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/issue39

[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

[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> ___ ___

[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 origi

[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 status: open

[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

[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

[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> ___ ___

[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

[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

[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

[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: -> needs pa

[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

[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 still

[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 tracker <ht

[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

[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

[issue39121] gzip header write OS field

2019-12-22 Thread SilentGhost
Change by SilentGhost : -- versions: +Python 3.9 ___ Python tracker <https://bugs.python.org/issue39121> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue900092] hotshot.stats.load fails with AssertionError

2019-12-18 Thread SilentGhost
Change by SilentGhost : -- resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org

[issue39054] Add an parameter to list.remove()

2019-12-15 Thread SilentGhost
SilentGhost added the comment: Again, please start proposal discussion at python-ideas. Also, it is not sufficient just to post there, you need to engage with the people asking question to justify whatever new feature you're advocating. -- components: +Interpreter Core nosy

[issue39053] Hide manually raised exception formatting

2019-12-15 Thread SilentGhost
SilentGhost added the comment: This sounds like it needs at least some discussion on python-ideas. For example, just reading your description I can't imagine what is supposed to happen when an error occurs when producing argument to the exception. -- nosy: +SilentGhost resolution

[issue39046] collections.abc.Reversible should not be a subclass of Hashable

2019-12-14 Thread SilentGhost
Change by SilentGhost : -- nosy: +rhettinger, stutzbach versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issue39046> ___ ___ Python-bugs-list m

[issue39045] Segmentation of string

2019-12-14 Thread SilentGhost
SilentGhost added the comment: It is generally suggested to offer this sort of proposals for discussion on python-ideas mailing list [0] first. There, you can elaborate on why you think this is necessary, what sort of use cases this new method could have, etc. Once there is a broad

[issue27495] Pretty printing sorting for set and frozenset instances

2019-12-13 Thread SilentGhost
Change by SilentGhost : -- nosy: +SilentGhost type: enhancement -> behavior versions: +Python 3.7, Python 3.8, Python 3.9 -Python 3.6 ___ Python tracker <https://bugs.python.org/issu

[issue38828] cookiejar.py broken in 3.8

2019-11-17 Thread SilentGhost
Change by SilentGhost : -- keywords: +3.8regression stage: -> test needed type: crash -> behavior ___ Python tracker <https://bugs.python.org/i

[issue38672] Crash on mimetypes.init() if there is no access to one of knownfiles

2019-11-03 Thread SilentGhost
SilentGhost added the comment: The fix seems fairly obvious: replacing isfile check with try-catch statement for all OSErrors. Would you like to submit a pull request, Michał? -- nosy: +SilentGhost stage: -> test needed type: crash -> behavior versions: -Python 2.7, Pyth

[issue38537] Python 2.7.17 reports itself as 2.7.16

2019-10-20 Thread SilentGhost
Change by SilentGhost : -- components: +Windows nosy: +paul.moore, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue38537> ___ ___ Pytho

[issue38536] Trailing space in formatted currency with international=True and symbol following value

2019-10-20 Thread SilentGhost
SilentGhost added the comment: This isn't just de_DE locale, but any locale that puts currency symbol after the value. This issue is even "acknowledged" in the test. I'd think that appropriate fix would be to .rstrip smb on line Lib/locale.py:282 Alternatively, function return v

[issue38349] Email example using imaginary library installation error.

2019-10-05 Thread SilentGhost
SilentGhost added the comment: One fairly naive solution would be to define a magic_html_parser directly in the example and move explanatory comment there. In order not to break the code it could return an empty string. -- ___ Python tracker

[issue38349] Email example using imaginary library installation error. The install shows that it only supports python 2.x but is listed under python 3.6+ docs.

2019-10-02 Thread SilentGhost
SilentGhost added the comment: imaginary in the example is not meant to refer to https://pypi.org/project/Imaginary/ it's meant to refer to a module that you could write that would do all the dirty work. Perhaps, it's not the best name to use provided there is an actual module on pypi

[issue38040] Typo: "Writeable" Should be "Writable" in IO Library Documentation

2019-09-05 Thread SilentGhost
SilentGhost added the comment: There are more cases of using this spelling in the code base, but I personally don't see how any confusion can arise and why this "fix" is needed. -- nosy: +SilentGhost ___ Python tracker <https://bu

[issue37953] Fix ForwardRef equality checks

2019-08-26 Thread SilentGhost
Change by SilentGhost : -- nosy: +gvanrossum, levkivskyi ___ Python tracker <https://bugs.python.org/issue37953> ___ ___ Python-bugs-list mailing list Unsub

[issue37935] Improve performance of pathlib.scandir()

2019-08-24 Thread SilentGhost
Change by SilentGhost : -- nosy: +pitrou stage: -> patch review ___ Python tracker <https://bugs.python.org/issue37935> ___ ___ Python-bugs-list mai

[issue37882] Code folding in IDLE

2019-08-18 Thread SilentGhost
Change by SilentGhost : -- versions: -Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue37882> ___ ___ Python-bugs-list mailing list Unsub

[issue37867] docs says subprocess.run accepts a string but this does not work on linux

2019-08-15 Thread SilentGhost
SilentGhost added the comment: But docs don't say that at all. You're looking at description of an attribute of returned object. And of course it can be a string, under certain conditions. The attributes of CompletedProcess and function arguments are described in the standard way, and I

[issue37867] docs says subprocess.run accepts a string but this does not work on linux

2019-08-15 Thread SilentGhost
SilentGhost added the comment: The only place this phrase appears is in CompletedProcess.args description and it is correct there. Whether args arguments of subprocess.run (or generally Popen) can be a list or a string is discussed in Frequently Used Arguments section, and it is perfectly

[issue37857] Setting logger.level directly has no effect due to caching in 3.7+

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

[issue37787] Minimum denormal or ** bug

2019-08-07 Thread SilentGhost
SilentGhost added the comment: This seems like a Windows-specific issues. Using the same version of python built with gcc 8.3, I get the results inline with your expectations and all the comparisons yield exactly opposite values. -- components: +Windows nosy: +SilentGhost

[issue37779] configparser: add documentation about several read() behaviour

2019-08-07 Thread SilentGhost
Change by SilentGhost : -- components: +Cross-Build -Library (Lib) nosy: +Alex.Willmer stage: -> needs patch type: enhancement -> behavior versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/i

[issue37779] configparser: add documentation about several read() behaviour

2019-08-07 Thread SilentGhost
Change by SilentGhost : -- assignee: -> docs@python components: +Documentation -Cross-Build nosy: +docs@python -Alex.Willmer ___ Python tracker <https://bugs.python.org/issu

[issue37653] make install fails

2019-07-22 Thread SilentGhost
Change by SilentGhost : -- keywords: -3.8regression versions: -Python 3.8 ___ Python tracker <https://bugs.python.org/issue37653> ___ ___ Python-bugs-list m

[issue37653] make install fails

2019-07-22 Thread SilentGhost
Change by SilentGhost : -- keywords: +3.8regression nosy: +vstinner stage: -> patch review versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issu

[issue37626] Documentation:conflict between docs

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

[issue24231] os.makedirs('/', exist_ok=True) fails on Darwin

2019-07-17 Thread SilentGhost
Change by SilentGhost : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue37522] http.cookies.SimpleCookie doesn't seem to be parsed using regulars

2019-07-15 Thread SilentGhost
Change by SilentGhost : -- components: +Library (Lib) -Extension Modules versions: -Python 3.5, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue37

[issue37572] email lib bug

2019-07-13 Thread SilentGhost
SilentGhost added the comment: This seems to be a duplicate of #34424. You'd have to upgrade to the latest 3.7 to get the fix. -- nosy: +SilentGhost resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Unicode names break email

[issue37515] `open("aux.txt", "w")` fails unexpectedly with FileNotFoundError on Windows

2019-07-06 Thread SilentGhost
SilentGhost added the comment: aux is one of the reserved filenames on windows: https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file#naming-conventions I don't think Python can do anything about that. -- components: +Windows -IO nosy: +SilentGhost, paul.moore

[issue37514] french translation Spelling mistake on datetime python's library documentation online

2019-07-06 Thread SilentGhost
Change by SilentGhost : -- nosy: +mdk ___ Python tracker <https://bugs.python.org/issue37514> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37504] 3.8 b2 now requires sphinx2, but only has documented 1.8

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

[issue37489] pickling instance which inherited from Exception with keyword only parameter

2019-07-03 Thread SilentGhost
Change by SilentGhost : -- nosy: +pitrou versions: +Python 3.7 -Python 3.5 ___ Python tracker <https://bugs.python.org/issue37489> ___ ___ Python-bugs-list mailin

[issue37482] Email header fails with both encoded words and special chars

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

[issue37464] multiple comparison

2019-07-01 Thread SilentGhost
SilentGhost added the comment: Your issue seems to be related to evaluation of 0.0 as falsy value. See documentation at https://docs.python.org/3/library/stdtypes.html#truth-value-testing -- assignee: docs@python -> nosy: +SilentGhost -docs@python resolution: -> not a bug

[issue37457] python3.7 re.split() module bug

2019-06-30 Thread SilentGhost
Change by SilentGhost : -- resolution: -> not a bug stage: -> resolved status: open -> closed type: performance -> behavior ___ Python tracker <https://bugs.python

[issue37443] Python Returns NoneType when convert a string to a list and using sort() method

2019-06-28 Thread SilentGhost
Change by SilentGhost : -- assignee: terry.reedy -> components: -IDLE nosy: +SilentGhost -terry.reedy type: compile error -> behavior ___ Python tracker <https://bugs.python.org/i

[issue37443] Python Returns NoneType when convert a string to a list and using sort() method

2019-06-28 Thread SilentGhost
SilentGhost added the comment: Yes, as documented .sort method mutates object in place and returns None. -- assignee: terry.reedy -> components: -IDLE nosy: +SilentGhost -terry.reedy resolution: -> not a bug stage: -> resolved status: open -> closed type: compile error

[issue37432] Fix a small param type in allocation.rst

2019-06-28 Thread SilentGhost
Change by SilentGhost : -- versions: +Python 3.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issue37432> ___ ___ Python-bugs-list mailin

[issue37432] Fix a small param type in allocation.rst

2019-06-28 Thread SilentGhost
Change by SilentGhost : -- resolution: -> fixed ___ Python tracker <https://bugs.python.org/issue37432> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue37432] Fix a small param type in allocation.rst

2019-06-27 Thread SilentGhost
New submission from SilentGhost : Could you please elaborate on what exactly needs fixing? -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.org/issue37

[issue37418] Code execution without calling it

2019-06-26 Thread SilentGhost
SilentGhost added the comment: The whole file is executed on import, you might as well have taken the "evil" code and placed in the global scope and not in the function. If you want to learn how to use decorators, again I suggest following a tutorial, SO or p

[issue37417] bytearray.extend does not handle errors during iteration.

2019-06-26 Thread SilentGhost
Change by SilentGhost : -- versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue37417> ___ ___ Python-bugs-list mailing list Unsub

[issue37418] Code execution without calling it

2019-06-26 Thread SilentGhost
SilentGhost added the comment: It seems you're misunderstanding mechanics of decorators. Decorator is called when @decorator statement is executed and in that function *you* are calling the wrapped function. There are tutorials available on how to use this feature, I'd suggest you try them

[issue37367] octal escapes applied inconsistently throughout the interpreter and lib

2019-06-21 Thread SilentGhost
Change by SilentGhost : -- components: +Regular Expressions nosy: +ezio.melotti, mrabarnett, serhiy.storchaka versions: +Python 3.9 ___ Python tracker <https://bugs.python.org/issue37

[issue37361] urllib3: TypeError: unsupported operand type(s) for -=: 'Session' and 'int' in Retry class

2019-06-21 Thread SilentGhost
Change by SilentGhost : -- resolution: -> not a bug type: -> behavior ___ Python tracker <https://bugs.python.org/issue37361> ___ ___ Python-bugs-list

[issue37357] mbox From line wrongly detected

2019-06-21 Thread SilentGhost
Change by SilentGhost : -- nosy: +barry, maxking, r.david.murray ___ Python tracker <https://bugs.python.org/issue37357> ___ ___ Python-bugs-list mailin

[issue37357] mbox From line wrongly detected

2019-06-21 Thread SilentGhost
Change by SilentGhost : -- components: +email ___ Python tracker <https://bugs.python.org/issue37357> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37307] isinstance/issubclass doc isn't clear on whether it's an AND or an OR.

2019-06-16 Thread SilentGhost
SilentGhost added the comment: It's the same behaviour as for isinstance, could be enough to add "classinfo is treated as in isinstance call" to avoid duplication. This would also solve short-cutting imprecision. -- ___ Python track

[issue37307] isinstance/issubclass doc isn't clear on whether it's an AND or an OR.

2019-06-16 Thread SilentGhost
SilentGhost added the comment: > It's likely also false that every entry will be checked, since presumably the > function uses short-circuit logic. This, however, would be good to verify first. -- ___ Python tracker <https://bugs.p

[issue37307] isinstance/issubclass doc isn't clear on whether it's an AND or an OR.

2019-06-16 Thread SilentGhost
SilentGhost added the comment: Where are you seeing the text you've quoted for isinstance? You've marked as all versions affected, but for the master docs the text for isinstance is different and is unambiguous re treatment of tuple classinfo. I agree with all your points about issubclass

[issue37306] "~/" not working with open() function in posix systems

2019-06-16 Thread SilentGhost
SilentGhost added the comment: Yes, '~' is not working out of the box and never had. You need to use os.path.expanduser or pathllib.Path.expanduser to get the useable path. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open -&g

[issue37301] CGIHTTPServer doesn't handle long POST requests

2019-06-16 Thread SilentGhost
Change by SilentGhost : -- nosy: +georg.brandl ___ Python tracker <https://bugs.python.org/issue37301> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37291] AST - code cleanup

2019-06-15 Thread SilentGhost
Change by SilentGhost : -- components: +Interpreter Core nosy: +benjamin.peterson type: -> behavior ___ Python tracker <https://bugs.python.org/issu

[issue37283] Unexpected behavior when running installer a second time with the same arguments or unattend.xml

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

[issue37277] http.cookies.SimpleCookie does not parse attribute without value (rfc2109)

2019-06-14 Thread SilentGhost
SilentGhost added the comment: This was previously reported in #27828 and was introduced by #22796 in order to fix potential security issue. Not every attribute would cause the failure to parse, but only an unusual ones (that is normally occurring "reserved" httponly or secure

[issue37277] http.cookies.SimpleCookie does not parse attribute without value (rfc2109)

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

[issue37241] Item Count Error in Shelf

2019-06-13 Thread SilentGhost
Change by SilentGhost : -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue37241> ___ ___ Python-bugs-list

[issue37180] Fix Persian KAF in mac_farsi.py

2019-06-07 Thread SilentGhost
SilentGhost added the comment: Ramin, I agree with Victor, if you have any information contrary to what we posted, please feel free to post it here so that we can consider re-opening the issue. -- resolution: -> not a bug stage: patch review -> resolved status: open -&g

[issue37198] _parse_localename fail to parse 'en_IL'

2019-06-07 Thread SilentGhost
SilentGhost added the comment: How come your locale doesn't have encoding associated with it? The bit you're looking at is not really relevant, though. -- components: +Library (Lib) nosy: +SilentGhost title: _parse_localename fail to parse 'US_IL' -> _parse_localename fail to pa

[issue37197] [Idle-dev] Feedback appreciated for two suggested new features

2019-06-07 Thread SilentGhost
SilentGhost added the comment: This seems to have been posted to bpo by mistake. I'm going to close this issue as a duplicate of #37177 and I would appreciate if you would send your e-mail to the idle-dev mailing list instead. -- nosy: +SilentGhost resolution: -> duplicate st

[issue37192] pip instal math3d - EROR

2019-06-07 Thread SilentGhost
Change by SilentGhost : -- resolution: -> third party stage: -> resolved status: open -> closed type: compile error -> behavior ___ Python tracker <https://bugs.python

[issue33826] enable discovery of class source code in IPython interactively defined classes

2019-06-07 Thread SilentGhost
Change by SilentGhost : -- nosy: +pablogsal ___ Python tracker <https://bugs.python.org/issue33826> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37180] Fix Persian KAF in mac_farsi.py

2019-06-06 Thread SilentGhost
SilentGhost added the comment: The names of the characters given in comments agree with the unicode database name (they're indeed ARABIC-INDIC DIGITs and ARABIC LETTER). The replacement character that you're proposing is called (according to the same database) 'ARABIC LETTER KEHEH', whereas

[issue37166] inspect.findsource doesn't handle shortened files gracefully

2019-06-05 Thread SilentGhost
SilentGhost added the comment: 3.6 is in security-only mode, this doesn't look like a security issue to me -- nosy: +SilentGhost, yselivanov versions: +Python 3.9 -Python 3.6 ___ Python tracker <https://bugs.python.org/issue37

[issue37150] Do not allow to pass FileType class object instead of instance in add_argument

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

[issue37139] Inconsistent behavior of email.header.decode_header

2019-06-03 Thread SilentGhost
SilentGhost added the comment: There seems to be some work started in #32975. Perhaps, you'd like to revive it or contribute otherwise? -- ___ Python tracker <https://bugs.python.org/issue37

[issue37139] Inconsistent behavior of email.header.decode_header

2019-06-03 Thread SilentGhost
SilentGhost added the comment: This seem like a duplicate of #24797. I hope the answer given there applies. -- components: +email nosy: +SilentGhost, barry, r.david.murray resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> email.header.d

[issue37133] Erro "ffi.h: No such file" when build python 3.8 (branch master) on windows 10

2019-06-02 Thread SilentGhost
SilentGhost added the comment: How are you building python? Have you been following these instructions? https://cpython-core-tutorial.readthedocs.io/en/latest/build_cpython_windows.html -- nosy: +SilentGhost ___ Python tracker <ht

[issue37133] Erro "ffi.h: No such file" when build python 3.8 (branch master) on windows 10

2019-06-02 Thread SilentGhost
Change by SilentGhost : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware type: -> behavior ___ Python tracker <https://bugs.python.org/issu

[issue37121] 'ა'.upper() should return 'ა'

2019-06-01 Thread SilentGhost
SilentGhost added the comment: What changed was that python 3.7 is using Unicode 11 standard, which has introduced changes for Georgian script. See "Casing Issues" under https://www.unicode.org/versions/Unicode11.0.0/#Migration The Python is correctly implements th

[issue37092] LoggerAdapter doesn't have fatal() like Logger

2019-05-31 Thread SilentGhost
SilentGhost added the comment: fatal is an undocumented feature, it's probably better not to use it in the first place. -- nosy: +SilentGhost, vinay.sajip versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue37

[issue37113] 'ß'.upper() should return 'ẞ'

2019-05-31 Thread SilentGhost
SilentGhost added the comment: Python implements Unicode standard when it comes to capitalisation rules. According to the latest standard 'ß' is upper-cased to 'SS'. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open -&g

[issue37111] Logging - Inconsistent behaviour when handling unicode

2019-05-31 Thread SilentGhost
Change by SilentGhost : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware type: -> behavior ___ Python tracker <https://bugs.python.org/issu

[issue37111] Logging - Inconsistent behaviour when handling unicode

2019-05-31 Thread SilentGhost
Change by SilentGhost : -- versions: +Python 3.7, Python 3.8 -Python 3.6 ___ Python tracker <https://bugs.python.org/issue37111> ___ ___ Python-bugs-list mailin

[issue37111] Logging - Inconsistent behaviour when handling unicode

2019-05-31 Thread SilentGhost
SilentGhost added the comment: > Given that the file created by the logger is utf-8 I don't think this is true. Default file handler created using filename argument is opened with encoding None (meaning that it relies on system-default encoding, which is on Windows is not ut

[issue37101] Filterer.filter can be rewritten using built-ins just as efficient much more readable

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

[issue37093] http.client aborts header parsing upon encountering non-ASCII header names

2019-05-30 Thread SilentGhost
Change by SilentGhost : -- components: +Library (Lib) nosy: +barry, maxking, r.david.murray stage: -> test needed type: -> behavior versions: -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/i

[issue37078] spam

2019-05-28 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file48372/Untitled design.png ___ Python tracker <https://bugs.python.org/issue37078> ___ ___ Python-bug

[issue37078] spam

2019-05-28 Thread SilentGhost
Change by SilentGhost : -- nosy: -norton ___ Python tracker <https://bugs.python.org/issue37078> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37078] spam

2019-05-28 Thread SilentGhost
Change by SilentGhost : -- Removed message: https://bugs.python.org/msg343768 ___ Python tracker <https://bugs.python.org/issue37078> ___ ___ Python-bugs-list m

[issue37071] HTMLParser mistakenly inventing new tags while parsing

2019-05-27 Thread SilentGhost
Change by SilentGhost : -- nosy: +ezio.melotti ___ Python tracker <https://bugs.python.org/issue37071> ___ ___ Python-bugs-list mailing list Unsubscribe:

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