Change by SilentGhost :
Removed file:
https://bugs.python.org/file49263/Whatsapp-self-message-delivering-using-python-c55344b7f384e036bbe0fda69918c9eccf146dc1.zip
___
Python tracker
<https://bugs.python.org/issue41
Change by SilentGhost :
--
nosy: +ned.deily
type: -> security
___
Python tracker
<https://bugs.python.org/issue41189>
___
___
Python-bugs-list mailing list
Un
Change by SilentGhost :
--
nosy: +barry, maxking, r.david.murray
___
Python tracker
<https://bugs.python.org/issue41157>
___
___
Python-bugs-list mailin
Change by SilentGhost :
--
components: +Library (Lib)
___
Python tracker
<https://bugs.python.org/issue41157>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by SilentGhost :
--
nosy: +benjamin.peterson
type: -> behavior
versions: -Python 3.5, Python 3.6, Python 3.7
___
Python tracker
<https://bugs.python.org/issu
Change by SilentGhost :
--
components: +macOS
nosy: +ned.deily, ronaldoussoren
___
Python tracker
<https://bugs.python.org/issue41212>
___
___
Python-bugs-list m
Change by SilentGhost :
--
nosy: +pitrou, serhiy.storchaka, vstinner
___
Python tracker
<https://bugs.python.org/issue41128>
___
___
Python-bugs-list mailin
Change by SilentGhost :
--
components: -Extension Modules
nosy: +pitrou
versions: -Python 3.5, Python 3.6
___
Python tracker
<https://bugs.python.org/issue41
SilentGhost added the comment:
This was an intentional change, see #17400 and specifically commit
49e012e5492c1c70690ab72a8d03a980047148b5; so I'm going to close this issue as
not a bug.
--
nosy: +SilentGhost
resolution: -> not a bug
stage: -> resolved
status: ope
Change by SilentGhost :
--
nosy: +davin, pitrou
type: crash -> behavior
___
Python tracker
<https://bugs.python.org/issue41344>
___
___
Python-bugs-list mai
Change by SilentGhost :
--
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue41321>
___
___
Python-bugs-list mailing list
Unsubscrib
Change by SilentGhost :
--
nosy: +lukasz.langa
___
Python tracker
<https://bugs.python.org/issue41363>
___
___
Python-bugs-list mailing list
Unsubscribe:
SilentGhost added the comment:
In your example you're instantiating ConfigParser with default parameters,
meaning empty_lines_in_values equals True, which leads to key "a" consuming
everything on the following indented lines. If you're were to specify Fal
Change by SilentGhost :
--
nosy: +barry, maxking, r.david.murray
title: Wrong example, need scpae \" -> Escape needed in the email documentation
example
___
Python tracker
<https://bugs.python.org
Change by SilentGhost :
--
components: +Library (Lib)
nosy: +ethan.furman
type: -> behavior
___
Python tracker
<https://bugs.python.org/issue41398>
___
___
Py
SilentGhost added the comment:
Ehsonjon, please do not remove people from the nosy list.
--
components: +Library (Lib)
nosy: +SilentGhost, epaine, gregorlingl, terry.reedy, willingc
type: -> enhancement
versions: +Python 3.10
___
Python trac
Change by SilentGhost :
--
nosy: -SilentGhost
___
Python tracker
<https://bugs.python.org/issue41380>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by SilentGhost :
--
nosy: -SilentGhost
___
Python tracker
<https://bugs.python.org/issue26791>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by SilentGhost :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
SilentGhost added the comment:
multiprocessing module that is available on PyPi is a backport of stdlib module
to python 2.4 and 2.5. multiprocessing module is available in stdlib for all
version after that, so you don't need to install it with pip.
--
nosy: +SilentGhost
resol
Change by SilentGhost :
--
nosy: +vstinner
___
Python tracker
<https://bugs.python.org/issue36965>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by SilentGhost :
--
nosy: +vinay.sajip
versions: +Python 3.8 -Python 3.9
___
Python tracker
<https://bugs.python.org/issue36964>
___
___
Python-bugs-list m
SilentGhost added the comment:
I'm going to close this issue as a duplicate of #29097. If you're still
experience this problem on python3.7, please re-open.
--
resolution: -> duplicate
stage: -> resolved
status: pending -> closed
superseder: -> [Windows] da
Change by SilentGhost :
--
resolution: fixed -> not a bug
stage: -> resolved
status: -> closed
___
Python tracker
<https://bugs.python.org/issue36981>
___
___
SilentGhost added the comment:
This would be backward incompatible change. I just wanted to point out that the
symlink was only broken because the file did not exist, and one might want to
legitimately create a link relative to the target's location. I'd imagine
creating a link i
SilentGhost added the comment:
This is a limitation of floating points representation. If you need objects
representing decimal numeral, you could use decimal module.
--
nosy: +SilentGhost
resolution: -> not a bug
stage: -> resolved
status: open -&g
SilentGhost added the comment:
This seems to have been fixed in #27860 (in master) particularly
6fa84bd12c4b83bee6a41b989363230d5c03b96c. I'm not sure why it was decided
against backporting to 3.7 as no new features were introduced, but it's perhaps
better to raise this questi
SilentGhost added the comment:
I was wondering why it was decided against backporting to 3.7?
6fa84bd12c4b83bee6a41b989363230d5c03b96c fixes an actual bug #35990 (string
mask in tuple argument for IPv4Interfaces). Incidentally, there are also no
tests for this behaviour.
Just to note: both
SilentGhost added the comment:
Shannon, what you're suggesting is prone to the same issue (creating a broken
symlink) if a given destination does not exist relative to cwd. I think your
current solution is better as it explicitly provides the paths, but it's not
generalised
Change by SilentGhost :
--
resolution: -> not a bug
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue37033>
___
___
SilentGhost added the comment:
This seem like a misdirected expectation. count returns a regular iterator and
the purpose behind it is not to enable membership checks, this only works
because it's a regular iterators and normal rules for checking membership are
applied.
In any case,
Change by SilentGhost :
--
nosy: -SilentGhost
___
Python tracker
<https://bugs.python.org/issue37040>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by SilentGhost :
--
nosy: +SilentGhost
___
Python tracker
<https://bugs.python.org/issue37048>
___
___
Python-bugs-list mailing list
Unsubscribe:
SilentGhost added the comment:
Either 135c6a56e55d2f4f8718b3b9f03ce3c692b15f0f or
b891c465bb7d38a597c5c2ad547d7b19194f4dad (#37046) broke the build.
Lib/test/test_typing.py does not round-trip.
--
nosy: +SilentGhost
___
Python tracker
<ht
SilentGhost added the comment:
This looks like a duplicate of #36853. Do you happen to have sphinx 2 installed?
--
assignee: -> docs@python
components: +Documentation
nosy: +SilentGhost, docs@python
___
Python tracker
<https://bugs.pyth
Change by SilentGhost :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by SilentGhost :
--
superseder: -> inconsistencies in docs builds (Sphinx 2)
___
Python tracker
<https://bugs.python.org/issue37057>
___
___
Python-
Change by SilentGhost :
--
nosy: -erika1998
title: Pre-compile Directive to Remind Coders that Men are Pigs -> spam
___
Python tracker
<https://bugs.python.org/issu
Change by SilentGhost :
--
Removed message: https://bugs.python.org/msg343580
___
Python tracker
<https://bugs.python.org/issue37059>
___
___
Python-bugs-list m
Change by SilentGhost :
--
type: -> enhancement
___
Python tracker
<https://bugs.python.org/issue37064>
___
___
Python-bugs-list mailing list
Unsubscrib
Change by SilentGhost :
--
resolution: -> duplicate
stage: -> resolved
status: open -> closed
superseder: -> problem with traceback for syntax error in f-string
___
Python tracker
<https://bugs.python
Change by SilentGhost :
--
nosy: +ezio.melotti
___
Python tracker
<https://bugs.python.org/issue37071>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by SilentGhost :
--
Removed message: https://bugs.python.org/msg343768
___
Python tracker
<https://bugs.python.org/issue37078>
___
___
Python-bugs-list m
Change by SilentGhost :
--
nosy: -norton
___
Python tracker
<https://bugs.python.org/issue37078>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by SilentGhost :
Removed file: https://bugs.python.org/file48372/Untitled design.png
___
Python tracker
<https://bugs.python.org/issue37078>
___
___
Python-bug
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
Change by SilentGhost :
--
nosy: +vinay.sajip
___
Python tracker
<https://bugs.python.org/issue37101>
___
___
Python-bugs-list mailing list
Unsubscribe:
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 utf-8)
Change by SilentGhost :
--
versions: +Python 3.7, Python 3.8 -Python 3.6
___
Python tracker
<https://bugs.python.org/issue37111>
___
___
Python-bugs-list mailin
Change by SilentGhost :
--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware
type: -> behavior
___
Python tracker
<https://bugs.python.org/issu
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: -> resol
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/is
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
Change by SilentGhost :
--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware
type: -> behavior
___
Python tracker
<https://bugs.python.org/issu
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
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
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/is
Change by SilentGhost :
--
versions: -Python 3.5, Python 3.6
___
Python tracker
<https://bugs.python.org/issue37150>
___
___
Python-bugs-list mailing list
Unsub
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/is
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
Change by SilentGhost :
--
nosy: +pablogsal
___
Python tracker
<https://bugs.python.org/issue33826>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by SilentGhost :
--
resolution: -> third party
stage: -> resolved
status: open -> closed
type: compile error -> behavior
___
Python tracker
<https://bugs.python
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: -> duplica
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_lo
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
Change by SilentGhost :
--
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue37241>
___
___
Python-bugs-list
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
Change by SilentGhost :
--
nosy: +xtreak
___
Python tracker
<https://bugs.python.org/issue37277>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by SilentGhost :
--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware
___
Python tracker
<https://bugs.python.org/issue37
Change by SilentGhost :
--
components: +Interpreter Core
nosy: +benjamin.peterson
type: -> behavior
___
Python tracker
<https://bugs.python.org/issu
Change by SilentGhost :
--
nosy: +georg.brandl
___
Python tracker
<https://bugs.python.org/issue37301>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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://b
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
Change by SilentGhost :
--
components: +email
___
Python tracker
<https://bugs.python.org/issue37357>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by SilentGhost :
--
nosy: +barry, maxking, r.david.murray
___
Python tracker
<https://bugs.python.org/issue37357>
___
___
Python-bugs-list mailin
Change by SilentGhost :
--
resolution: -> not a bug
type: -> behavior
___
Python tracker
<https://bugs.python.org/issue37361>
___
___
Python-bugs-list
Change by SilentGhost :
--
components: +Regular Expressions
nosy: +ezio.melotti, mrabarnett, serhiy.storchaka
versions: +Python 3.9
___
Python tracker
<https://bugs.python.org/issue37
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 yo
Change by SilentGhost :
--
versions: +Python 3.7, Python 3.8
___
Python tracker
<https://bugs.python.org/issue37417>
___
___
Python-bugs-list mailing list
Unsub
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
python-help. Thi
New submission from SilentGhost :
Could you please elaborate on what exactly needs fixing?
--
nosy: +SilentGhost
___
Python tracker
<https://bugs.python.org/issue37
Change by SilentGhost :
--
resolution: -> fixed
___
Python tracker
<https://bugs.python.org/issue37432>
___
___
Python-bugs-list mailing list
Unsubscrib
Change by SilentGhost :
--
versions: +Python 3.7, Python 3.8, Python 3.9
___
Python tracker
<https://bugs.python.org/issue37432>
___
___
Python-bugs-list mailin
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
Change by SilentGhost :
--
assignee: terry.reedy ->
components: -IDLE
nosy: +SilentGhost -terry.reedy
type: compile error -> behavior
___
Python tracker
<https://bugs.python.org/i
Change by SilentGhost :
--
resolution: -> not a bug
stage: -> resolved
status: open -> closed
type: performance -> behavior
___
Python tracker
<https://bugs.python
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
Change by SilentGhost :
--
versions: -Python 3.5, Python 3.6
___
Python tracker
<https://bugs.python.org/issue37482>
___
___
Python-bugs-list mailing list
Unsub
Change by SilentGhost :
--
nosy: +pitrou
versions: +Python 3.7 -Python 3.5
___
Python tracker
<https://bugs.python.org/issue37489>
___
___
Python-bugs-list mailin
Change by SilentGhost :
--
nosy: +SilentGhost
___
Python tracker
<https://bugs.python.org/issue37504>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by SilentGhost :
--
nosy: +mdk
___
Python tracker
<https://bugs.python.org/issue37514>
___
___
Python-bugs-list mailing list
Unsubscribe:
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.
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
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
Change by SilentGhost :
--
resolution: -> fixed
stage: needs patch -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by SilentGhost :
--
nosy: +yselivanov
___
Python tracker
<https://bugs.python.org/issue37626>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by SilentGhost :
--
keywords: +3.8regression
nosy: +vstinner
stage: -> patch review
versions: +Python 3.8
___
Python tracker
<https://bugs.python.org/issu
Change by SilentGhost :
--
keywords: -3.8regression
versions: -Python 3.8
___
Python tracker
<https://bugs.python.org/issue37653>
___
___
Python-bugs-list m
301 - 400 of 1410 matches
Mail list logo