[issue30436] importlib.find_spec raises AttributeError when parent is not a package/module

2018-06-03 Thread Zackery Spytz


Change by Zackery Spytz :


--
pull_requests: +7011

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2018-06-03 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7010

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2018-06-03 Thread Terry J. Reedy


Terry J. Reedy  added the comment:

This makes detecting the context line a user clicks on slightly easier.  See 
new issue #33768 for discussion.  I am not sure now I would do this just for 
this reason, without trying with the label first.

Using a text also allows us to experiment with tagging the context keyword 
somehow, to see if it seems like an improvement.  Perhaps make it bold, or 
underlined, or the normal keyword color, or some variant thereof (grayed?).

So I am inclined to go ahead.  I did notice that most of the patch is 
straightforward substitution.  To me, this suggests that the code is pretty 
good.  Also, I think change 'label' (implentation) to 'context' (purpose) is a 
good change by itself.  I would keep this even if we reverted to using Label.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33768] IDLE: click on context line should jump to line, at top of window

2018-06-03 Thread Terry J. Reedy


Change by Terry J. Reedy :


--
dependencies: +IDLE: Use text widget for code context instead of label widget
nosy: +cheryl.sabella

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33768] IDLE: click on context line should jump to line, at top of window

2018-06-03 Thread Terry J. Reedy


New submission from Terry J. Reedy :

Item 8. on #33610.  Clicking on a line in the context box jumps the editor to 
that line, displayed as the first line.  If we do item 11, replace Label with 
Text, this has to start after #33763 is merged.

We could determine the context line clicked from click event.y by using 
.dlineinfo('1.0') on the editor window to get the offset and height of 
textlines for the font used.

Disabled texts still have an 'insert' mark that is moved by clicks.  It is just 
not visible.  The line clicked on is 
int(self.context.index('insert').split('.')[0]),
or int(float(index('insert'))),
or next(map(int, t.index('insert').split('.'))),
or s=t.index('insert'); int(s[:s.find('.')])
the same as if the context were 'normal' with a visible cursor.

This only works if the default click handler fires first, so the mark is moved 
before we look at it.  The default handler is a class binding to Button 
(press), so we should just be able to bind to ButtonRelease, which is generally 
a better choice anyway "because if the user accidentally presses the button, 
they can move the mouse off the widget to avoid setting off the event."

--
assignee: terry.reedy
components: IDLE
messages: 318636
nosy: terry.reedy
priority: normal
severity: normal
stage: test needed
status: open
title: IDLE: click on context line should jump to line, at top of window
type: enhancement
versions: Python 3.6, Python 3.7, Python 3.8

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33767] Improper use of SystemError in the mmap module

2018-06-03 Thread Zackery Spytz


Zackery Spytz  added the comment:

It doesn't look like it. I've updated the PR.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33766] Grammar Incongruence

2018-06-03 Thread Ammar Askar


Ammar Askar  added the comment:

Sorry, I was already working on the patch by the time you posted the comment. 
If we see above, it seems like the tokenize module doesn't correctly mirror the 
behavior of the C tokenizer. Do you want to try fixing that as a bug? That 
would involve making a new bpo ticket and submitting a PR there.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33766] Grammar Incongruence

2018-06-03 Thread Ammar Askar


Change by Ammar Askar :


--
keywords: +patch
pull_requests: +7009
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33766] Grammar Incongruence

2018-06-03 Thread Isaac Elliott


Isaac Elliott  added the comment:

Cool, thanks for the help. Should I submit a PR with the updated documentation?

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33760] Leaked files in test_io

2018-06-03 Thread Serhiy Storchaka


Change by Serhiy Storchaka :


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed
type:  -> behavior

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:


New changeset e292b75e3ecdc6bbe81cda09de836dc9e27ab9e6 by Ned Deily (Victor 
Stinner) in branch 'master':
bpo-33509: Fix test_warnings for python3 -Werror (GH-7365)
https://github.com/python/cpython/commit/e292b75e3ecdc6bbe81cda09de836dc9e27ab9e6


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33767] Improper use of SystemError in the mmap module

2018-06-03 Thread Serhiy Storchaka


Serhiy Storchaka  added the comment:

Thank you for your PR Zackery!

I concur that an alternative would be to remove mmap_concat() and 
mmap_repeat(). Why not use this simpler way? Are there any drawbacks?

--
nosy: +serhiy.storchaka

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33766] Grammar Incongruence

