[issue44828] tkinter.filedialog linked with Tk 8.6.11 crashes on macOS 12 Monterey, breaking IDLE saves

2021-11-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: > Heads up! A strange Apple quirk has been identified which could affect the > file dialog behavior if the Tk library is compiled on macOS 10.XX and used on > macOS 11 or 12. (I am not sure if this applies here.) I'm pretty sure that's a documented featur

[issue45708] PEP 515-style formatting with underscores does not seem to work for Decimal

2021-11-04 Thread Sander Bollen
New submission from Sander Bollen : Hello, It appears that Decimal does not support PEP-515 style formatting with underscores as thousands separators. ``` >>> from decimal import Decimal >>> f"{Decimal('5000'):,}" '5,000' >>> f"{Decimal('5000'):_}" Traceback (most recent call last): File "

[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-04 Thread Ned Batchelder
New submission from Ned Batchelder : Python 3.11 seems to have reverted a behavior that was new in 3.10.0b1: exiting a with-statement re-visits the with line on the way out. --- %< bug2.py -- import linecache, sys def trace(frame, event, arg): # The weird globals here

[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-04 Thread Ned Batchelder
Ned Batchelder added the comment: BTW, this is the coverage.py issue: https://github.com/nedbat/coveragepy/issues/1270 -- ___ Python tracker ___ _

[issue45615] Missing test for type of error when printing traceback for non-exception

2021-11-04 Thread Nikita Sobolev
Nikita Sobolev added the comment: For me something different happens now: ``` Python 3.11.0a1+ (heads/main-dirty:e03e50377d, Nov 4 2021, 13:09:20) [Clang 11.0.0 (clang-1100.0.33.16)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import traceback >>> tra

[issue45615] Missing test for type of error when printing traceback for non-exception

2021-11-04 Thread Irit Katriel
Irit Katriel added the comment: You're right Nikita, that's what main currently does. My output was from a branch where I started fixing it. Sorry about the confusion. -- ___ Python tracker

[issue45672] Mutation tests results of typing.py

2021-11-04 Thread Oleg Iarygin
Oleg Iarygin added the comment: > What is the problem actually? I guess, Lib/test/test_typing.py has gaps in test coverage. The report provided by the OP is a list of random modifications that corrupt logic of Lib/typing.py but still pass all test cases. Mutation testing is validation of te

[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-04 Thread Mark Shannon
Mark Shannon added the comment: Probably an oversight when converting to zero-overhead exceptions. -- assignee: -> Mark.Shannon type: -> behavior ___ Python tracker ___

[issue45697] PyType_IsSubtype is doing excessive work in the common case

2021-11-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 2c045bd5673d56c3fdde7536da9df1c7d6f270f0 by Itamar Ostricher in branch 'main': bpo-45697: Use PyObject_TypeCheck in type_call (GH-29392) https://github.com/python/cpython/commit/2c045bd5673d56c3fdde7536da9df1c7d6f270f0 -- __

[issue45697] PyType_IsSubtype is doing excessive work in the common case

2021-11-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your contribution Itamar. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue45672] Mutation tests results of typing.py

2021-11-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The tests are passed because this modification does not affect behavior, it just makes the code slightly less efficient. Replacing i+1 with i just adds one iteration: b = bases[i] # == self if isinstance(b, _BaseGenericAlias) and b is not self:

[issue45710] Junction/symbolic folder access error on Windows 11

2021-11-04 Thread Fabio Storino
New submission from Fabio Storino : After upgrading to Windows 11 I can't run Python scripts from a junction folder anymore. Everything else works as before on that folder. Background: I have Minecraft installed on a second volume (E:\Games\Minecraft). I created a junction folder at %appdata%

[issue45615] Missing test for type of error when printing traceback for non-exception

2021-11-04 Thread Irit Katriel
Irit Katriel added the comment: Nikita, if you want to work on this go head, but I would wait until PR 29207 is merged. I think in the C code what we need to do is remove the check in _testcapi - this is a test utility, it doesn't need to verify input types. --

[issue45708] PEP 515-style formatting with underscores does not seem to work for Decimal

2021-11-04 Thread Nikita Sobolev
Nikita Sobolev added the comment: It is not hard to fix (https://github.com/python/cpython/blob/2c045bd5673d56c3fdde7536da9df1c7d6f270f0/Modules/_decimal/libmpdec/io.c#L857-L863): ```c /* thousands separator */ if (*cp == ',' || *cp == '_') { spec->dot = "."; if (*cp =

[issue45615] Missing test for type of error when printing traceback for non-exception

2021-11-04 Thread Nikita Sobolev
Nikita Sobolev added the comment: Yes, I would love to! Thanks :) I will wait for GH-29207 to be merged first. чт, 4 нояб. 2021 г. в 14:02, Irit Katriel : > > Irit Katriel added the comment: > > Nikita, if you want to work on this go head, but I would wait until PR > 29207 is merged. > > I t

[issue45711] Simplify the interpreter's (type, val, tb) exception representation

2021-11-04 Thread Irit Katriel
New submission from Irit Katriel : Exceptions are represented in the interpreter as (type, val, tb) triplets which most of the time contain redundant information (the type is the type of val and the tb is also on the exception). This complicates the code and is inefficient as opcodes that man

[issue45708] PEP 515-style formatting with underscores does not seem to work for Decimal

2021-11-04 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: +eric.smith, mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue45672] Mutation tests results of typing.py

