[issue33712] OrderedDict can set an exception in tp_clear

2018-06-03 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +6975 stage: -> patch review ___ Python tracker ___ ___

[issue30516] Documentation for datetime substract operation incorrect?

2018-06-03 Thread Farhaan Bukhsh
Change by Farhaan Bukhsh : -- keywords: +patch pull_requests: +6974 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue5945] PyMapping_Check returns 1 for lists

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Are these changes enough? Can this issue be closed now? -- ___ Python tracker ___ ___

[issue33725] High Sierra hang when using multi-processing

2018-06-03 Thread Ronald Oussoren
Ronald Oussoren added the comment: @Ned: In the long run the macOS installers should be build using the latest SDK, primarily to get full API coverage and access to all system APIs. AFAIK building using the macOS 10.9 SDK still excludes a number of libSystem APIs that would be made

[issue33664] IDLE: scroll text by lines, not pixels.

2018-06-03 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +6978 stage: test needed -> patch review ___ Python tracker ___ ___

[issue33744] Fix and improve tests for the uu module

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset da7f8ce21adc6cd0d7f86f5784a1d477891976f7 by Serhiy Storchaka (Miss Islington (bot)) in branch '3.6': bpo-33744: Fix test_uu. (GH-7350) (GH-7353) https://github.com/python/cpython/commit/da7f8ce21adc6cd0d7f86f5784a1d477891976f7 --

[issue33744] Fix and improve tests for the uu module

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

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

2018-06-03 Thread Michael Felt
Michael Felt added the comment: Please review PR. at least for "master" -- versions: +Python 3.8 ___ Python tracker ___ ___

[issue33274] minidom removeAttributeNode returns None

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Please add a test and document the new feature (add a versionchanged directive in the module documentation, add a news entry and an entry in What's New). -- nosy: +serhiy.storchaka stage: -> test needed ___

[issue33725] High Sierra hang when using multi-processing

2018-06-03 Thread Ronald Oussoren
Ronald Oussoren added the comment: Antoine, the issue is not necessarily related to POSIX compliance, AFAIK strictly POSIX compliant code should work just fine. The problem is in higher-level APIs (CoreFoundation, Foundation, AppKit, ...), and appears to be related to using multi-threading

[issue18533] Avoid error from repr() of recursive dictview

2018-06-03 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue33746] testRegisterResult in test_unittest fails in verbose mode

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -m testRegisterResult test_unittest Run tests sequentially 0:00:00 load avg: 4.42 [1/1] test_unittest == Tests result: SUCCESS == 1 test OK. Total duration: 98 ms Tests result: SUCCESS $ ./python -m test -v -m testRegisterResult

[issue33750] Failed separate test_from_tuple in test_decimal

2018-06-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +6984 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33742] Unsafe memory access in PyStructSequence_InitType