2018-06-03 Thread Serhiy Storchaka


Serhiy Storchaka  added the comment:

Good point Ammar.

Seems there is also a missing corner case in the definition of a physical line:

https://docs.python.org/3.8/reference/lexical_analysis.html#physical-lines
"""
A physical line is a sequence of characters terminated by an end-of-line 
sequence. In source files, any of the standard platform line termination 
sequences can be used - the Unix form using ASCII LF (linefeed), the Windows 
form using the ASCII sequence CR LF (return followed by linefeed), or the old 
Macintosh form using the ASCII CR (return) character. All of these forms can be 
used equally, regardless of platform.
"""

It misses a case when a physical line is terminated by the end of file.

--
assignee:  -> docs@python
components: +Documentation -Interpreter Core
nosy: +docs@python, gvanrossum
versions: +Python 2.7 -Python 3.5

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33766] Grammar Incongruence

2018-06-03 Thread Ammar Askar


Ammar Askar  added the comment:

Relevant bit of the parser that emits a fake newline at the end of the file if 
not present: 
https://github.com/python/cpython/blob/master/Parser/tokenizer.c#L1059-L1069

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33766] Grammar Incongruence

2018-06-03 Thread Ammar Askar


Ammar Askar  added the comment:

Actually, echo implicitly puts a newline at the end. If you run with echo -n, 
this is the output:

$ echo -n 'print("a");print("b")' | python3 -m tokenize
1,0-1,5:NAME   'print'
1,5-1,6:OP '('
1,6-1,9:STRING '"a"'
1,9-1,10:   OP ')'
1,10-1,11:  OP ';'
1,11-1,16:  NAME   'print'
1,16-1,17:  OP '('
1,17-1,20:  STRING '"b"'
1,20-1,21:  OP ')'
2,0-2,0:ENDMARKER  ''

No newline token present.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:


New changeset b8f2fb52007f6d0d9eacfb459a9e813678f55f7e by Ned Deily in branch 
'3.6':
bpo-33764: Appveyor fixes (GH-7364) (GH-7379)
https://github.com/python/cpython/commit/b8f2fb52007f6d0d9eacfb459a9e813678f55f7e


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:


New changeset 1cbdbf35db16f2b06c0974b711c4d8b840c8a264 by Ned Deily in branch 
'2.7':
bpo-33764: Appveyor fixes (GH-7364) (GH-7380)
https://github.com/python/cpython/commit/1cbdbf35db16f2b06c0974b711c4d8b840c8a264


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33766] Grammar Incongruence

2018-06-03 Thread Isaac Elliott


Isaac Elliott  added the comment:

I went through that document before I created this issue. I can't find anything 
which describes this behavior - could you be more specific please?

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33767] Improper use of SystemError in the mmap module

2018-06-03 Thread Zackery Spytz


Change by Zackery Spytz :


--
keywords: +patch
pull_requests: +7008
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread Ned Deily


Change by Ned Deily :


--
pull_requests: +7007

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33766] Grammar Incongruence

2018-06-03 Thread Ammar Askar


Ammar Askar  added the comment:

https://docs.python.org/3.8/reference/lexical_analysis.html

--
nosy: +ammar2

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33767] Improper use of SystemError in the mmap module

2018-06-03 Thread Zackery Spytz


New submission from Zackery Spytz :

Both mmap_concat() and mmap_repeat() raise a SystemError when invoked.

--
components: Extension Modules
messages: 318623
nosy: ZackerySpytz
priority: normal
severity: normal
status: open
title: Improper use of SystemError in the mmap module
type: behavior
versions: Python 2.7, Python 3.6, Python 3.7, Python 3.8

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33766] Grammar Incongruence

2018-06-03 Thread Isaac Elliott


Isaac Elliott  added the comment:

Thanks for the clarification. Is there a reference to this in the documentation?

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33756] Python 3.7.0b5 build error

2018-06-03 Thread Manjusaka


Manjusaka  added the comment:

Finally, I must say when I first build the Python 3.7.0b5, I don't use Pyenv or 
others tools.

As you say, It should be a PATH problem. I build success without no patch in a  
clean Mac. I think I will figure out what's wrong.

But just as what I say, You can't ensure everyone has a clean PATH.

Anyway, Thanks for your helping!

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33766] Grammar Incongruence

2018-06-03 Thread Serhiy Storchaka