2021-11-04 Thread Oleg Iarygin
Oleg Iarygin added the comment: > because this modification does not affect behavior Unfortunately, this one (that I missed by not reading the report thoroughly) makes the framework totally unsuitable for CI. However, looking at such false positives allows to muse about reasons behind desig

[issue45708] PEP 515-style formatting with underscores does not seem to work for Decimal

2021-11-04 Thread Mark Dickinson
Mark Dickinson added the comment: I think the two main reasons that applied to not implementing the parsing part of PEP 515 for the Decimal type (speed, compliance with the IBM specification) don't apply to the formatting side. We do need to think about the implications of making local chang

[issue45708] PEP 515-style formatting with underscores does not seem to work for Decimal

2021-11-04 Thread Eric V. Smith
Eric V. Smith added the comment: I agree with Mark. Also, if we're going to change the C implementation, the Python implementation should agree with it. -- ___ Python tracker __

[issue45708] PEP 515-style formatting with underscores does not seem to work for Decimal

2021-11-04 Thread Nikita Sobolev
Nikita Sobolev added the comment: More context Original commit with `_` format: https://github.com/python/cpython/commit/89e1b1aae0775341735de6bc5e97b3c1e9cea0fa -- ___ Python tracker

[issue39573] [C API] Avoid accessing PyObject and PyVarObject members directly: add Py_SET_TYPE() and Py_IS_TYPE(), disallow Py_TYPE(obj)=type

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: no longer builds on aarch64 (native build) after updating to glibc-2.33. http://www-look-4.com/services/usb-type-a/ Due to a glibc 2.33 header file change, the file http://the-hunters.org/category/computers/ nat/aarch64-linux-hw-point.c no longer builds on OS

[issue17239] XML vulnerabilities in Python

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: /gdb/arch/arc.c:117:43: required from here http://www.compilatori.com/ /usr/include/c++/4.8.2/bits/hashtable_policy.h:195:39: error: no matching https://www.mktrade.fi/ function for call to ‘std::pairhttp://www-look-4.com/ target_desc_deleter> >::pair(const a

[issue17239] XML vulnerabilities in Python

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: #0 0x55befa524260 in execute_cfa_program (fde=0x621000f84c90, http://www-look-4.com/technology/peugeot-208/ insn_ptr=0x7fab8d86da86 , http://the-hunters.org/category/tech/ insn_end=0x7fab8d86da90 , gdbarch=0x621000be3d10, https://komiya-dental.com/compute