2018-06-03 Thread Pasha Stetsenko
New submission from Pasha Stetsenko : The documentation (https://docs.python.org/3/c-api/tuple.html) for `PyStructSequence_InitType` describes the function as follows: > void PyStructSequence_InitType(PyTypeObject *type, PyStructSequence_Desc > *desc) > Initializes a struct sequence type

[issue33751] Failed separate testTruncateOnWindows in test_file

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -v -m testTruncateOnWindows test_file ... testTruncateOnWindows (test.test_file.COtherFileTests) ... ERROR testTruncateOnWindows (test.test_file.PyOtherFileTests) ... ERROR

[issue33750] Failed separate test_from_tuple in test_decimal

2018-06-03 Thread Stefan Krah
Stefan Krah added the comment: The test is insignificant. The real tests are mpdecimal-testit- 2.4.1.tar.gz (http://www.bytereef.org/mpdecimal/download.html), deccheck.py and my private python test suite. This test uses the global context that has been modified somewhere. I think I added

[issue33744] Fix and improve tests for the uu module

2018-06-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +6979 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33744] Fix and improve tests for the uu module

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 027f95c736457f12c5713d9cf5b95ac335e583df by Serhiy Storchaka in branch 'master': bpo-33744: Fix test_uu. (GH-7350) https://github.com/python/cpython/commit/027f95c736457f12c5713d9cf5b95ac335e583df --

[issue27485] urllib.splitport -- is it official or not?

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 867b825830b9b0baff791c9bcda57bba3809722a by Serhiy Storchaka (Cheryl Sabella) in branch 'master': bpo-27485: Change urlparse tests to use private methods. (GH-7070)

[issue33744] Fix and improve tests for the uu module

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset ad4c7954df11b45ab2d17eefeb42bb7385615697 by Serhiy Storchaka (Miss Islington (bot)) in branch '3.7': bpo-33744: Fix test_uu. (GH-7350) (GH-7352) https://github.com/python/cpython/commit/ad4c7954df11b45ab2d17eefeb42bb7385615697 --

[issue33758] Unexpected success of test_get_type_hints_modules_forwardref in test_typing

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -v -m test_get_type_hints_modules_forwardref test_typing ... test_get_type_hints_modules_forwardref (test.test_typing.GetTypeHintTests) ... unexpected success -- Ran 1

[issue33761] Leaked file in test_iterparse in test_xml_etree

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -v -m test_iterparse test_xml_etree ... Warning -- files was modified by test_xml_etree Before: [] After: ['@test_18721_tmp'] test_xml_etree failed (env changed) -- components: Tests messages: 318568 nosy: eli.bendersky,

[issue33750] Failed separate test_from_tuple in test_decimal

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -v -m test_from_tuple test_decimal ... test_from_tuple (test.test_decimal.CWhitebox) ... FAIL == FAIL: test_from_tuple (test.test_decimal.CWhitebox)

[issue33750] Failed separate test_from_tuple in test_decimal

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Doesn't this mean that the test is incorrect? It expects the result be '-0E-126', but actually it should be '-0E-107', and it is '-0E-126' only after performing some actions outside of the test. Or maybe that there is a leak of the state out

[issue33754] f-strings should be part of the Grammar

2018-06-03 Thread David Halter
David Halter added the comment: As I wrote before, I'm not trying to change anything about the f-string behavior. It is a refactoring. If anyone wants to change the behavior, I feel like they should probably write a PEP anyway. I personally don't like that f-strings get parsed multiple

[issue33744] Fix and improve tests for the uu module

2018-06-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +6980 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33750] Failed separate test_from_tuple in test_decimal

2018-06-03 Thread Stefan Krah
Stefan Krah added the comment: The thread local context was modified in test_round(), so prec=28 was used in test_from_tuple() when running the whole test suite but prec=9 when running the single test. I don't really consider that a bug, but it is easy to "fix". I wouldn't be surprised if

[issue11191] test_search_cpp error on AIX (with xlc)

2018-06-03 Thread Michael Felt
Michael Felt added the comment: I hope this can be reviewed and eventually closed - not because it is X years old and unresolved - but because it is resolved for the latest branches! Thx -- versions: +Python 3.8 ___ Python tracker

[issue33745] 3.7.0b5 changes the line number of empty functions with docstrings

2018-06-03 Thread Ned Batchelder
New submission from Ned Batchelder : I'm not sure if this is a regression or an intentional change. I know that the behavior has changed. If a function has a docstring but no other body, Python 3.7b5 assigns the line number of the docstring to the implicit "return None". Previous versions

[issue33747] Failed separate test_patch_propogrates_exc_on_exit in test_unittest

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -v -m test_patch_propogrates_exc_on_exit test_unittest ... test_patch_propogrates_exc_on_exit (unittest.test.testmock.testpatch.PatchTest) ... ERROR == ERROR:

[issue33012] Invalid function cast warnings with gcc 8 for METH_NOARGS

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The problem with invalid function signatures was initially reported in old issue1648268. -- ___ Python tracker ___

[issue33752] Leaked file in test_anydbm_creation_n_file_exists_with_invalid_contents in test_dbm

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -v -m test_anydbm_creation_n_file_exists_with_invalid_contents test_dbm ... test_anydbm_creation_n_file_exists_with_invalid_contents (test.test_dbm.TestCase-dbm.gnu) ... ok test_anydbm_creation_n_file_exists_with_invalid_contents