Serhiy Storchaka  added the comment:

NEWLINE is not a newline. It is the NEWLINE token. And it is generated at the 
end of file.

$ echo 'print("a");print("b")' | ./python -m tokenize
1,0-1,5:NAME   'print'
1,5-1,6:OP '('
1,6-1,9:STRING '"a"'  
1,9-1,10:   OP ')'
1,10-1,11:  OP ';'
1,11-1,16:  NAME   'print'
1,16-1,17:  OP '('
1,17-1,20:  STRING '"b"'  
1,20-1,21:  OP ')'
1,21-1,22:  NEWLINE'\n'   
2,0-2,0:ENDMARKER  ''

--
nosy: +serhiy.storchaka

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread Ned Deily


Change by Ned Deily :


--
pull_requests: +7006

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33751] Failed separate testTruncateOnWindows in test_file

2018-06-03 Thread Serhiy Storchaka


Change by Serhiy Storchaka :


--
keywords: +patch
pull_requests: +7005
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33756] Python 3.7.0b5 build error

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:

As I said, I do not recall ever seeing a failure like this before and I 
regularly build and test Python on macOS in many different versions and 
environments.  It would be very time-consuming to try to debug your environment 
remotely, time that would be better spent on other problems, I'm afraid.  If 
you can demonstrate that the problem is with a clean version of pyenv, for 
example, then that's something to pursue with the pyenv project or here.  But, 
as it stands, there are so many ways things could have gone wrong for you that 
it would be foolish for me to try to guess.  Sorry!

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33756] Python 3.7.0b5 build error

2018-06-03 Thread Manjusaka


Manjusaka  added the comment:

it seems like what you say

but I think that you can't ensure everyone has a clean path especially when 
people use some tools such as pyenv or others to build Python from source code, 
but not get the binary package directly.

Anyway, it's just a personal idea. Thanks for what you do.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33766] Grammar Incongruence

2018-06-03 Thread Isaac Elliott


New submission from Isaac Elliott :

echo 'print("a");print("b")' > test.py

This program is grammatically incorrect according to the specification 
(https://docs.python.org/3.8/reference/grammar.html). But Python 3 runs it 
without issue.


It's this production here

simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE

which says 'simple_stmt's must be terminated by a newline. However, the program 
I wrote doesn't contain any newlines.

I think the grammar spec is missing some information, but I'm not quite sure 
what. Does anyone have an idea?

--
components: Interpreter Core
messages: 318617
nosy: Isaac Elliott
priority: normal
severity: normal
status: open
title: Grammar Incongruence
type: behavior
versions: Python 3.5, Python 3.6, Python 3.7, Python 3.8

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33756] Python 3.7.0b5 build error

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:

The only really suspicious thing I see is that your shell PATH is *gigantic*. 
pulling things in from all over the place including Homebrew.  If you want to 
pursue further, suggest you try a clean build from the tarball without the 
modification and use a simple PATH like:

export PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin

I'm willing to bet that some old versions of headers and/or libs are being 
picked up somewhere.  You probably should go through and permanently clean up 
that PATH.  Also make sure your Homebrew installation is up-to-date.  Rather 
than pulling in things from various places, consider pulling everything you 
need from Homebrew; it looks like you may have run various binary installers of 
various things in the past.  I'm going to close this issue.  Feel free to 
re-open if you discover something that appears to be a bug in Python.  Good 
luck!

--
resolution:  -> works for me
stage:  -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33756] Python 3.7.0b5 build error

2018-06-03 Thread Manjusaka


Manjusaka  added the comment:

The result in here 

https://gist.github.com/Zheaoli/86b04395748b998ad7d870a927a95aea

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33753] Leaked file in test_nextfile_oserror_deleting_backup in test_fileinput

2018-06-03 Thread Serhiy Storchaka


Change by Serhiy Storchaka :


--
keywords: +patch
pull_requests: +7004
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33752] Leaked file in test_anydbm_creation_n_file_exists_with_invalid_contents in test_dbm

2018-06-03 Thread Serhiy Storchaka


Change by Serhiy Storchaka :


--
keywords: +patch
pull_requests: +7003
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33759] Failed separate ServerProxyTestCase tests in test_xmlrpc

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:


New changeset 93ba6da27eed980600a874dfeffb2856fe1d4126 by Ned Deily (Serhiy 
Storchaka) in branch '2.7':
[2.7] bpo-33759: Fix test.test_xmlrpc.ServerProxyTestCase. (GH-7362) (GH-7374)
https://github.com/python/cpython/commit/93ba6da27eed980600a874dfeffb2856fe1d4126


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33760] Leaked files in test_io

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:


New changeset b02ceb57d23c26acab3a9f4c5b7d84d0ea0a by Ned Deily (Serhiy 
Storchaka) in branch '2.7':
[2.7] bpo-33760: Fix file leaks in test_io. (GH-7361). (GH-7373)
https://github.com/python/cpython/commit/b02ceb57d23c26acab3a9f4c5b7d84d0ea0a


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33752] Leaked file in test_anydbm_creation_n_file_exists_with_invalid_contents in test_dbm

2018-06-03 Thread Serhiy Storchaka


Serhiy Storchaka  added the comment:

The file was leaked because it was created in the database's close() method 
which was called after deleting temporary files in tearDown().

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33759] Failed separate ServerProxyTestCase tests in test_xmlrpc

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:


New changeset 2e601c54d9d5f03f1fe1f7b4a1f2cb8e843fdeae by Ned Deily (Serhiy 
Storchaka) in branch '3.6':
[3.6] bpo-33759: Fix test.test_xmlrpc.ServerProxyTestCase. (GH-7362) (GH-7375)
https://github.com/python/cpython/commit/2e601c54d9d5f03f1fe1f7b4a1f2cb8e843fdeae


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33760] Leaked files in test_io

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:


New changeset d18b13d36a22f93050a9d7cdfce594002f69236f by Ned Deily (Miss 
Islington (bot)) in branch '3.6':
bpo-33760: Fix file leaks in test_io. (GH-7361) (GH-7372)
https://github.com/python/cpython/commit/d18b13d36a22f93050a9d7cdfce594002f69236f


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33759] Failed separate ServerProxyTestCase tests in test_xmlrpc

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:


New changeset 7453caedbb42dd16e069dd08009f0317f7a9abc9 by Ned Deily (Miss 
Islington (bot)) in branch '3.7':
bpo-33759: Fix test.test_xmlrpc.ServerProxyTestCase. (GH-7362) (GH-7371)
https://github.com/python/cpython/commit/7453caedbb42dd16e069dd08009f0317f7a9abc9


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33759] Failed separate ServerProxyTestCase tests in test_xmlrpc

2018-06-03 Thread Serhiy Storchaka


Change by Serhiy Storchaka :


--
pull_requests: +7002

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33760] Leaked files in test_io

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:


New changeset 4d11fe7cad9e138423e16338c88908f24a55f1cf by Ned Deily (Miss 
Islington (bot)) in branch '3.7':
bpo-33760: Fix file leaks in test_io. (GH-7361) (GH-7370)
https://github.com/python/cpython/commit/4d11fe7cad9e138423e16338c88908f24a55f1cf


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33759] Failed separate ServerProxyTestCase tests in test_xmlrpc

2018-06-03 Thread Serhiy Storchaka


Change by Serhiy Storchaka :


--
pull_requests: +7001

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33760] Leaked files in test_io

2018-06-03 Thread Serhiy Storchaka


Change by Serhiy Storchaka :


--
pull_requests: +7000

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33756] Python 3.7.0b5 build error

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:

That change should not have affected the macOS build.  Now that you have a 
working python, can you please run:

./python.exe -m test.pythoninfo

and report the results here?

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33756] Python 3.7.0b5 build error

2018-06-03 Thread Manjusaka


Manjusaka  added the comment:

Actually, I found some interesting problem.

In Python 3.6.5 has declared the `extern pid_t forkpty(int *, char *, struct 
termios *, struct winsize *);`  in here 
https://github.com/python/cpython/blob/3.6/Include/pyport.h#L532

and I add it into the Python 3.7.0b5's pyport.h, It builds success!

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33759] Failed separate ServerProxyTestCase tests in test_xmlrpc

2018-06-03 Thread miss-islington


Change by miss-islington :


--
pull_requests: +6998

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33759] Failed separate ServerProxyTestCase tests in test_xmlrpc

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:


New changeset 7cfd8c6a1b53a7dbdea14b6f414f2629dcd130a2 by Ned Deily (Serhiy 
Storchaka) in branch 'master':
bpo-33759: Fix test.test_xmlrpc.ServerProxyTestCase. (GH-7362)
https://github.com/python/cpython/commit/7cfd8c6a1b53a7dbdea14b6f414f2629dcd130a2