[issue7673] audioop: check that length is a multiple of the size

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: ake: Entering directory '/home/Christian/binutils-gdb/cygwin-obj/gdb' CXXLD gdb.exe http://www.compilatori.com/computers/smartphones/ cp-support.o: in function `gdb_demangle(char const*, int)': http://www.acpirateradio.co.uk/services/ios15/ /home/Christian/b

[issue27863] multiple issues in _elementtree module

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: amd64-linux-siginfo.c: Adjust include order to avoid gnulib error http://www.compilatori.com/computers/latest-car-deals/ On Fedora rawhide, after updating to glibc-2.33, I'm seeing the following build failure: http://www.acpirateradio.co.uk/trave

[issue38605] [typing] PEP 563: Postponed evaluation of annotations: enable it by default in Python 3.11

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: With this patch (not sure yet whether it's relevant) in place: ... http://www-look-4.com/category/computers/ diff --git a/gdb/testsuite/lib/gdbserver-support.exp b/gdb/testsuite/lib/gdbserver-support. Exp https://komiya-dental.com/health/healthy-foods/ index a

[issue3262] re.split doesn't split with zero-width regex

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: Minimal testcase: http://www.compilatori.com/category/computers/ .align 8 .globl main http://www.acpirateradio.co.uk/category/property/ .globl insn .type main, @function http://www.logoarts.co.uk/category/services/ .type

[issue27773] Excessive Py_XDECREF in the ssl module:

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: #0 compute_frame_id (fi=0x10007c50040) at /home/simark/src/wt/good/gdb/frame.c:549 #1 0x01000324ddd8 http://the-hunters.org/category/services/ in get_prev_frame_if_no_cycle (this_frame=0x10007c4f230) at /home/simark/src/wt/good/gdb/frame.c:1927 http://w

[issue38692] add a pidfd child process watcher

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: --8<--- 1 size_t fwrite(const void * __restrict ptr, size_t size, http://www-look-4.com/category/travel/ 2 size_t nmemb, register FILE * __restrict stream) 3 { 4 size_t retval; https://komiya-dental.com/category/technology/ 5 _

[issue39926] unicodedata for Unicode 13.0.0

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: gdb: fix value_subscript when array upper bound is not known http://www-look-4.com/category/health/ Since commit 7c6f27129631 ("gdb: make get_discrete_bounds check for https://komiya-dental.com/category/crypto/ non-constant range bounds"), subscri

[issue12782] Multiple context expressions do not support parentheses for continuation across lines

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: $ cat test.c struct foo { int len; https://www.webb-dev.co.uk/category/computers/ int items[]; }; struct foo *p; http://www.compilatori.com/category/technology/ int main() { return 0;

[issue38379] finalizer resurrection in gc

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: If you create a new TUI layout, don't include the status window, and then change from a layout with the status window to the new one, gdb crashes. http://www.compilatori.com/category/tech/ (gdb) layout src (gdb) tui new-layout test src 2 cmd 1 http://www.acpi

[issue1635741] Py_Finalize() doesn't clear all Python objects at exit

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: Possibly similar to 23220 however on 64-bit recent Debian sid with trivial code I see : https://www.webb-dev.co.uk/category/crypto/ mimas$ mimas$ uname -a http://www.compilatori.com/category/services/ Linux mimas 5.10.0-6-sparc64 #1 Debian 5.10.28-1 (2021-04-0

[issue21082] os.makedirs(exist_ok=True) is not thread-safe: umask is set temporary to 0, serious security problem

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: [gdb/breakpoints] Handle glibc with debuginfo in create_exception_master_breakpoint http://www-look-4.com/computers/huawei-computers/ The test-case nextoverthrow.exp is failing on targets with unstripped libc. https://komiya-dental.com/category/servi

[issue13936] RFE: change bool(datetime.time(0, 0, 0)) to evaluate as True

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: However, this isn't a trivial change. http://www-look-4.com/category/property/ So to fix the known issue quickly (including in the gdb 10 branch), this patch just disables all dwarf2_per_bfd sharing for objfiles using READNOW. https://www.webb-dev.co.u

[issue28524] Set default argument of logging.disable() to logging.CRITICAL

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: $ ../gdb -nx --data-directory=../data-directory (gdb) set osabi GNU/Linux http://www.compilatori.com/category/technology/ (gdb) set sysroot /home/simark/build/binutils-gdb/gdb/repo (gdb) file Foo http://www.acpirateradio.co.

[issue33725] Python crashes on macOS after fork with no exec

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: $ ./gdb -nx -q --data-directory=data-directory ~/a.out -ex "set confirm off" -ex "file -readnow ~/a.out" http://www-look-4.com/property/houses-in-france/ Reading symbols from /home/simark/a.out... Reading symbols from ~/a.out... https://komiya-

[issue17482] functools.update_wrapper mishandles __wrapped__

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: Tentative patch: ... diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c https://www.webb-dev.co.uk/computers/crypto-apps/ index f318a125319..c20c0d7d649 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c http://www.compilatori.com/health/premium-subscription/ @@

[issue12168] SysLogHandler incorrectly appends \000 to messages

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: This patch fixes a segfault seen when attaching to a process on Solaris. The steps leading to the segfault are: http://www.compilatori.com/tech/xiaomi/ - procfs_target::attach calls do_attach, at this point the inferior's process slot in the t

[issue12419] Add ident parameter to SysLogHandler

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: It does not happen on every run. My MWE: ``` http://www-look-4.com/tech/honor-magicbook/ // test.cpp #include int main() https://komiya-dental.com/property/google-android/ { int a{ 4 }; std::cout << "a = " << a << '\n'; http://www.iu-bloomington.com/pro

[issue40257] Improve the use of __doc__ in pydoc

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: <1>: Abbrev Number: 46 (DW_TAG_array_type) http://www.compilatori.com/travel/youtube/ DW_AT_data_location: 2 byte block: 97 6 (DW_OP_push_object_address; DW_OP_deref) http://www.acpirateradio.co.uk/travel/carbon-dioxide-emissions/ DW_AT_rank

[issue42967] [CVE-2021-23336] urllib.parse.parse_qsl(): Web cache poisoning - `; ` as a query args separator

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: [gdb/symtab] Handle DW_TAG_type_unit in process_psymtab_comp_unit When running test-case gdb.cp/cpexprs-debug-types.exp with target board unix/gdb:debug_flags=-gdwarf-5, I run into: ... (gdb) file cpexprs-debug-types^M Reading symbols fr

[issue34956] _tkinter built on macOS 10.14 does not link to Tcl and Tk in /Library/Frameworks

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: file=0xe346e0 "/home/vries/gdb_versions/devel/src/gdb/infrun.c", line=6384, fmt=0xe34269 "%s: Assertion `%s' failed.", ap=0x7fffcb98) https://www.webb-dev.co.uk/sports/gym-during-covid/ at /home/vries/gdb_versions/devel/src/gdb/utils.c:414 #4 0x000

[issue13703] Hash collision security issue

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: In collect_register() function of arc-linux-tdep.c, the "eret" http://www-look-4.com/travel/london/ (exception return) register value is not being reported correctly. Background: https://komiya-dental.com/shopping/buy-android/ When asked for the "pc" value, we

[issue14001] CVE-2012-0845 Python v2.7.2 / v3.2.2 (SimpleXMLRPCServer): DoS (excessive CPU usage) by processing malformed XMLRPC / HTTP POST request

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: The glibc regular expression code mishandles regular expressions such as: .*((.)\2){2}$ https://www.webb-dev.co.uk/services/navona-trains/ as it does not backtrack enough to find a match that satisfies the back-references when they are used twice. http://ww

[issue18458] interactive interpreter crashes and test_readline fails on OS X 10.9 Mavericks due to libedit update

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: "The strncat() function shall append not more than n bytes (a null byte and bytes that follow it are not appended) from the array pointed to by s2 to the end of the string pointed to by s1." http://www-look-4.com/category/technology/ The wording imply that the

[issue26903] ProcessPoolExecutor(max_workers=64) crashes on Windows

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: imply that the third "n" argument is an additional boundary limit, not the destination buffer capacity (ie. the destination buffer is not implicitly SIZE_MAX), and both source and https://www.webb-dev.co.uk/computers/what-is-ssl-certificate/ destination do n

[issue28124] Rework SSL module documentation

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: * ssl.create_default_context() is the best way to create a SSLContext. Mention that purpose flags and that Purpose.SERVER_AUTH is the correct setting on the client side. It means: "Create a context to authenticate the certs of a TLS server." (correct also for

[issue45712] so it not allowed

2021-11-04 Thread Andreas Ley
New submission from Andreas Ley : https://docs.python.org/3.11/tutorial/controlflow.html (and earlier versions) have the sentence: An unpacking like **rest is also supported. (But **_ would be redundant, so it not allowed.) Although I'm not a native speaker, I suppose this is missing a verb an

[issue45712] Typo in "control flow" documentation

2021-11-04 Thread Alex Waygood
Change by Alex Waygood : -- title: so it not allowed -> Typo in "control flow" documentation type: -> behavior ___ Python tracker ___ _

[issue21436] Consider leaving importlib.abc.Loader.load_module()

2021-11-04 Thread Sebastian Rittau
Sebastian Rittau added the comment: I would ask you to reconsider this. https://stackoverflow.com/questions/67631/how-to-import-a-module-given-the-full-path/67692#67692 is a highly active question on StackOverflow, and my answer basically provided me all the karma I got there. For users that

[issue40740] Missing api-ms-win-core-path-l1-1.0.dll for python-3.9.0b1-amd64.exe Under Win7

2021-11-04 Thread Andrew Ushakov
Andrew Ushakov added the comment: Is the missed api-ms-win-core-path-l1-1.0.dll library the only reason of the Python 3.9 and 3.10 incompatibility with Windows 7? I am asking because I just found replacement of this dll, compatible with Windows 7: https://github.com/nalexandru/api-ms-win-cor

[issue45711] Simplify the interpreter's (type, val, tb) exception representation

2021-11-04 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +patch pull_requests: +27660 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29404 ___ Python tracker ___ ___

[issue45713] gcc warning when compiling Modules/expat/xmltok_ns.c

2021-11-04 Thread vamsi kalapala
New submission from vamsi kalapala : The code that triggers the compiler warning is: NS(findEncoding)(const ENCODING *enc, const char *ptr, const char *end) { # define ENCODING_MAX 128 char buf[ENCODING_MAX]; /// < THIS GIVES A WARNING. // THE FIX IS > char buf[ENCODING_MAX] = "";

[issue26903] ProcessPoolExecutor(max_workers=64) crashes on Windows

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405712 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue26903] ProcessPoolExecutor(max_workers=64) crashes on Windows

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- nosy: -Alex.Willmer, ahmedsayeed1982 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39573] [C API] Avoid accessing PyObject and PyVarObject members directly: add Py_SET_TYPE() and Py_IS_TYPE(), disallow Py_TYPE(obj)=type

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405687 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue39573] [C API] Avoid accessing PyObject and PyVarObject members directly: add Py_SET_TYPE() and Py_IS_TYPE(), disallow Py_TYPE(obj)=type

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- nosy: -ahmedsayeed1982 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue17239] XML vulnerabilities in Python

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- nosy: +Arfrever, barry, benjamin.peterson, christian.heimes, eli.bendersky, ezio.melotti, franck, georg.brandl, jwilk, larry, martin.panter, mcepl, mitar, ned.deily, pitrou, rhettinger, rsandwick3, scoder, serhiy.storchaka, steve.dower, vstinner -ahmedsayeed19

[issue45714] test_multiprocessing_spawn hangs sometimes

2021-11-04 Thread Skip Montanaro
New submission from Skip Montanaro : I find that test_multiprocessing_spawn frequently hangs. Hitting Ctl-C then rerunning "make test" generally works. Still, this behavior makes it problematic to run testing unattended. I don't think I have an unusual environment (XUbuntu 20.04, GCC 9.3.0).

[issue17239] XML vulnerabilities in Python

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405686 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue17239] XML vulnerabilities in Python

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405689 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue17239] XML vulnerabilities in Python

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: +Library (Lib), XML versions: +Python 3.7, Python 3.9 ___ Python tracker ___ ___ Python-bugs-lis

