Re: [Python-Dev] Freeze exception for http://bugs.python.org/issue23661 ?

2015-07-14 Thread Stephen J. Turnbull
Nick Coghlan writes: I wonder: should we start putting some of these process details for the different phases in the release PEPs themselves? Larry sent a good summary to python-committers for 3.5 a while back, but they'd be easier to find in the PEPs, and it would also make it clear

Re: [Python-Dev] Freeze exception for http://bugs.python.org/issue23661 ?

2015-07-14 Thread Nick Coghlan
On 14 July 2015 at 17:19, Stephen J. Turnbull step...@xemacs.org wrote: Nick Coghlan writes: I wonder: should we start putting some of these process details for the different phases in the release PEPs themselves? Larry sent a good summary to python-committers for 3.5 a while back, but

[Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Dima Tisnek
https://bugs.python.org/issue21238 introduces detection of missing/misspelt mock.assert_xxx() calls on getattr level in Python 3.5 Michael and Kushal are of the opinion that assret is a common typo of assert and should be supported in a sense that it also triggers AttributeError and is not

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Nick Coghlan
On 14 July 2015 at 22:53, Xavier Morel python-...@masklinn.net wrote: On 2015-07-14, at 14:39 , Nick Coghlan ncogh...@gmail.com wrote: On 14 July 2015 at 22:06, Dima Tisnek dim...@gmail.com wrote: Thus the question, how far should Python go to detect possible erroneous user behaviour?

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Xavier Morel
On 2015-07-14, at 14:39 , Nick Coghlan ncogh...@gmail.com wrote: On 14 July 2015 at 22:06, Dima Tisnek dim...@gmail.com wrote: Thus the question, how far should Python go to detect possible erroneous user behaviour? Granted it is in tests only, but why not detect assrte, sasert, saster

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Nick Coghlan
On 14 July 2015 at 22:06, Dima Tisnek dim...@gmail.com wrote: Thus the question, how far should Python go to detect possible erroneous user behaviour? Granted it is in tests only, but why not detect assrte, sasert, saster and assrat? Because r and e are right next to each other on a QWERTY

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Steven D'Aprano
On Tue, Jul 14, 2015 at 11:09:50PM +1000, Nick Coghlan wrote: Dima's right that the main defence against this kind of error is actually linters and IDEs, but detecting this particular one at runtime is harmless, so there's no particular reason *not* to do it when it's possible to construct a

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Paul Moore
On 14 July 2015 at 14:51, Florian Bruhin m...@the-compiler.org wrote: * Steven D'Aprano st...@pearwood.info [2015-07-14 23:41:56 +1000]: On Tue, Jul 14, 2015 at 02:06:14PM +0200, Dima Tisnek wrote: https://bugs.python.org/issue21238 introduces detection of missing/misspelt mock.assert_xxx()

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Chris Angelico
On Tue, Jul 14, 2015 at 11:51 PM, Florian Bruhin m...@the-compiler.org wrote: However, it also has some special methods to see if it has been called: m.assert_called_with() [...] AssertionError: Expected call: mock() Not called I suppose it's too late to change this so

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Senthil Kumaran
On Tue, Jul 14, 2015 at 5:06 AM, Dima Tisnek dim...@gmail.com wrote: https://bugs.python.org/issue21238 introduces detection of missing/misspelt mock.assert_xxx() calls on getattr level in Python 3.5 It was controversial when it got committed too. Discussions happened in python-committers

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Ron Adam
On 07/14/2015 09:41 AM, Steven D'Aprano wrote: On Tue, Jul 14, 2015 at 02:06:14PM +0200, Dima Tisnek wrote: https://bugs.python.org/issue21238 introduces detection of missing/misspelt mock.assert_xxx() calls on getattr level in Python 3.5 Michael and Kushal are of the opinion that assret is

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread MRAB
On 2015-07-14 14:09, Nick Coghlan wrote: On 14 July 2015 at 22:53, Xavier Morel python-...@masklinn.net wrote: On 2015-07-14, at 14:39 , Nick Coghlan ncogh...@gmail.com wrote: On 14 July 2015 at 22:06, Dima Tisnek dim...@gmail.com wrote: Thus the question, how far should Python go to detect

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Steven D'Aprano
On Tue, Jul 14, 2015 at 02:06:14PM +0200, Dima Tisnek wrote: https://bugs.python.org/issue21238 introduces detection of missing/misspelt mock.assert_xxx() calls on getattr level in Python 3.5 Michael and Kushal are of the opinion that assret is a common typo of assert and should be

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Barry Warsaw
On Jul 14, 2015, at 02:06 PM, Dima Tisnek wrote: Michael and Kushal are of the opinion that assret is a common typo of assert and should be supported in a sense that it also triggers AttributeError and is not silently ignored like a mocked user attribute. It's seems like a dubious special case.

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Florian Bruhin
* Steven D'Aprano st...@pearwood.info [2015-07-14 23:41:56 +1000]: On Tue, Jul 14, 2015 at 02:06:14PM +0200, Dima Tisnek wrote: https://bugs.python.org/issue21238 introduces detection of missing/misspelt mock.assert_xxx() calls on getattr level in Python 3.5 Michael and Kushal are of

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Berker Peksağ
On Tue, Jul 14, 2015 at 5:00 PM, Steven D'Aprano st...@pearwood.info wrote: On Tue, Jul 14, 2015 at 11:09:50PM +1000, Nick Coghlan wrote: Dima's right that the main defence against this kind of error is actually linters and IDEs, but detecting this particular one at runtime is harmless, so

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Ethan Furman
On 07/14/2015 07:06 AM, Paul Moore wrote: On 14 July 2015 at 14:51, Florian Bruhin wrote: On Tue, Jul 14, 2015 at 02:06:14PM +0200, Dima Tisnek wrote: https://bugs.python.org/issue21238 introduces detection of missing/misspelt mock.assert_xxx() calls on getattr level in Python 3.5 Michael

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Christie Wilson
If people do misspell it, I think they do learn not to in after it happens a few times. Unless the line silently executes and they don't notice the mistake for years :'( On Tue, Jul 14, 2015 at 9:15 AM, Ron Adam ron3...@gmail.com wrote: On 07/14/2015 09:41 AM, Steven D'Aprano wrote: On

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Ron Adam
On 07/14/2015 12:36 PM, Christie Wilson wrote: If people do misspell it, I think they do learn not to after it happens a few times. Unless the line silently executes and they don't notice the mistake for years :'( Yes, and I'm concerned that allowing it in one location may bring

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Terry Reedy
On 7/14/2015 8:39 AM, Nick Coghlan wrote: On 14 July 2015 at 22:06, Dima Tisnek dim...@gmail.com wrote: Thus the question, how far should Python go to detect possible erroneous user behaviour? Granted it is in tests only, but why not detect assrte, sasert, saster and assrat? Drawing the

Re: [Python-Dev] cpython: locals dictionary in PyRun_String

2015-07-14 Thread Brett Cannon
On Tue, Jul 14, 2015 at 11:39 AM Matthew Keeter matt.j.kee...@gmail.com wrote: The docs for PyRun_String say that both globals and locals should be dictionaries [1]. However, digging into the source [2] shows me that locals doesn’t need to be a dictionary; it just needs to implement the

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Robert Collins
On 15 July 2015 at 09:41, A.M. Kuchling a...@amk.ca wrote: On Tue, Jul 14, 2015 at 09:53:33AM -0700, Ethan Furman wrote: Part of writing tests is making sure they fail (and for the right reason) -- proper testing of the tests would reveal such a typo. And there are other failure modes for

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Ethan Furman
On 07/14/2015 02:53 PM, Robert Collins wrote: On 15 July 2015 at 09:41, A.M. Kuchling a...@amk.ca wrote: On Tue, Jul 14, 2015 at 09:53:33AM -0700, Ethan Furman wrote: Part of writing tests is making sure they fail (and for the right reason) -- proper testing of the tests would reveal such a

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Paul Moore
On 14 July 2015 at 20:27, Robert Collins robe...@robertcollins.net wrote: Well. I'd go further and just separate the APIs. mock.assert_called_with(a_mock, *args, **kwargs) mock can know how to poke under the covers (e.g. using __Mock_assert_called_with) without leaking it into the users

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Robert Collins
On 15 July 2015 at 02:06, Paul Moore p.f.mo...@gmail.com wrote: On 14 July 2015 at 14:51, Florian Bruhin m...@the-compiler.org wrote: * Steven D'Aprano st...@pearwood.info [2015-07-14 23:41:56 +1000]: ... With the patch, an AttributeError is raised if you call something starting with assert or

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread A.M. Kuchling
On Tue, Jul 14, 2015 at 09:53:33AM -0700, Ethan Furman wrote: Part of writing tests is making sure they fail (and for the right reason) -- proper testing of the tests would reveal such a typo. And there are other failure modes for writing tests that succeed but are not testing what you think.

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Robert Collins
On 15 July 2015 at 07:39, Paul Moore p.f.mo...@gmail.com wrote: On 14 July 2015 at 20:27, Robert Collins robe...@robertcollins.net wrote: In effect, this patch is reserving all attributes starting with assert or assret as actual methods of the mock object, and not mocked attributes. Yes,

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Rob Cliffe
On 14/07/2015 19:11, Terry Reedy wrote: To many, the beauty of Python is that it is relatively clean and simple, and not filled with hundreds of nitpicky exceptions and special cases. Being BDFL for a module should not be a license to add junk like this. +1. Speaking as someone who has

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Robert Collins
On 15 July 2015 at 10:05, Ethan Furman et...@stoneleaf.us wrote: On 07/14/2015 02:53 PM, Robert Collins wrote: ... I don't think unittest can protect its users from such things. It can't, but there is a sliding scale of API usability, and we should try to be up the good end of that :). I

Re: [Python-Dev] cpython: locals dictionary in PyRun_String

2015-07-14 Thread Matthew Keeter
One more data point: On the Python side, exec has documentation (https://docs.python.org/3/library/functions.html#exec) that nicely reflects what’s going on in the frame code (where globals must be a dict but locals can be any mapping object). I’ll file a bug to see what people think about

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Nick Coghlan
On 15 July 2015 at 08:58, Berker Peksağ berker.pek...@gmail.com wrote: On Wed, Jul 15, 2015 at 1:22 AM, Robert Collins For clarity, I think we should: - remove the assret check, it is I think spurious. - add a set of functions to the mock module that should be used in preference to

[Python-Dev] Why wasn't I consulted [was How far to go with user-friendliness]

2015-07-14 Thread Steven D'Aprano
On Wed, Jul 15, 2015 at 10:59:50AM +1000, Nick Coghlan wrote: Remember folks, Why wasn't I consulted?!?!?!? is one of the more obnoxious behavours we can inflict on fellow open source maintainers giving us the gift of their time and energy. Nick makes a good point, but it's more complicated

Re: [Python-Dev] Consenting adults considered beneficial [was: How far to go with user-friendliness]

2015-07-14 Thread Robert Collins
On 15 July 2015 at 15:00, Stephen J. Turnbull step...@xemacs.org wrote: Robert Collins writes: What I am doing is rejecting the argument that because we can't fix every mis-use users might make, we therefore should not fix the cases where we can fix it. This involves a value judgment,

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread MRAB
On 2015-07-14 23:05, Ethan Furman wrote: On 07/14/2015 02:53 PM, Robert Collins wrote: On 15 July 2015 at 09:41, A.M. Kuchling a...@amk.ca wrote: On Tue, Jul 14, 2015 at 09:53:33AM -0700, Ethan Furman wrote: Part of writing tests is making sure they fail (and for the right reason) -- proper

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Brett Cannon
On Tue, Jul 14, 2015 at 3:22 PM Robert Collins robe...@robertcollins.net wrote: On 15 July 2015 at 10:05, Ethan Furman et...@stoneleaf.us wrote: On 07/14/2015 02:53 PM, Robert Collins wrote: ... I don't think unittest can protect its users from such things. It can't, but there is a

Re: [Python-Dev] cpython: locals dictionary in PyRun_String

2015-07-14 Thread Nick Coghlan
On 15 July 2015 at 05:44, Matthew Keeter matt.j.kee...@gmail.com wrote: One more data point: On the Python side, exec has documentation (https://docs.python.org/3/library/functions.html#exec) that nicely reflects what’s going on in the frame code (where globals must be a dict but locals can

[Python-Dev] Consenting adults considered beneficial [was: How far to go with user-friendliness]

2015-07-14 Thread Stephen J. Turnbull
Robert Collins writes: What I am doing is rejecting the argument that because we can't fix every mis-use users might make, we therefore should not fix the cases where we can fix it. This involves a value judgment, every time a new fix is proposed, as to whether it's a mis-use that deserves

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Berker Peksağ
On Wed, Jul 15, 2015 at 1:22 AM, Robert Collins robe...@robertcollins.net wrote: On 15 July 2015 at 10:05, Ethan Furman et...@stoneleaf.us wrote: On 07/14/2015 02:53 PM, Robert Collins wrote: ... I don't think unittest can protect its users from such things. It can't, but there is a sliding

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Mark Lawrence
On 14/07/2015 23:22, Robert Collins wrote: For clarity, I think we should: - remove the assret check, it is I think spurious. - add a set of functions to the mock module that should be used in preference to Mock.assert* - mark the Mock.assert* functions as PendingDeprecation - in 3.6

Re: [Python-Dev] Consenting adults considered beneficial [was: How far to go with user-friendliness]

2015-07-14 Thread Stephen J. Turnbull
Robert Collins writes: I rejected an argument that just because some APIs are are intrinsically able to be misused, that we should not try to write better APIs. Well, at least to me what you wrote was inconsistent with that explanation of what you wanted to express: What I am doing is

Re: [Python-Dev] Why wasn't I consulted [was How far to go with user-friendliness]

2015-07-14 Thread Nick Coghlan
On 15 July 2015 at 12:07, Steven D'Aprano st...@pearwood.info wrote: On Wed, Jul 15, 2015 at 10:59:50AM +1000, Nick Coghlan wrote: Remember folks, Why wasn't I consulted?!?!?!? is one of the more obnoxious behavours we can inflict on fellow open source maintainers giving us the gift of their

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Robert Collins
On 15 July 2015 at 12:59, Nick Coghlan ncogh...@gmail.com wrote: There is zero urgency here, so nothing needs to change for 3.5. Robert's plan is a fine one to propose for 3.6 (and the PyPI mock backport). Right - the bad API goes back to the very beginning. I'm not planning on writing the

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Georg Brandl
On 07/14/2015 02:39 PM, Nick Coghlan wrote: Drawing the line at only rejecting assert_ *would* have been a reasonable alternative design choice, but it isn't the one Kushal and Michael made, and there isn't a compelling argument in favour of changing the implementation of the new guard to

[Python-Dev] cpython: locals dictionary in PyRun_String

2015-07-14 Thread Matthew Keeter
The docs for PyRun_String say that both globals and locals should be dictionaries [1]. However, digging into the source [2] shows me that locals doesn’t need to be a dictionary; it just needs to implement the mapping protocol. Is it a bad idea to rely on this fact? (Context: I’m plugging a

Re: [Python-Dev] Cross compiling C-python 2.7.10 maintenance release for ARM on 64 bit x86_64 systems.

2015-07-14 Thread R. David Murray
On Tue, 14 Jul 2015 10:22:05 -, Andrew Robinson andr...@r3dsolutions.com wrote: I'm trying to cross compile C-python 2.7.10 for an embedded system. (Eg: a Kobo reader). But there appears to be some bugs that do not allow the latest maintenance release of Python to correctly cross

[Python-Dev] Cross compiling C-python 2.7.10 maintenance release for ARM on 64 bit x86_64 systems.

2015-07-14 Thread Andrew Robinson
Hi. I'm trying to cross compile C-python 2.7.10 for an embedded system. (Eg: a Kobo reader). But there appears to be some bugs that do not allow the latest maintenance release of Python to correctly cross compile on an x86-64 build system, for a 32 bit arm system. I have researched the