[issue33336] [imaplib] MOVE is a legal command

2018-07-21 Thread Matej Cepl
Change by Matej Cepl : -- pull_requests: +7906 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33187] Document ElementInclude (XInclude) support in ElementTree

2018-07-21 Thread Anjali Bansal
Anjali Bansal added the comment: I would work on it. please guide me how to proceed? Thanks Anjali -- nosy: +Anjali Bansal ___ Python tracker ___

[issue28009] core logic of uuid.getnode() is broken for AIX - all versions

2018-07-21 Thread Michael Felt
Michael Felt added the comment: OK. as promised when I closed PR 5183 - a restart. You may skip the wall that follows - it is just documentation. The key points: * AIX ifconfig and arp do not supply maccaddr * netstat supplies a macaddr, but uses '.' not ':' as a delimiter ** also, AIX

[issue34166] Tools/msgfmt.py emits a DeprecationWarning under Python 3.7

2018-07-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 25326dea8b907fdd2bf087baab3c31b617438f2e by Serhiy Storchaka (Xtreak) in branch '3.7': [3.7] bpo-34166: Fix warnings in Tools/msgfmt.py. (GH-8367) (GH-8369) https://github.com/python/cpython/commit/25326dea8b907fdd2bf087baab3c31b617438f2e

[issue34166] Tools/msgfmt.py emits a DeprecationWarning under Python 3.7

2018-07-21 Thread miss-islington
miss-islington added the comment: New changeset 916bcc6fde2db95199454b22f608648467fbbc54 by Miss Islington (bot) in branch '3.6': bpo-34166: Fix warnings in Tools/msgfmt.py. (GH-8367) https://github.com/python/cpython/commit/916bcc6fde2db95199454b22f608648467fbbc54 -- nosy:

[issue34177] test_site fails in macOS-PR VSTS builds for 3.7 branch

2018-07-21 Thread Karthikeyan Singaravelan
New submission from Karthikeyan Singaravelan : Mac OS builds fail due to test_site in VSTS for 3.7 branches only Ref : https://python.visualstudio.com/cpython/_build/results?buildId=17921=logs 2018-07-21T07:01:08.5912930Z Traceback (most recent call last): 2018-07-21T07:01:08.5927520Z File

[issue16817] test___all__ affects other tests by doing too much importing

2018-07-21 Thread Matej Cepl
Matej Cepl added the comment: > This is superceded by: > > http://bugs.python.org/issue18906 Then it should be closed, right? -- nosy: +mcepl ___ Python tracker ___

[issue34177] test_site fails in macOS-PR VSTS builds for 3.7 branch

2018-07-21 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: It seems that the last successful build in 3.7 was for https://github.com/python/cpython/commit/339e0c1296c61c9dbc1f8f880c5c668bf4007e5e and all PRs after it had the same failure. Sorry for not adding the relevant components during ticket

[issue34158] Documentation of datetime '%z' format code is odd

2018-07-21 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Added as part of 018d353c1c8c87767d2335cd884017c2ce12e045 and a fix regarding duplicate words for that part was added at bac2d5ba30339298db7d4caa9c8cd31d807cf081. Relevant format string at

[issue33336] [imaplib] MOVE is a legal command

2018-07-21 Thread Matej Cepl
Change by Matej Cepl : -- pull_requests: +7904 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34178] test_tcl fails on the 3.7 branch

2018-07-21 Thread Matthias Klose
New submission from Matthias Klose : test_tcl fails at least on the 3.7 branch with: == FAIL: test_join (test.test_tcl.TclTest) -- Traceback (most recent call

[issue34178] test_tcl fails on the 3.7 branch

2018-07-21 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- components: +Tests nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue25094] [EASY][Windows] test_tools fails on Windows when passing

2018-07-21 Thread Lorenz Mende
Lorenz Mende added the comment: Approving the behaviour on 3.6.5 and fresh cpython-built @master: >From the docs: test_sundry "contains extremely basic regression tests... which >don't have separate tests of their own". IMHO 2to3 can be added to the whitelist of test_sundry as it comes with

[issue34136] Del on class __annotations__ regressed, failing test

2018-07-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: In the edition of PR 8364 the test is failed on 3.6. def test_do_not_recreate_annotations(self): annotations = {} # Don't rely on the existence of the '__annotations__' global. with support.swap_item(globals(), '__annotations__',

[issue25943] Integer overflow in _bsddb leads to heap corruption