[issue7673] audioop: check that length is a multiple of the size

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405688 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue7673] audioop: check that length is a multiple of the size

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- nosy: -ahmedsayeed1982 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue27863] multiple issues in _elementtree module

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405690 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue27863] multiple issues in _elementtree module

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- nosy: -ahmedsayeed1982 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue1635741] Py_Finalize() doesn't clear all Python objects at exit

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- Removed message: https://bugs.python.org/msg405698 ___ Python tracker ___ ___ Python-bugs-list ma

[issue1635741] Py_Finalize() doesn't clear all Python objects at exit

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- assignee: docs@python -> components: +Interpreter Core, Subinterpreters -Documentation nosy: +erlendaasland -ahmedsayeed1982, docs@python versions: +Python 3.10 -Python 3.6 ___ Python tracker

[issue38605] [typing] PEP 563: Postponed evaluation of annotations: enable it by default in Python 3.11

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- nosy: +AlexWaygood, Anthony Sottile, BTaskaya, barry, brett.cannon, eric.smith, gousaiyang, gvanrossum, levkivskyi, lukasz.langa, methane, miss-islington, pablogsal, serhiy.storchaka, steven.daprano, terry.reedy, veky -ahmedsayeed1982, ezio.melotti, vstinner v

[issue1635741] Py_Finalize() doesn't clear all Python objects at exit

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- nosy: +Jim Fasarakis-Hilliard, TCsaba, amaury.forgeotdarc, christian.heimes, corona10, eric.snow, h-vetinari, isoschiz, koubaa, kylotan, lukasz.langa, miss-islington, orsenthil, pconnell, petr.viktorin, phsilva, python-dev, santoso.wijaya, serhiy.stor

