[issue24835] Consistent failure in test_asyncio on Windows 7 buildbot

2015-08-09 Thread Larry Hastings
Larry Hastings added the comment: The buildbot passes the test! Hooray! -- ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue24745] Better default font for editor

2015-08-09 Thread Ned Deily
Ned Deily added the comment: At Larry's request so that we can get 3.5.0rc1 out the door, I've checked in a temporary fix for 3.5 (and for 3.6) that should prevent the IDLE crash when linked with Tk 8.4. I'll leave the issue open for Terry to review and provide the final fix for all branches.

[issue24745] Better default font for editor

2015-08-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset e39c4373b83f by Ned Deily in branch '3.5': Issue #24745: Prevent IDLE initialization crash with Tk 8.4: https://hg.python.org/cpython/rev/e39c4373b83f New changeset 8c55fb5a11d8 by Ned Deily in branch 'default': Issue #24745: merge from 3.5 https://

[issue24832] Issue building viewable docs with newer sphinx (default theme -> classic)

2015-08-09 Thread Zachary Ware
Zachary Ware added the comment: Ah, sorry; I missed that distinction. I can't reproduce, though: in a clean checkout of default, I just did: cd Doc/ make venv PYTHON=python3 source venv/bin/activate make html The resulting build did emit the warning about the themes, but the docs produced ren

[issue24492] using custom objects as modules: AttributeErrors new in 3.5

2015-08-09 Thread Brett Cannon
Brett Cannon added the comment: Here is a patch that adds a test, fixes the issue, and for good measure stops assuming that __name__ will always be a string. -- keywords: +patch stage: needs patch -> patch review Added file: http://bugs.python.org/file40154/issue24492.diff

[issue24835] Consistent failure in test_asyncio on Windows 7 buildbot

2015-08-09 Thread Larry Hastings
Larry Hastings added the comment: I don't have one either. But that's why we've got buildbots. The Windows 7 buildbot, where I first noticed the regression, is here: http://buildbot.python.org/all/builders/x86%20Windows7%203.5 It should be done testing your patch 1 hour and 15 minutes from n

[issue24835] Consistent failure in test_asyncio on Windows 7 buildbot

2015-08-09 Thread Yury Selivanov
Changes by Yury Selivanov : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ ___

[issue24835] Consistent failure in test_asyncio on Windows 7 buildbot

2015-08-09 Thread Yury Selivanov
Yury Selivanov added the comment: Guido, thanks for investigating this. Larry, it should be fixed now (although I don't have a windows machine at hand to test it) -- ___ Python tracker ___

[issue24835] Consistent failure in test_asyncio on Windows 7 buildbot

2015-08-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 26483248 by Yury Selivanov in branch '3.4': Issue #24763: Fix asyncio test on Windows (fix reverted change) https://hg.python.org/cpython/rev/26483248 New changeset aa527ee0d27f by Yury Selivanov in branch '3.5': Merge 3.4 (issues #24835, #2

[issue24763] asyncio.BaseSubprocessTransport triggers an unavoidable ResourceWarning if process doesn't start

2015-08-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 26483248 by Yury Selivanov in branch '3.4': Issue #24763: Fix asyncio test on Windows (fix reverted change) https://hg.python.org/cpython/rev/26483248 New changeset aa527ee0d27f by Yury Selivanov in branch '3.5': Merge 3.4 (issues #24835, #2

[issue20059] Inconsistent urlparse/urllib.parse handling of invalid port values?

2015-08-09 Thread Robert Collins
Changes by Robert Collins : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___ __

[issue20059] Inconsistent urlparse/urllib.parse handling of invalid port values?

2015-08-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7c78279afc30 by Robert Collins in branch 'default': Issue #20059: urllib.parse raises ValueError on all invalid ports. https://hg.python.org/cpython/rev/7c78279afc30 -- nosy: +python-dev ___ Python tracke

[issue15989] Possible integer overflow of PyLong_AsLong() results

2015-08-09 Thread Robert Collins
Robert Collins added the comment: It looks fine to me, for whatever thats worth. I think you should commit it. -- ___ Python tracker ___ _

[issue24835] Consistent failure in test_asyncio on Windows 7 buildbot

2015-08-09 Thread Yury Selivanov
Yury Selivanov added the comment: I can commit the fix in an hour or so. -- nosy: +Yury.Selivanov ___ Python tracker ___ ___ Python-bu

[issue24835] Consistent failure in test_asyncio on Windows 7 buildbot

2015-08-09 Thread Larry Hastings
Larry Hastings added the comment: We're retagging 3.5.0rc1 to fix this and one other regression. Can someone step up and get this fix checked in in the next six or eight hours? You can just check in to the 3.5 branch on hg.python.org/cpython like normal (you won't have to use Bitbucket and "

[issue24745] Better default font for editor

2015-08-09 Thread Larry Hastings
Larry Hastings added the comment: We're retagging 3.5.0rc1 to fix this and one other regression. Can someone step up and get this fix checked in in the next six or eight hours? You can just check in to the 3.5 branch on hg.python.org/cpython like normal (you won't have to use Bitbucket and "

[issue24836] Consistent failure in test_email on OS X Snow Leopard buildbot for Python 3.5

2015-08-09 Thread Larry Hastings
Larry Hastings added the comment: Thanks for diagnosing the problem, David! -- keywords: +buildbot priority: critical -> normal ___ Python tracker ___ ___

[issue24667] OrderedDict.popitem()/__str__() raises KeyError

2015-08-09 Thread Eric Snow
Eric Snow added the comment: > Yeah, I stopped it at 300k iterations. No problems. Glad this fix got in for rc1. Thanks for the double-check, Larry. I'd done similar testing, though not as exhaustively. :) Getting a fix in for RC1 was pretty important to me. It stretched me a bit, but I got

[issue24745] Better default font for editor

2015-08-09 Thread Ned Deily
Changes by Ned Deily : -- Removed message: http://bugs.python.org/msg248332 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue24745] Better default font for editor

2015-08-09 Thread Ned Deily
Ned Deily added the comment: Unfortunately, we didn't test this change with Tk 8.4: TkFixedFont does not exist in 8.4. This means that, unless the user has already modified the IDLE configuration to use an explicit font, IDLE linked with Tk 8.4 crashes in initialization. $ mv .idlerc/ .idler

[issue24745] Better default font for editor

2015-08-09 Thread Ned Deily
Ned Deily added the comment: Unfortunately, we didn't test this change with Tk 8.4: TkFixedFont does not exist in 8.4. This means that, unless the user has already modified the IDLE configuration to use an explicit font, IDLE linked with Tk 8.4 crashes in initialization. $ mv .idlerc/ .idler

[issue24492] using custom objects as modules: AttributeErrors new in 3.5

2015-08-09 Thread Brett Cannon
Changes by Brett Cannon : -- assignee: -> brett.cannon versions: +Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue24831] Load average in test suite too high