2018-07-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 32522050773c257a5c3c0c8929ba5c64123b53ed by Serhiy Storchaka (Zackery Spytz) in branch '2.7': bpo-25943: Fix potential heap corruption in bsddb's _db_associateCallback() (GH-8337)

[issue34126] Profiling certain invalid calls crashes Python

2018-07-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 56868f940e0cc0b35d33c0070107ff3bed2d8766 by Serhiy Storchaka (jdemeyer) in branch 'master': bpo-34126: Fix crashes while profiling invalid calls. (GH-8300) https://github.com/python/cpython/commit/56868f940e0cc0b35d33c0070107ff3bed2d8766

[issue34126] Profiling certain invalid calls crashes Python

2018-07-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +7905 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34172] multiprocessing.Pool and ThreadPool leak resources after being deleted

2018-07-21 Thread tzickel
tzickel added the comment: >>> from multiprocessing import Pool >>> import gc >>> a = Pool(10) >>> del a >>> gc.collect() 0 >>> After this, there are still left behind Process (Pool) or Dummy (ThreadPool) and big _cache data (If you did something with it) which lingers till the process

[issue34178] test_tcl fails on the 3.7 branch

2018-07-21 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Can you please add information about your OS and how you are running the tests? It passes in Travis for 3.7 branch for my last PR. Tests were added as part of https://bugs.python.org/issue33974 . Ref :

[issue34178] test_tcl fails on the 3.7 branch

2018-07-21 Thread Matthias Klose
Matthias Klose added the comment: seen on Linux x86_64, using Tcl 8.6.8, running the tests in the installed location. -- ___ Python tracker ___

[issue34127] Gramatically incorrect error message for some calls with wrong number of arguments

2018-07-21 Thread ANJALI BANSAL
ANJALI BANSAL added the comment: Is this still active? I want to fix the patch. -- nosy: +ANJALI BANSAL ___ Python tracker ___ ___

[issue34169] itertools.repeat does not accept None as an explicit count

2018-07-21 Thread Clint Hepner
Clint Hepner added the comment: This came up in response to https://stackoverflow.com/q/51443795/1126841. I realize the current documentation is informative, not normative, but I think there is a legitimate reason to allow an explicit None argument like the pure Python suggests. Currently,

[issue34181] Lib/test/test_typing.py failed when ran as a script

2018-07-21 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python Lib/test/test_typing.py ... == FAIL: test_repr (__main__.GenericTests) -- Traceback (most recent call last):

[issue34182] Lib/test/test_pydoc.py failed when ran as a script

2018-07-21 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python Lib/test/test_pydoc.py ... == ERROR: test_mixed_case_module_names_are_lower_cased (__main__.PydocDocTest) --

[issue34183] Lib/test/test_contextlib_async.py failed when run as a script

2018-07-21 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python Lib/test/test_contextlib_async.py Lib/test/test_contextlib_async.py:7: ImportWarning: can't resolve package from __spec__ or __package__, falling back on __name__ and __path__ from .test_contextlib import TestBaseExitStack Traceback (most

[issue34183] Lib/test/test_contextlib_async.py failed when run as a script

2018-07-21 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +7911 stage: -> patch review ___ Python tracker ___ ___

[issue34175] typing.NamedTuple: type-checking error when "index" used as member

2018-07-21 Thread Keith Campbell
Keith Campbell added the comment: > It's up to the OP to file an issue there though Will do; thanks! -- ___ Python tracker ___

[issue34181] Lib/test/test_typing.py failed when ran as a script

2018-07-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +7915 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34181] Lib/test/test_typing.py failed when ran as a script

2018-07-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 961360923e7997a04833652623ea549b0dc02262 by Serhiy Storchaka in branch 'master': bpo-34181: Fix running Lib/test/test_typing.py as a script. (GH-8380) https://github.com/python/cpython/commit/961360923e7997a04833652623ea549b0dc02262

[issue33336] [imaplib] MOVE is a legal command

2018-07-21 Thread Matej Cepl
Change by Matej Cepl : -- pull_requests: +7916 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34157] NamedTemporaryFile can leave temporary files behind

2018-07-21 Thread Giampaolo Rodola'
Change by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34180] bool(Q) always return True for a priority queue Q

2018-07-21 Thread Victor Porton
New submission from Victor Porton : It seems that bool(Q) always return True for a priority queue Q. It should behave the same way as for bool(L) where L is a list, that is return False on an empty queue. Please check also other objects in https://docs.python.org/3/library/queue.html After