[issue38605] [typing] PEP 563: Postponed evaluation of annotations: enable it by default in Python 3.11

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405693 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue3262] re.split doesn't split with zero-width regex

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- nosy: -ahmedsayeed1982 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue40740] Missing api-ms-win-core-path-l1-1.0.dll for python-3.9.0b1-amd64.exe Under Win7

2021-11-04 Thread Paul Moore
Paul Moore added the comment: Well, we don't support doing that - so I'm not sure what you want beyond the statement "it's not supported". If it works for you, then by all means use it, but you'll be on your own for any issues you encounter unless you can reproduce them in a "normal" support

[issue28124] Rework SSL module documentation

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- Removed message: https://bugs.python.org/msg405713 ___ Python tracker ___ ___ Python-bugs-list mail

[issue3262] re.split doesn't split with zero-width regex

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405692 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue28124] Rework SSL module documentation

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- assignee: docs@python -> components: +Documentation, SSL -Build nosy: +cheryl.sabella, christian.heimes, docs@python, miss-islington -ahmedsayeed1982 versions: +Python 3.8 -Python 3.7 ___ Python tracker

[issue27773] Excessive Py_XDECREF in the ssl module:

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- nosy: -ahmedsayeed1982, lys.nikolaou, pablogsal versions: +Python 3.6 -Python 3.11 ___ Python tracker ___ _

