Re: [Python-Dev] Why does PEP 7/8 explicitly suggest 2 spaces after a period?

2016-05-20 Thread Philip Jenvey
So is line breaks before or after operators . -- Philip Jenvey > On May 20, 2016, at 9:46 AM, Guido van Rossum <gu...@python.org> wrote: > > ALso, in case anyone reading this didn't realize, this is a classic > internet debate that has been going on for decades (just not on &

Re: [Python-Dev] File system path PEP, 3rd draft

2016-05-13 Thread Philip Jenvey
> On May 13, 2016, at 11:37 AM, Brett Cannon wrote: > > Biggest changes since the second draft: > Resolve __fspath__() from the type, not the instance (for Guido) > if (PyObject_HasAttrString(path->ob_type, "__fspath__")) { > return

Re: [Python-Dev] Bytes path

2016-04-20 Thread Philip Jenvey
://bugs.python.org/issue26754 <http://bugs.python.org/issue26754> http://bugs.python.org/issue26800 <http://bugs.python.org/issue26800> -- Philip Jenvey > On Apr 14, 2016, at 3:29 AM, Victor Stinner <victor.stin...@gmail.com> wrote: > > IMHO it's more a side effect of the imple

Re: [Python-Dev] speed.python.org (was: 2.7 is here until 2020, please don't call it a waste.)

2015-06-24 Thread Philip Jenvey
from both sides to merge those repositories? PyPy’s is a more extensive suite but it does not fully support Python 3 yet. It makes sense to merge them. -- Philip Jenvey ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman

[Python-Dev] PyPy3 2.4.0 released

2014-10-21 Thread Philip Jenvey
= PyPy3 2.4 - Snow White = We're pleased to announce PyPy3 2.4, which contains significant performance enhancements and bug fixes. You can download the PyPy3 2.4.0 release here:

[Python-Dev] PyPy3 2.3.1 released

2014-06-20 Thread Philip Jenvey
://doc.pypy.org/en/latest/getting-started.html#installing-using-virtualenv .. _`virtualenv`: http://www.virtualenv.org/en/latest/ .. _`installation schemes`: http://doc.pypy.org/en/latest/getting-started.html#installing-pypy Cheers, the PyPy team -- Philip Jenvey

Re: [Python-Dev] Python3 complexity

2014-01-10 Thread Philip Jenvey
the Unicode Consortium existed. Really? Because PEP 383 doesn't support and discourages the use of some of these codecs as a locale. -- Philip Jenvey ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev

Re: [Python-Dev] Is pygettext.py deprecated?

2013-11-11 Thread Philip Jenvey
popular Python templating languages. It's also easier to setup against Python projects using distutils/setuptools. -- Philip Jenvey ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https

Re: [Python-Dev] PEP 428: Pathlib - stat caching

2013-09-17 Thread Philip Jenvey
() Why not move these methods from Path to a rich stat obj and not cache stat results at all? It's easy enough for users to cache them themselves and much more explicit. -- Philip Jenvey ___ Python-Dev mailing list Python-Dev@python.org https

[Python-Dev] PyPy3 2.1 beta 1 released

2013-07-30 Thread Philip Jenvey
PyPy3 2.1 beta 1 We're pleased to announce the first beta of the upcoming 2.1 release of PyPy3. This is the first release of PyPy which targets Python 3 (3.2.3) compatibility. We would like to thank all of the people who donated_ to the `py3k proposal`_ for

Re: [Python-Dev] PEP 435 - requesting pronouncement

2013-05-05 Thread Philip Jenvey
is rare anyway. Certainly much rarer than declarations of auto-numbered enums. -- Philip Jenvey ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options

Re: [Python-Dev] PEP 435 -- Adding an Enum type to the Python standard library

2013-04-30 Thread Philip Jenvey
that belong outside them. So does the convenience API outlined in the PEP, so this is just an alternative to that. -- Philip Jenvey ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http

Re: [Python-Dev] Enumeration item arguments?

2013-04-29 Thread Philip Jenvey
= 1, Internet Control Message IGMP = 2, Internet Group Management @property def value(self): return self._value[0] @property def description(self): return self._value[1] -- Philip Jenvey ___ Python-Dev mailing list Python-Dev@python.org

Re: [Python-Dev] PEP 435 -- Adding an Enum type to the Python standard library

2013-04-27 Thread Philip Jenvey
://bugs.python.org/msg111722 -- Philip Jenvey ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] PEP 435 -- Adding an Enum type to the Python standard library

2013-04-23 Thread Philip Jenvey
ICMP = 1, Internet Control Message IGMP = 2, Internet Group Management @property def value(self): return self._value[0] @property def description(self): return self._value[1] -- Philip Jenvey ___ Python-Dev mailing list Python-Dev

Re: [Python-Dev] A new webpage promoting Compiler technology for CPython

2013-02-15 Thread Philip Jenvey
being included. -- Philip Jenvey ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] cpython: utilize yield from

2012-10-01 Thread Philip Jenvey
On Oct 1, 2012, at 2:32 PM, Serhiy Storchaka wrote: On 01.10.12 22:54, philip.jenvey wrote: http://hg.python.org/cpython/rev/fb90e2ff95b7 changeset: 79378:fb90e2ff95b7 user:Philip Jenvey pjen...@underboss.org date:Mon Oct 01 12:53:43 2012 -0700 summary: utilize yield

Re: [Python-Dev] making the import machinery explicit

2012-04-17 Thread Philip Jenvey
of NullImporter): no finder is available for an entry on sys.path when None is found. Isn't it more explicit to cache the NullImporter instead of None? -- Philip Jenvey ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo

Re: [Python-Dev] folding cElementTree behind ElementTree in 3.3

2012-02-15 Thread Philip Jenvey
', DeprecationWarning)) -- Philip Jenvey ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] PyPy 1.7 - widening the sweet spot

2011-11-23 Thread Philip Jenvey
On Nov 22, 2011, at 12:43 PM, Amaury Forgeot d'Arc wrote: 2011/11/22 Philip Jenvey pjen...@underboss.org One reason to target 3.2 for now is it's not a moving target. There's overhead involved in managing modifications to the pure python standard lib needed for PyPy, tracking 3.3 changes

Re: [Python-Dev] PyPy 1.7 - widening the sweet spot

2011-11-22 Thread Philip Jenvey
in managing modifications to the pure python standard lib needed for PyPy, tracking 3.3 changes as they happen as well exacerbates this. The plans to split the standard lib into its own repo separate from core CPython will of course help alternative implementations here. -- Philip Jenvey

Re: [Python-Dev] Hosting the Jython hg repo

2011-04-14 Thread Philip Jenvey
accepts to do it it's fine. One option would be to grant a Jython developer control to account management - preferably a single person, who would then also approve/apply changes to the hooks. +1. Let's go ahead with this option then. Can someone please grant me said access? -- Philip

[Python-Dev] Hosting the Jython hg repo

2011-04-10 Thread Philip Jenvey
of reciprocating commit rights to Jython back to cpython committers. -- Philip Jenvey ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail

Re: [Python-Dev] Hosting the Jython hg repo

2011-04-10 Thread Philip Jenvey
then also approve/apply changes to the hooks. That could be me. If this would mean creating an account for me on python.org so I could handle the majority of the maintenance instead of Georg Antoine, I'd be up for that. -- Philip Jenvey ___ Python-Dev

Re: [Python-Dev] Are PyCFunctions supposed to invisibly consume self when used as a method?

2010-06-12 Thread Philip Jenvey
functions in pure Python whereas user code might be expecting the PYCFunction behavior. Jython's had a couple cases of this incompatibility reported. It's a rare occurrence but it's very mysterious to the user when it happens. -- Philip Jenvey

Re: [Python-Dev] Proposal for virtualenv functionality in Python

2010-02-19 Thread Philip Jenvey
that simply adds --prefix and forwards all the arguments to the real python executable. Or am I missing something? It couldn't be a shell script, as they wouldn't work as shebang line interpreters for other python scripts. -- Philip Jenvey ___ Python

Re: [Python-Dev] Unladen cPickle speedups in 2.7 3.1

2010-01-09 Thread Philip Jenvey
documented their upstream patches here: http://code.google.com/p/unladen-swallow/wiki/UpstreamPatches -- Philip Jenvey ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org

Re: [Python-Dev] FINAL PROPULSION OPEN SOURCE ENGINE VARIANT FORTHE F-35 JOINT STRIKE FIGHTER

2009-06-12 Thread Philip Jenvey
of nicely reporting them and submitting patches on SourceForge ;-) FYI Python (Jython) is already used in production of the F-35. There was a talk @ PyCon '08 about it: http://us.pycon.org/2008/conference/schedule/event/27/ http://www.youtube.com/watch?v=zgE55z_RNgQ -- Philip Jenvey