2015-08-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Should we perhaps create temp files in /tmp rather than in a subdir of the build directory? That would sound reasonable, I don't know why it hasn't been done like that from the start. Perhaps Ezio or Victor know. -- nosy: +ezio.melotti, haypo __

[issue11677] make test has horrendous performance on an ecryptfs

2015-08-09 Thread Stefan Krah
Stefan Krah added the comment: I don't know whether this is worth reopening, but the ecryptfs performance is still very poor on my Lenovo T400 (see #24831). For most people an extra option for choosing the tmpdir would not help, since they'd simply blame the hardware or the test suite.

[issue24832] Issue building docs with newer sphinx (default theme -> classic)

2015-08-09 Thread R. David Murray
Changes by R. David Murray : -- title: Issue building docs with newer sphix (default theme -> classic) -> Issue building docs with newer sphinx (default theme -> classic) ___ Python tracker ___

[issue24832] Issue building viewable docs with newer sphinx (default theme -> classic)

2015-08-09 Thread R. David Murray
Changes by R. David Murray : -- title: Issue building docs with newer sphinx (default theme -> classic) -> Issue building viewable docs with newer sphinx (default theme -> classic) ___ Python tracker _

[issue24836] Consistent failure in test_email on OS X Snow Leopard buildbot for Python 3.5

2015-08-09 Thread R. David Murray
R. David Murray added the comment: "quite out of date" being pre 2011k, FYI. See issue 22932. -- ___ Python tracker ___ ___ Python-bu

[issue24836] Consistent failure in test_email on OS X Snow Leopard buildbot for Python 3.5

2015-08-09 Thread R. David Murray
R. David Murray added the comment: The buildbot needs to upgrade its timezone files, they are quite out of date. -- nosy: +r.david.murray ___ Python tracker ___ _

[issue24832] Issue building docs with newer sphix (default theme -> classic)

2015-08-09 Thread R. David Murray
R. David Murray added the comment: 1.3.1. The doc build doesn't *fail*, it's just that if you try to view the built pages they don't render correctly, because there is no default.css that the pydoctheme depends on. I wonder what the web site is using for the build. Although copying default.

[issue24831] Load average in test suite too high

2015-08-09 Thread Stefan Krah
Stefan Krah added the comment: Thanks, this clears up the mystery! -- I made the mistake of choosing the eCryptfs-homedir option when installing Ubuntu, so now I have eCryptfs on top of LVM on top of full-disk encryption. So I can't create sparse files in my home directory, but I *can* create s

[issue24831] Load average in test suite too high

2015-08-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: Note some of those large file tests work on sparse files, which shouldn't be a problem if they are supported by the filesystem (which is most Linux filesystems, AFAIK). -- ___ Python tracker