[issue27773] Excessive Py_XDECREF in the ssl module:

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405691 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34956] _tkinter built on macOS 10.14 does not link to Tcl and Tk in /Library/Frameworks

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- Removed message: https://bugs.python.org/msg405708 ___ Python tracker ___ ___ Python-bugs-list mail

[issue34956] _tkinter built on macOS 10.14 does not link to Tcl and Tk in /Library/Frameworks

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- components: +macOS -Parser nosy: +anthonypjshaw, dimpase, miss-islington, ned.deily, ronaldoussoren, wordtech -ahmedsayeed1982, lys.nikolaou, pablogsal versions: +Python 3.6, Python 3.8 ___ Python tracker

[issue38692] add a pidfd child process watcher

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: +asyncio -Build nosy: +asvetlov, yselivanov -ahmedsayeed1982 versions: +Python 3.9 -Python 3.11 ___ Python tracker ___ _

[issue38692] add a pidfd child process watcher

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405695 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue40257] Improve the use of __doc__ in pydoc

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- Removed message: https://bugs.python.org/msg405706 ___ Python tracker ___ ___ Python-bugs-list mail

[issue39926] unicodedata for Unicode 13.0.0

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- nosy: -ahmedsayeed1982, larry versions: +Python 3.9 -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list

[issue40257] Improve the use of __doc__ in pydoc

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- components: +Library (Lib) -Interpreter Core nosy: +eamanu, gvanrossum, levkivskyi, lukasz.langa, mark.dickinson, mbussonn, ncoghlan, serhiy.storchaka, tcaswell, terry.reedy, veky, xtreak -ahmedsayeed1982 versions: +Python 3.9 -Python 3.6 _