--
nosy: +ned.deily

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33760] Leaked files in test_io

2018-06-03 Thread miss-islington


Change by miss-islington :


--
pull_requests: +6999

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33760] Leaked files in test_io

2018-06-03 Thread miss-islington


Change by miss-islington :


--
pull_requests: +6997
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33760] Leaked files in test_io

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:


New changeset e36837cb71032ccfa713e75623b314f091dc22bb by Ned Deily (Serhiy 
Storchaka) in branch 'master':
bpo-33760: Fix file leaks in test_io. (GH-7361)
https://github.com/python/cpython/commit/e36837cb71032ccfa713e75623b314f091dc22bb


--
nosy: +ned.deily

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:

Steve, what do you think about a similar change to the VSTS Windows CI builds 
to disable the "longfile" resource for the tests?  test_mmap seems to take a 
long time.

--
nosy: +steve.dower

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33756] Python 3.7.0b5 build error

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:

Sorry, I can't reproduce it and I do not recall every seeing a failure like 
that.

Just to be sure, you do mean ".configure" and not "./configuration"?

Perhaps you are picking up an old, third-party version of libutil from 
/usr/local/lib and/or /usr/local/include?  You have tried building from a clean 
directory?  It looks like the library is searched for at the following section 
of configure.ac (which is used to generate configure):

https://github.com/python/cpython/blob/v3.7.0b5/configure.ac#L3772

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33756] Python 3.7.0b5 build error

2018-06-03 Thread Manjusaka


Manjusaka  added the comment:

Sure, I already set "xcode-select --install" in terminal

Python 3.6.5 build success with a default setting when running ./configuration" 
command

Xcode version is 9.3

System version 10.13.4

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:


New changeset 37343a2db8763a114e63ac63a249603b1df2554d by Ned Deily (Miss 
Islington (bot)) in branch '3.7':
bpo-33764: Appveyor fixes (GH-7364) (GH-7369)
https://github.com/python/cpython/commit/37343a2db8763a114e63ac63a249603b1df2554d


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread miss-islington


Change by miss-islington :


--
pull_requests: +6996

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread Ned Deily


Ned Deily  added the comment:


New changeset 47a6c79f0986ce9a84d0efc3c565b28255042911 by Ned Deily (Zachary 
Ware) in branch 'master':
bpo-33764: Appveyor fixes (GH-7364)
https://github.com/python/cpython/commit/47a6c79f0986ce9a84d0efc3c565b28255042911


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2018-06-03 Thread STINNER Victor


STINNER Victor  added the comment:

> See also bpo-33764.

Some AppVeyor builds failed recently with:

"Build exceeded allowed resource quotas. Fix your build to consume less 
resources or contact AppVeyor support to request quotas increase."

Maybe we reached quotas and so AppVeyor will no longer spawn new builds in the 
next 24 hours?

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread Zachary Ware


Change by Zachary Ware :


--
pull_requests: +6995

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread STINNER Victor


STINNER Victor  added the comment:

> We discussed this earlier: https://bugs.python.org/issue33355#msg317587

At that time, I didn't know that AppVeyor was impacted. In my mind, the bug was 
specific to buildbots on slow cloud providers (slow cloud flavors).

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread STINNER Victor


Change by STINNER Victor :


--
keywords: +patch
pull_requests: +6994
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread STINNER Victor


STINNER Victor  added the comment:

> Looks like this was another case of test_mmap on Windows taking a long time.

Ah yes, bpo-33355.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: +ned.deily

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 find any job related to my PR in the AppVeyor history:
https://ci.appveyor.com/project/python/cpython/history

The latest build was 5 hours ago.

See also bpo-33764.

--
components: Tests
messages: 318591
nosy: vstinner
priority: normal
severity: normal
status: open
title: AppVeyor didn't start on my PR 7365

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: test_largefile (2 min 21 
sec), test_mmap (4 min 30 sec)
0:04:32 [313/407] test_weakset passed -- running: test_largefile (2 min 21 
sec), test_mmap (4 min 30 sec)
0:04:32 [314/407] test_fractions passed -- running: test_largefile (2 min 21 
sec), test_mmap (4 min 31 sec)

3.8:
https://ci.appveyor.com/project/python/cpython/build/3.8build16878