[issue34180] bool(Q) always return True for a priority queue Q

2018-07-21 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Relevant SO answer : https://stackoverflow.com/a/41861322/2610955 Ref : https://docs.python.org/3/reference/datamodel.html#object.__bool__ > If a class defines neither __len__() nor __bool__(), all its instances are > considered true. I don't know

[issue34136] Del on class __annotations__ regressed, failing test

2018-07-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Shouldn't it be deleted in 3.7+ too? The behavior tested after PR 8364 (falling back to the global __annotations__) looks to me even more questionable than NameError. -- ___ Python tracker

[issue34179] test_statistics fails after test_time

2018-07-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +7914 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33187] Document ElementInclude (XInclude) support in ElementTree

2018-07-21 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Please read the devguide on how to get started contributing: https://devguide.python.org. You'll also need to sign the CLA: https://devguide.python.org/pullrequest/?highlight=Cla#licensing -- nosy: +Mariatta ___

[issue34179] test_statistics fails after test_time

2018-07-21 Thread bbayles
Change by bbayles : -- keywords: +patch pull_requests: +7907 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue34184] Lib/test/test_dataclasses.py failed when ran as a script

2018-07-21 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python Lib/test/test_dataclasses.py ... == ERROR: test_classvar_module_level_import (__main__.TestStringAnnotations)

[issue34183] Lib/test/test_contextlib_async.py failed when ran as a script

2018-07-21 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- title: Lib/test/test_contextlib_async.py failed when run as a script -> Lib/test/test_contextlib_async.py failed when ran as a script ___ Python tracker

[issue34184] Lib/test/test_dataclasses.py failed when ran as a script

2018-07-21 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +7912 stage: -> patch review ___ Python tracker ___ ___

[issue34136] Del on class __annotations__ regressed, failing test

2018-07-21 Thread Guido van Rossum
Guido van Rossum added the comment: I wouldn’t object. Of course my opinion no longer matters that much. On Sat, Jul 21, 2018 at 9:33 AM Serhiy Storchaka wrote: > > Serhiy Storchaka added the comment: > > Shouldn't it be deleted in 3.7+ too? The behavior tested after PR 8364 > (falling back

[issue34179] test_statistics fails after test_time

2018-07-21 Thread Stefan Krah
Stefan Krah added the comment: Ok, looks fixed to me. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34158] Documentation of datetime '%z' format code is odd

2018-07-21 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +7908 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34179] test_statistics fails after test_time

2018-07-21 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- versions: +Python 3.6, Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-21 Thread Noah Haasis
Change by Noah Haasis : -- keywords: +patch pull_requests: +7909 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue34173] [3.7] possible race condition in /usr/lib/python3.7/concurrent/futures/thread.py

2018-07-21 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I looked into the code of test_execute_multiple_tasks and designate/worker/processing.py from which the executor was initialized. I have converted the test case code removing the project related code as a standalone script. I hope the attached

[issue34178] test_tcl fails on the 3.7 branch

2018-07-21 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks by install do you mean running the test with an installed version of python 3.7.0 from package manager or as a downloaded binary ? I can reproduce it with an installed version from anaconda but the binary compiled on the latest 3.7 branch

[issue34115] code.InteractiveConsole.interact() closes stdin

2018-07-21 Thread Yonatan Zunger
Yonatan Zunger added the comment: Definitely agree about the difference. I'd say that either SystemExit or EOFError would be a reasonable thing for the interactive session to do, but the combination of closing stdin and SystemExit is really weird. Honestly, I would have just expected

[issue34172] multiprocessing.Pool and ThreadPool leak resources after being deleted

2018-07-21 Thread Windson Yang
Windson Yang added the comment: A patch would just add def __del__(self): self.terminate() in the Pool object. -- ___ Python tracker ___

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-21 Thread Noah Haasis
Noah Haasis added the comment: This is a list of all valid keywordarguments of Listbox.__init__() listed in the test file: 'activestyle', 'background', 'borderwidth', 'cursor', 'disabledforeground', 'exportselection', 'font', 'foreground', 'height', 'highlightbackground', 'highlightcolor',

[issue34136] Del on class __annotations__ regressed, failing test

2018-07-21 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks for the research. At this point I'm wondering what this test is testing. There is no prescribed behavior once you delete __annotations__ from the scope -- it is not a supported operation. At the same time I don't want to add any code enforcing that