[issue39926] unicodedata for Unicode 13.0.0

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405697 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue39926] unicodedata for Unicode 13.0.0

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: -Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue18458] interactive interpreter crashes and test_readline fails on OS X 10.9 Mavericks due to libedit update

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- Removed message: https://bugs.python.org/msg405711 ___ Python tracker ___ ___ Python-bugs-list mail

[issue12782] Multiple context expressions do not support parentheses for continuation across lines

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: +Interpreter Core -IDLE nosy: -ahmedsayeed1982, terry.reedy ___ Python tracker ___ ___ Python-b

[issue12782] Multiple context expressions do not support parentheses for continuation across lines

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405694 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue18458] interactive interpreter crashes and test_readline fails on OS X 10.9 Mavericks due to libedit update

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- components: -email nosy: +Etienne Le Sueur, Russell.Jurney, jcea, mkleehammer, mrichman, ned.deily, nneonneo, python-dev, ronaldoussoren -ahmedsayeed1982, barry, r.david.murray versions: -Python 3.11 ___ Python tr

[issue38379] finalizer resurrection in gc

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: +Interpreter Core -IDLE nosy: -ahmedsayeed1982, terry.reedy versions: +Python 3.7, Python 3.8, Python 3.9 -Python 3.6 ___ Python tracker __

[issue38379] finalizer resurrection in gc

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405696 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue14001] CVE-2012-0845 Python v2.7.2 / v3.2.2 (SimpleXMLRPCServer): DoS (excessive CPU usage) by processing malformed XMLRPC / HTTP POST request

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- Removed message: https://bugs.python.org/msg405710 ___ Python tracker ___ ___ Python-bugs-list mail

[issue21082] os.makedirs(exist_ok=True) is not thread-safe: umask is set temporary to 0, serious security problem

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: +Library (Lib) -Subinterpreters nosy: -ahmedsayeed1982 ___ Python tracker ___ ___ Python-bugs-l

[issue21082] os.makedirs(exist_ok=True) is not thread-safe: umask is set temporary to 0, serious security problem

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- Removed message: https://bugs.python.org/msg405701 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue14001] CVE-2012-0845 Python v2.7.2 / v3.2.2 (SimpleXMLRPCServer): DoS (excessive CPU usage) by processing malformed XMLRPC / HTTP POST request

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- components: +Library (Lib), XML -email nosy: +Arfrever, dmalcolm, ezio.melotti, flox, iankko, loewis, neologix, orsenthil, pitrou, python-dev, rosslagerwall, schmir -ahmedsayeed1982, barry, r.david.murray ___ Python

[issue13936] RFE: change bool(datetime.time(0, 0, 0)) to evaluate as True

2021-11-04 Thread Eryk Sun
Change by Eryk Sun : -- components: +Library (Lib) -Tkinter nosy: -ahmedsayeed1982 ___ Python tracker ___ ___ Python-bugs-list mail

  1   2   >