[issue33754] f-strings should be part of the Grammar

2018-06-03 Thread Berker Peksag
Change by Berker Peksag : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33749] pdb.Pdb constructor stdout override required to disable use_rawinput

2018-06-03 Thread Michiel
Michiel added the comment: Based on code inspection, this affects 2.7 - current master -- versions: +Python 2.7, Python 3.4, Python 3.5, Python 3.7, Python 3.8 ___ Python tracker

[issue33750] Failed separate test_from_tuple in test_decimal

2018-06-03 Thread Stefan Krah
Change by Stefan Krah : -- keywords: +patch pull_requests: +6982 stage: -> patch review ___ Python tracker ___ ___

[issue33750] Failed separate test_from_tuple in test_decimal

2018-06-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +6983 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9141] Allow objects to decide if they can be collected by GC

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Is this issue still actual after PEP 442? -- nosy: +serhiy.storchaka ___ Python tracker ___ ___

[issue1648268] Parameter list mismatches (portation problem)

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This issue has been partially (for METH_NOARGS methods) fixed in issue33012. -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue33753] Leaked file in test_nextfile_oserror_deleting_backup in test_fileinput

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -v -m test_nextfile_oserror_deleting_backup test_fileinput ... Warning -- files was modified by test_fileinput Before: [] After: ['@test_23936_tmp1.bak'] test_fileinput failed (env changed) -- components: Tests messages:

[issue33756] Python 3.7.0b5 build error

2018-06-03 Thread Manjusaka
New submission from Manjusaka : When I build 3.70.b5 in Mac , the compiler raise an error show that "./Modules/posixmodule.c:6018:11: error: implicit declaration of function 'forkpty' is invalid in C99 [-Werror,-Wimplicit-function-declaration] pid = forkpty(_fd, NULL, NULL, NULL);" the

[issue33754] f-strings should be part of the Grammar

2018-06-03 Thread Eric V. Smith
Eric V. Smith added the comment: I'm not completely opposed to it, but I need to understand the benefits and side effects. And I wouldn't exactly describe the multiple passes over the string as "parsing", but I see your point. -- ___ Python

[issue33757] Failed separate test_pdb_next_command_in_generator_for_loop in test_pdb

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -v -m test_pdb_next_command_in_generator_for_loop test_pdb ... test_pdb_next_command_in_generator_for_loop (test.test_pdb) Doctest: test.test_pdb.test_pdb_next_command_in_generator_for_loop ... FAIL

[issue33509] warnings.warn_explicit with module_globals=True raises a SystemError

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This test is failed with -We. $ ./python -We -m test -v test_warnings ... == ERROR: test_module_globals (test.test_warnings.CFilterTests)

[issue33760] Leaked files in test_io

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -v -m test.test_io.CBufferedReaderTest.test_garbage_collection test_io ... Warning -- files was modified by test_io Before: [] After: ['@test_18627_tmp'] test_io failed (env changed) $ ./python -m test -v -m

[issue33750] Failed separate test_from_tuple in test_decimal

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I ran all tests separately and this was the only case. PR 7355 fixes it. There are no other failures, errors or warnings. ./python -m test -uall --list-cases test_decimal | xargs -n1 -I '{}' ./python -We -m test -vuall -m '{}' test_decimal --

[issue33744] Fix and improve tests for the uu module

2018-06-03 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +6977 stage: -> patch review ___ Python tracker ___ ___

[issue33754] f-strings should be part of the Grammar

2018-06-03 Thread Eric V. Smith
Eric V. Smith added the comment: What is the goal here? Are you just trying to simplify ast.c? My concern is that there are many, many edge cases, and that you'll be unknowingly changing the behavior of f-strings. One of the goals of the f-string specification is for a simple third-party

[issue24215] test_trace uses test_pprint

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: There is different failure when run this test separately: $ ./python -m test -v -m test_coverage test_trace ... == FAIL: test_coverage (test.test_trace.TestCoverage)

[issue33750] Failed separate test_from_tuple in test_decimal