[issue34173] [3.7] possible race condition in /usr/lib/python3.7/concurrent/futures/thread.py

2018-07-21 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34185] Lib/test/test_bdb.py failed when ran as a script

2018-07-21 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python Lib/test/test_bdb.py ... == FAIL: test_skip (__main__.StateTestCase) -- Traceback (most recent call last):

[issue34186] [3.6.6 on macOS] os.listdir replacing "/" with ":"

2018-07-21 Thread Zachary Ware
Zachary Ware added the comment: That's nothing to do with Python and everything to do with macOS. As a test, open Terminal, do `ls ~/Example`, and you'll see `AC:DC` instead of `AC/DC`. As a further test, do `mkdir ~/Example/dir:with:colons` and then have a look in Finder. See here [1]

[issue34179] test_statistics fails after test_time

2018-07-21 Thread Stefan Krah
Stefan Krah added the comment: New changeset 92ce6a64afcebd414def3b80b18b56448792a587 by Stefan Krah (Miss Islington (bot)) in branch '3.7': bpo-34179: Make sure decimal context doesn't affect other tests. (GH-8376) (#8383)

[issue34179] test_statistics fails after test_time

2018-07-21 Thread Stefan Krah
Stefan Krah added the comment: New changeset 9c136700aa1f755fa2ea64594688a0930b716597 by Stefan Krah (Miss Islington (bot)) in branch '3.6': bpo-34179: Make sure decimal context doesn't affect other tests. (GH-8376) (#8384)

[issue34181] Lib/test/test_typing.py failed when ran as a script

2018-07-21 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +7910 stage: -> patch review ___ Python tracker ___ ___

[issue34182] Lib/test/test_pydoc.py failed when ran as a script

2018-07-21 Thread bbayles
Change by bbayles : -- nosy: +bbayles ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34182] Lib/test/test_pydoc.py failed when ran as a script

2018-07-21 Thread bbayles
Change by bbayles : -- keywords: +patch pull_requests: +7917 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue34127] Gramatically incorrect error message for some calls with wrong number of arguments

2018-07-21 Thread Raymond Hettinger
Raymond Hettinger added the comment: > Raymond, will we accept a patch for this? If the patch is simple and minimal, then this seems like a minor but nice little improvement. -- ___ Python tracker

[issue34179] test_statistics fails after test_time

2018-07-21 Thread bbayles
Change by bbayles : -- nosy: +bbayles ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34126] Profiling certain invalid calls crashes Python

2018-07-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 7638eb892a50d101fe06342da180f0ab63a0b334 by Serhiy Storchaka (Miss Islington (bot)) in branch '3.7': bpo-34126: Fix crashes while profiling invalid calls. (GH-8300) (GH-8371)

[issue34126] Profiling certain invalid calls crashes Python

2018-07-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your contribution Jeroen. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue34154] Tkinter __init__ documentations sometimes missing valid keyword values

2018-07-21 Thread Noah Haasis
Noah Haasis added the comment: This are all the classes where the keywords are missing in the docs and their missing keywords: TopLevel ['padx', 'pady'] Checkbutton ['compound', 'offrelief', 'overrelief', 'tristateimage', 'tristatevalue'] Entry ['disabledbackground', 'disabledforeground',

[issue940286] pydoc.Helper.help() ignores input/output init parameters

2018-07-21 Thread Berker Peksag
Berker Peksag added the comment: I just noticed the same bug described by Éric in msg127840. PR 8390 should fix it. Unfortunately, it wasn't easy to create a test case, so I skipped that part. I'm open to suggestions if you have an idea on how to write a simple test that reproduces the bug.

[issue940286] pydoc.Helper.help() ignores input/output init parameters

2018-07-21 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +7918 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33462] reversible dict

2018-07-21 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: Hi Serhiy and Inada, is there a reason not to move forward with this patch? -- ___ Python tracker ___

[issue34180] bool(Q) always return True for a priority queue Q

2018-07-21 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- assignee: -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34179] test_statistics fails after test_time

2018-07-21 Thread Stefan Krah
Stefan Krah added the comment: New changeset 938045f335b52ddb47076e9fbe4229a33b4bd9be by Stefan Krah (Bo Bayles) in branch 'master': bpo-34179: Make sure decimal context doesn't affect other tests. (#8376) https://github.com/python/cpython/commit/938045f335b52ddb47076e9fbe4229a33b4bd9be

