Re: [Python-Dev] Slow down...

2018-05-08 Thread Craig Rodrigues
On Mon, May 7, 2018 at 2:24 PM Barry Warsaw <ba...@python.org> wrote: > On May 7, 2018, at 11:49, Craig Rodrigues <rodr...@crodrigues.org> wrote: > > > > Would it be reasonable to request a 10 year moratorium on making changes > to the core Python language, >

Re: [Python-Dev] Slow down...

2018-05-07 Thread Craig Rodrigues
On Sun, May 6, 2018 at 7:35 PM Nick Coghlan wrote: > > I'm inclined to agree that a Python 3.8 PEP in the spirit of the PEP 3003 > language moratorium could be a very good idea. Between matrix > multiplication, enhanced tuple unpacking, native coroutines, f-strings, and >

Re: [Python-Dev] python3.5.3: xmlrpc_net unit test fail

2018-04-12 Thread Craig Rodrigues
That unit test was written when https://buildbot.python.org was running at Buildbot version 8 which had an XMLRPC interface. Last year, buildbot.python.org was upgraded to Buildbot version 9, which dropped the XMLRPC interface in favor of a REST API. So that link no longer works. The unit

Re: [Python-Dev] New workflow change: Welcome to blurb

2017-06-23 Thread Craig Rodrigues
On Fri, Jun 23, 2017 at 8:24 PM, Larry Hastings wrote: > > > We've been talking about addressing this for years. Fixing this was one > of the goals of the new workflow. And finally, as of right now, the future > is here. Ladies and gentlemen, I present: blurb. > >

Re: [Python-Dev] Inquiry on Buildbot

2017-06-15 Thread Craig Rodrigues
Corwyn, This mailing list is related to development on Python itself, and not really oriented to support questions for buildbot. For setting up buildbot under Windows 10, I recommend that you go to https://buildbot.net and read the documentation there for installing buildbot. If you need

[Python-Dev] Format strings, Unicode, and Py2.7: need clarification

2017-05-17 Thread Craig Rodrigues
Hi, While cleaning up some code during Python 2 -> Python 3 porting, I switched some code to use str.format(), I found this behavor: Python 2.7 = a = "%s" % "hi" b = "%s" % u"hi" c = u"%s" % "hi" d = "{}".format("hi") e = "{}".format(u"hi") f = u"{}".format("hi") type(a) == str type(b)

Re: [Python-Dev] Generator objects and list comprehensions?

2017-01-29 Thread Craig Rodrigues
On Thu, Jan 26, 2017 at 4:09 AM, Ivan Levkivskyi wrote: > > > Concerning list/set/dict comprehensions, I am much more in favor of making > comprehensions simply equivalent to for-loops (more or less like you > proposed using yield from). The only reason to introduce

[Python-Dev] Generator objects and list comprehensions?

2017-01-24 Thread Craig Rodrigues
Hi, Glyph pointed this out to me here: http://twistedmatrix.com/pipermail/twisted-python/2017-January/031106.html If I do this on Python 3.6: >> [(yield 1) for x in range(10)] at 0x10cd210f8> If I understand this: https://docs.python.org/3/reference/expressions.html#list-displays then this

[Python-Dev] Porting buildbot to Python 3

2016-09-09 Thread Craig Rodrigues
Hi, It's not essential, but I thought it would be nice to port buildbot to Python 3. I've managed to submit multiple simple patches to buildbot, which were quickly accepted: https://github.com/buildbot/buildbot/pulls/rodrigc?q=is%3Apr+is%3Aclosed Now things are more slow going as the easy