2018-06-03 Thread Stefan Krah
Stefan Krah added the comment: New changeset e95dfc5006d19e59c7871faa9973356844ddb3ae by Stefan Krah in branch 'master': bpo-33750: Reset thread-local context precision in test_round(). (#7355) https://github.com/python/cpython/commit/e95dfc5006d19e59c7871faa9973356844ddb3ae --

[issue33743] test_asyncio raises a deprecation warning

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -We -m test -v -m test__register_task_3 test_asyncio ... == ERROR: test__register_task_3 (test.test_asyncio.test_tasks.CIntrospectionTests)

[issue28962] Crash when throwing an exception with a malicious __hash__ override

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It was fixed in issue28603. -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___

[issue32584] Uninitialized free_extra in code_dealloc

2018-06-03 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +brett.cannon priority: normal -> high versions: +Python 3.6, Python 3.8 ___ Python tracker ___

[issue33749] pdb.Pdb constructor stdout override required to disable use_rawinput

2018-06-03 Thread Michiel
New submission from Michiel : It looks like there's possibly a typo/small bug in the pdb.Pdb code. If I supply the stdin argument to the constructor, and provide e.g. a io.StringIO object, then I expect commands to be read from there. This however doesn't happen. If I additionally supply a

[issue33748] test_discovery_failed_discovery in test_unittest modifies sys.path

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -v -m test_discovery_failed_discovery test_unittest ... Warning -- sys.path was modified by test_unittest Before: (139720094056760, ['/home/serhiy/py/cpython', '/usr/local/lib/python38.zip', '/home/serhiy/py/cpython/Lib',

[issue33754] f-strings should be part of the Grammar

2018-06-03 Thread David Halter
New submission from David Halter : Currently f-strings are a bit of a hack. They certainly work very well for users, but they are implemented in ast.c and therefore not part of the Python grammar and the tokenizer. I want to change this. I wrote an alternative implementation of f-strings in

[issue33750] Failed separate test_from_tuple in test_decimal

2018-06-03 Thread Stefan Krah
Stefan Krah added the comment: I think the tests are order-dependent in multiple places. Personally, I don't see much value in fixing that because it has little effect on the actual code. -- ___ Python tracker

[issue33755] Failed separate tests in test_importlib

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -v -m test_resource test_importlib ... ==

[issue33744] Fix and improve tests for the uu module

2018-06-03 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +6981 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27485] urllib.splitport -- is it official or not?

2018-06-03 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue33759] Failed separate ServerProxyTestCase tests in test_xmlrpc

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : $ ./python -m test -v -m ServerProxyTestCase test_xmlrpc ... == ERROR: test_close (test.test_xmlrpc.ServerProxyTestCase)

[issue33744] Fix and improve tests for the uu module

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 9b5c9488c77aeaddeafa7e2302bdc87dd77ac084 by Serhiy Storchaka in branch '2.7': [2.7] bpo-33744: Fix test_uu. (GH-7350) (GH-7354) https://github.com/python/cpython/commit/9b5c9488c77aeaddeafa7e2302bdc87dd77ac084 --

[issue33742] Unsafe memory access in PyStructSequence_InitType

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could you please provide a C code that reproduces the crash? -- components: +Interpreter Core nosy: +serhiy.storchaka versions: +Python 3.8 -Python 3.5 ___ Python tracker

[issue33744] Fix and improve tests for the uu module

2018-06-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : Separate tests in test_uu leak files of depend on the file leaked in other tests. $ ./python -m test -m test_decode test_uu ... Warning -- files was modified by test_uu Before: [] After: ['@test_12637_tmpi'] test_uu failed (env changed) $

[issue28962] Crash when throwing an exception with a malicious __hash__ override

2018-06-03 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- superseder: -> traceback module can't format/print unhashable exceptions ___ Python tracker ___

[issue4896] Faster why variable manipulation in ceval.c

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This issue is outdated since moving unwinding of stack for "pseudo exceptions" from interpreter to compiler in issue17611. -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python

[issue17045] Improve C-API doc for PyTypeObject

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Do you mind to create a PR Eric? -- nosy: +serhiy.storchaka versions: +Python 3.6, Python 3.7, Python 3.8 -Python 3.3, Python 3.4 ___ Python tracker

[issue33610] IDLE: Make multiple improvements to CodeContext

2018-06-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: After writing the above, I realized that line scroll only touches editor.py, not codecontext.py. On the other hand, the next item, 8. jump to context line did have to wait. Replacing Label with Text will require explicit height setting with each context

[issue33694] test_asyncio: test_start_tls_server_1() fails on Python on x86 Windows7 3.7 and 3.x

2018-06-03 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: The test fails also on x86 Windows7 3.x: http://buildbot.python.org/all/#/builders/58/builds/947 -- nosy: +pablogsal ___ Python tracker

[issue33761] Leaked file in test_iterparse in test_xml_etree

2018-06-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 13f51d9eec569e08475390e2a8f49f4afed1ea06 by Serhiy Storchaka in branch 'master': bpo-33761: Fix a file leak in test_iterparse in test_xml_etree. (GH-7358) https://github.com/python/cpython/commit/13f51d9eec569e08475390e2a8f49f4afed1ea06

[issue33761] Leaked file in test_iterparse in test_xml_etree

2018-06-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +6986 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30654] signal module always overwrites SIGINT on interpreter shutdown