[issue34179] test_statistics fails after test_time

2018-07-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +7913 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34178] test_tcl fails on the 3.7 branch

2018-07-21 Thread Matthias Klose
Matthias Klose added the comment: this is the python3.7 build for Debian, so yes, installed via a package manager ;) see https://ci.debian.net/data/packages/unstable/amd64/p/python3.7/ for the test results. and yes, that seems to be a regression compared to the 3.7.0 release. --

[issue34180] bool(Q) always return True for a priority queue Q

2018-07-21 Thread Raymond Hettinger
Raymond Hettinger added the comment: The class is not documented to support __len__() or __bool__(), so this is not a bug. There is an empty() method provided for the purposes of testing whether a queue is empty or not. Likewise, there is a qsize() method for determining the current size.

[issue34178] test_tcl fails on the 3.7 branch

2018-07-21 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Got it. Thanks for the details. I understand the change in behavior since it was added as part of https://bugs.python.org/issue33974 after 3.7.0 but I don't know if this should be classified as a regression or as a bug fix after a stable release.

[issue34186] [3.6.6 on macOS] os.listdir replacing "/" with ":"

2018-07-21 Thread Todd
New submission from Todd : Short back story - I am organizing music where "/" appears in a lot a metadata for the songs. For instance, the artist "AC/DC" or "ACDC w/ Axl Rose". On macOS, it is acceptable to name a folder "AC/DC" while the slash would cause an issue in Windows. Issue - While

[issue34127] Gramatically incorrect error message for some calls with wrong number of arguments

2018-07-21 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28055] pyhash's siphash24 assumes alignment of the data pointer

2018-07-21 Thread Jeffrey Walton
Jeffrey Walton added the comment: I know this is a bit late but I wanted to share... OpenCSW has a build farm with Solaris machines and Sparc hardware. The farm provides x86 and Sparc machines with Solaris 9 through 11. I believe OpenCSW operates in the same spirit as GCC compile farm. They

[issue33145] unaligned accesses in siphash24() lead to crashes on sparc

2018-07-21 Thread Jeffrey Walton
Jeffrey Walton added the comment: I know this is a bit late but I wanted to share... OpenCSW has a build farm with Solaris machines and Sparc hardware. The farm provides x86 and Sparc machines with Solaris 9 through 11. I believe OpenCSW operates in the same spirit as GCC compile farm. They

[issue27805] io.open('/dev/stdout', 'a') raises OSError with errno=ESPIPE

2018-07-21 Thread Brett Randall
Change by Brett Randall : -- nosy: +javabrett ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34179] test_statistics fails after test_time

2018-07-21 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -v test_time test_statistics ... == FAIL: test_decimals_exact (test.test_statistics.TestHarmonicMean)

[issue25943] Integer overflow in _bsddb leads to heap corruption

2018-07-21 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34166] Tools/msgfmt.py emits a DeprecationWarning under Python 3.7

2018-07-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset a692efe4733f98831cb51a9683877b152f754d14 by Serhiy Storchaka (Xtreak) in branch 'master': bpo-34166: Fix warnings in Tools/msgfmt.py. (GH-8367) https://github.com/python/cpython/commit/a692efe4733f98831cb51a9683877b152f754d14 --

[issue34166] Tools/msgfmt.py emits a DeprecationWarning under Python 3.7

2018-07-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +7902 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34157] NamedTemporaryFile can leave temporary files behind

2018-07-21 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33336] [imaplib] MOVE is a legal command

2018-07-21 Thread Matej Cepl
Change by Matej Cepl : -- versions: +Python 2.7, Python 3.6, Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34172] multiprocessing.Pool and ThreadPool leak resources after being deleted

2018-07-21 Thread Windson Yang
Windson Yang added the comment: > A. This does not happen, creating a Pool, deleting it and collecting the > garbage, does not call terminate. Would you give me an example how you delete the Pool and collecting the garbage? If you use context manager, It will call terminate() function. > B.

[issue34166] Tools/msgfmt.py emits a DeprecationWarning under Python 3.7

2018-07-21 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- pull_requests: +7903 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33336] [imaplib] MOVE is a legal command

2018-07-21 Thread Anthony Singleton
Anthony Singleton added the comment: Fuck you -- components: +Cross-Build, Extension Modules nosy: +Alex.Willmer, Anthony Singleton ___ Python tracker ___