[issue24835] Consistent failure in test_asyncio on Windows 7 buildbot

2015-08-09 Thread Guido van Rossum
Guido van Rossum added the comment: Actually, this seems to be Yuri's mistake -- in rev 99550a01fa6e (in the 3.4 case, I suppose it's been merged into 3.5 and 3.6) he (accidentally, I assume) reverted Victor's (not Vincent's -- sorry!) fix from issue #24763. But apparently Victor didn't copy t

[issue24835] Consistent failure in test_asyncio on Windows 7 buildbot

2015-08-09 Thread Guido van Rossum
Guido van Rossum added the comment: Probably Vincent knows? FWIW the actual failure from the log file is: FAIL: test_popen_error (test.test_asyncio.test_subprocess.SubprocessProactorTests) -- Traceback (most recent call last):

[issue24831] Load average in test suite too high

2015-08-09 Thread Stefan Krah
Stefan Krah added the comment: It's very likely an I/O issue. There are several large file tests that run even if 'largefile' is disabled. It already helps a lot if the following tests are decorated with requires_resource('largefile'): test_mmap: class LargeMmapTests() test_io: large_file_ops(

[issue24836] Consistent failure in test_email on OS X Snow Leopard buildbot for Python 3.5

2015-08-09 Thread Larry Hastings
New submission from Larry Hastings: The Snow Leopard buildbot for Python 3.5 consistently fails in the regression test for the email module. The 3.5 buildbots are here: http://buildbot.python.org/all/waterfall?category=3.5.stable Example log file: http://buildbot.python.org/all/builders/AMD6

[issue24835] Consistent failure in test_asyncio on Windows 7 buildbot

2015-08-09 Thread Larry Hastings
New submission from Larry Hastings: The Python 3.5 buildbot for Windows 7 consistently fails during test_asyncio. The buildbots are here: http://buildbot.python.org/all/waterfall?category=3.5.stable An example log file: http://buildbot.python.org/all/builders/x86%20Windows7%203.5/builds/173/

[issue23973] PEP 484 implementation

2015-08-09 Thread Larry Hastings
Changes by Larry Hastings : -- priority: release blocker -> high ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24585] Windows installer does not detect existing installs

2015-08-09 Thread Larry Hastings
Larry Hastings added the comment: Quoting from PEP 101: release blocker - Stops the release dead in its tracks. You may not make any release with any open release blocker bugs. So, yeah, I want to. -- priority: release blocker -> critical _

[issue24272] PEP 484 docs

2015-08-09 Thread Larry Hastings
Changes by Larry Hastings : -- priority: release blocker -> high ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24732] 3.5.0b3 Windows accept() on unready non-blocking socket raises PermissionError

2015-08-09 Thread Larry Hastings
Changes by Larry Hastings : -- priority: release blocker -> high ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24834] pydoc should display the expression for a builtin argument default, not its result

2015-08-09 Thread Larry Hastings
New submission from Larry Hastings: As discussed in #24824, inspect.Parameter currently only has a place to store the value of a default argument. Which means, if a complicated bit of code was used to produce that default argument, all we have left is the value, not the code that arrived at t

[issue24824] Pydoc fails with codecs

2015-08-09 Thread Larry Hastings
Larry Hastings added the comment: Fixed. Thanks, Serhiy! -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ P

[issue24667] OrderedDict.popitem()/__str__() raises KeyError

2015-08-09 Thread Larry Hastings
Larry Hastings added the comment: Yeah, I stopped it at 300k iterations. No problems. Glad this fix got in for rc1. -- ___ Python tracker ___ _

[issue24824] Pydoc fails with codecs

2015-08-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset bdd1df816f84 by Serhiy Storchaka in branch '3.5': Issue #24824: Signatures of codecs.encode() and codecs.decode() now are https://hg.python.org/cpython/rev/bdd1df816f84 New changeset ad65cad76331 by Serhiy Storchaka in branch 'default': Issue #24824

[issue24833] IDLE tabnanny check fails

2015-08-09 Thread Сергей Лисов
New submission from Сергей Лисов: idlelib.ScriptBinding line 72: tokenize.TokenError object is not iterable -- components: IDLE messages: 248314 nosy: Сергей Лисов priority: normal severity: normal status: open title: IDLE tabnanny check fails versions: Python 3.4 __

[issue23973] PEP 484 implementation

2015-08-09 Thread Guido van Rossum
Guido van Rossum added the comment: There's more, but you can reduce the priority now. -- ___ Python tracker ___ ___ Python-bugs-list

[issue24272] PEP 484 docs

2015-08-09 Thread Guido van Rossum
Guido van Rossum added the comment: Yeah, there's another diff but I didn't get to it. -- ___ Python tracker ___ ___ Python-bugs-list