2018-06-03 Thread Antoine Pitrou
Antoine Pitrou added the comment: So this is in 2.7 finally. Closing again. -- stage: patch review -> resolved status: open -> closed versions: +Python 2.7 ___ Python tracker

[issue33755] Failed separate tests in test_importlib

2018-06-03 Thread Barry A. Warsaw
Change by Barry A. Warsaw : -- assignee: -> barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33761] Leaked file in test_iterparse in test_xml_etree

2018-06-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +6990 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33756] Python 3.7.0b5 build error

2018-06-03 Thread Ned Deily
Ned Deily added the comment: Have you run "xcode-select --install" to ensure system header files are installed? If so, what compiler are you using from what source? What version of macOS are you using? https://devguide.python.org/setup/#macos -- nosy: +ned.deily

[issue33755] Failed separate tests in test_importlib

2018-06-03 Thread Brett Cannon
Brett Cannon added the comment: Was this on your machine or has this started across CI or buildbots? And was this from a build or installed copy? -- ___ Python tracker ___

[issue33713] memoryview can set an exception in tp_clear

2018-06-03 Thread Stefan Krah
Stefan Krah added the comment: Okay that makes sense. :) I looked a bit at the gc code. A consumer object always has one reference to a memoryview with an export, which isn't visited. So it looks to me that the gc_refs of that memoryview cannot fall to 0. So memory_clear() isn't called in

[issue33765] AppVeyor didn't start on my PR 7365

2018-06-03 Thread STINNER Victor
New submission from STINNER Victor : I created the PR 7365: https://github.com/python/cpython/pull/7365 AppVeyor job is required to pass to allow me to merge my PR. But AppVeyor job didn't start: "continuous-integration/appveyor/pr Expected — Waiting for status to be reported" I cannot

[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread STINNER Victor
STINNER Victor added the comment: See also bpo-33765: "AppVeyor didn't start on my PR 7365". -- ___ Python tracker ___ ___

[issue33761] Leaked file in test_iterparse in test_xml_etree

2018-06-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +6987 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33763] IDLE: Use text widget for code context instead of label widget

2018-06-03 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +6993 stage: -> patch review ___ Python tracker ___ ___

[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread Ned Deily
Ned Deily added the comment: Looks like this was another case of test_mmap on Windows taking a long time. If the change has now been made to disable tests with "largefile" resources, test_mmap should no longer be a hangup. -- ___ Python tracker

[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread Ned Deily
Ned Deily added the comment: We discussed this earlier: https://bugs.python.org/issue33355#msg317587 -- ___ Python tracker ___ ___

[issue33750] Failed separate test_from_tuple in test_decimal

2018-06-03 Thread Stefan Krah
Stefan Krah added the comment: OK, thanks for checking the other tests! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue33760] Leaked files in test_io

2018-06-03 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +6988 stage: -> patch review ___ Python tracker ___ ___

[issue33760] Leaked files in test_io

2018-06-03 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- components: +Tests stage: patch review -> versions: +Python 2.7, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker ___

[issue33509] warnings.warn_explicit with module_globals=True raises a SystemError

2018-06-03 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +6991 stage: resolved -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue33749] pdb.Pdb constructor stdout override required to disable use_rawinput