...
0:06:07 [290/416] test_frame passed -- running: test_io (4 min 1 sec), 
test_mmap (5 min 45 sec)
0:06:09 [291/416] test_codecmaps_cn passed -- running: test_io (4 min 3 sec), 
test_mmap (5 min 47 sec)
fetching http://www.pythontest.net/unicode/gb-18030-2000.xml ...
fetching http://www.pythontest.net/unicode/EUC-CN.TXT ...
fetching http://www.pythontest.net/unicode/CP936.TXT ...


Terry Reedy also noticed the issue:
https://mail.python.org/pipermail/python-committers/2018-June/005527.html


https://appveyor.statuspage.io/ says that all services are operational.

--
components: Tests
messages: 318590
nosy: vstinner
priority: normal
severity: normal
status: open
title: AppVeyor builds interrupted before tests complete

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33610] IDLE: Make multiple improvements to CodeContext

2018-06-03 Thread Cheryl Sabella


Cheryl Sabella  added the comment:

For item 11 - #33763

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 name and method for getting text.

--
assignee: terry.reedy
components: IDLE
messages: 318588
nosy: cheryl.sabella, terry.reedy
priority: normal
severity: normal
status: open
title: IDLE: Use text widget for code context instead of label widget
type: enhancement
versions: Python 3.6, Python 3.7, Python 3.8

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2018-06-03 Thread R. David Murray


Change by R. David Murray :


--
superseder:  -> can cmd.py's API/docs for the use of an alternate stdin be 
improved?

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 implementation is probably a good idea.  I'm going to close 
this, but feel free to open an enhancement issue with a proposal.

--
nosy: +r.david.murray
resolution:  -> duplicate
stage:  -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 that case, but mbuf_clear() is, which
is known and expected to handle mbuf->exports >= 0.

Indeed let's perhaps just add "if (self->exports > 0) return 0" to 
memory_clear() if those assumptions are too complex.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33762] temp file isn't IOBase

2018-06-03 Thread Dutcho


New submission from Dutcho :

I'd expect isinstance(tempfile.TemporaryFile(), io.IOBase) to be True as you 
can read() from and write() to the temp file.

However, on Python 3.6.5 64 bit on Windows 7 above isinstance() == False and 
and type(tempfile.TemporaryFile()) == tempfile._TemporaryFileWrapper, which has 
no super class (other than object).
Whereas, on Python 3.6.1 on iOS 11.4 (Pythonista 3.2) above isinstance() == 
True and type(tempfile.TemporaryFile()) == io.BufferedRandom, which has 
io.IOBase as its (indirect) super class.
The difference is likely caused by tempfile line 565 that equals TemporaryFile 
= NamedTemporaryFile in case of Windows.

This may be somewhat related to issue 26175, but isn't a duplicate as 26175 is 
on a temp file's attributes, and this issue is on its type

--
components: Library (Lib)
messages: 318585
nosy: Dutcho
priority: normal
severity: normal
status: open
title: temp file isn't IOBase
type: behavior
versions: Python 3.6

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33755] Failed separate tests in test_importlib

2018-06-03 Thread Barry A. Warsaw


Barry A. Warsaw  added the comment:

I can take a look at this tomorrow.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33755] Failed separate tests in test_importlib

2018-06-03 Thread Serhiy Storchaka


Serhiy Storchaka  added the comment:

Tests are passed if run the whole test_importlib. They are failed only when run 
the test_resource subset of them. This means that test_resource tests depend on 
the global environment changed by other tests. And this also means that some 
changes of the global environment are leaked from some tests, and may affect 
also other tests.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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


--
nosy: +miss-islington

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30654] signal module always overwrites SIGINT on interpreter shutdown

2018-06-03 Thread Antoine Pitrou


Antoine Pitrou  added the comment:


New changeset ded666ff0ce44785a495ff89b676ca68e4cc08e8 by Antoine Pitrou in 
branch '2.7':
[2.7] bpo-30654: Do not reset SIGINT handler to SIG_DFL in finisignal (GH-7146) 
(GH-7347)
https://github.com/python/cpython/commit/ded666ff0ce44785a495ff89b676ca68e4cc08e8


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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)
https://github.com/python/cpython/commit/bdab3ea8b98db2133ef1e2d92b2a2c539f08ddaf


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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)
https://github.com/python/cpython/commit/7f1bcda9bc3c04100cb047373732db0eba00e581


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



  1   2   >