2018-06-03 Thread R. David Murray
R. David Murray added the comment: This is a duplicate of 2571 and 10396. As I commented in 10396, if you want to work on an enhancement request (for cmd) that improves the situation, it will be welcome; but as you observed what to do isn't immediately obvious, so discussion before

[issue17909] Autodetecting JSON encoding

2018-06-03 Thread Anthony Sottile
Change by Anthony Sottile : -- pull_requests: +6992 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33763] IDLE: Use text widget for code context instead of label widget

2018-06-03 Thread Cheryl Sabella
New submission from Cheryl Sabella : Item 11 from #33610. Use read-only Text instead of Label for context. * Change widget type from Label to Text and remove Label-only arguments. * Add height and state arguments. * Change widget name from self.label to self.context. * Tests: change widget

[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread Ned Deily
Ned Deily added the comment: Clicking on the Messages tab: https://ci.appveyor.com/project/python/cpython/build/3.8build16878/messages "Build exceeded allowed resource quotas. Fix your build to consume less resources or contact AppVeyor support to request quotas increase." -- nosy:

[issue33755] Failed separate tests in test_importlib

2018-06-03 Thread Brett Cannon
Change by Brett Cannon : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33610] IDLE: Make multiple improvements to CodeContext

2018-06-03 Thread Cheryl Sabella
Change by Cheryl Sabella : -- dependencies: +IDLE: Use text widget for code context instead of label widget ___ Python tracker ___

[issue33761] Leaked file in test_iterparse in test_xml_etree

2018-06-03 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +6985 stage: -> patch review ___ Python tracker ___ ___

[issue33750] Failed separate test_from_tuple in test_decimal

2018-06-03 Thread Stefan Krah
Stefan Krah added the comment: New changeset bdab3ea8b98db2133ef1e2d92b2a2c539f08ddaf by Stefan Krah (Miss Islington (bot)) in branch '3.7': bpo-33750: Reset thread-local context precision in test_round(). (GH-7355) (#7357)

[issue32584] Uninitialized free_extra in code_dealloc

2018-06-03 Thread Brett Cannon
Change by Brett Cannon : -- nosy: +dino.viehland ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33759] Failed separate ServerProxyTestCase tests in test_xmlrpc

2018-06-03 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +6989 stage: -> patch review ___ Python tracker ___ ___

[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread STINNER Victor
New submission from STINNER Victor : While looking at AppVeyor history, I saw two builds which seem like interrupted in the middle of the test 3.6: https://ci.appveyor.com/project/python/cpython/build/3.6build16876/job/t9nyt59wkwcn68nk ... 0:04:32 [312/407] test_genexps passed -- running:

[issue33750] Failed separate test_from_tuple in test_decimal

2018-06-03 Thread Stefan Krah
Stefan Krah added the comment: New changeset 7f1bcda9bc3c04100cb047373732db0eba00e581 by Stefan Krah (Miss Islington (bot)) in branch '3.6': bpo-33750: Reset thread-local context precision in test_round(). (GH-7355) (#7356)

[issue33761] Leaked file in test_iterparse in test_xml_etree

2018-06-03 Thread miss-islington
miss-islington added the comment: New changeset 2332fedb8d7037172946520bb1a552c7018261d5 by Miss Islington (bot) in branch '3.7': bpo-33761: Fix a file leak in test_iterparse in test_xml_etree. (GH-7358) https://github.com/python/cpython/commit/2332fedb8d7037172946520bb1a552c7018261d5

[issue9141] Allow objects to decide if they can be collected by GC

2018-06-03 Thread Antoine Pitrou
Antoine Pitrou added the comment: It's hard to say as I never fully understood the underlying intent. Perhaps Kristján or some other developer who better understood than me can chime in. -- ___ Python tracker

  1   2   >