Re: [Python-Dev] Failed issue tracker submission

2012-04-20 Thread Matt Joiner
Cheers On Apr 21, 2012 10:25 AM, "R. David Murray" wrote: > > On Sat, 21 Apr 2012 08:54:56 +0800, Matt Joiner > wrote: > > I'm getting one of these every couple of days. What's the deal? > > On Apr 21, 2012 1:03 AM, "Python tracker" < > > roundup-ad...@psf.upfronthosting.co.za> wrote: > > There

Re: [Python-Dev] Handling deprecations in the face of PEP 384

2012-04-20 Thread Nick Coghlan
On Sat, Apr 21, 2012 at 12:16 PM, Guido van Rossum wrote: > Yeah, PyImporter_GetMagicTag() looks like a public API, parallel with > PyImporter_GetMagicNumber(). Maybe it was accidentally not documented? > I'm not sure when it was introduced. Should we even deprecate it? I'd > say do the same thing

Re: [Python-Dev] Failed issue tracker submission

2012-04-20 Thread R. David Murray
On Sat, 21 Apr 2012 08:54:56 +0800, Matt Joiner wrote: > I'm getting one of these every couple of days. What's the deal? > On Apr 21, 2012 1:03 AM, "Python tracker" < > roundup-ad...@psf.upfronthosting.co.za> wrote: There is a bug in the interface between roundup and hg that is new since roundup

Re: [Python-Dev] Handling deprecations in the face of PEP 384

2012-04-20 Thread Guido van Rossum
On Fri, Apr 20, 2012 at 6:59 PM, Brett Cannon wrote: > As I clean up Python/import.c and move much of its functionality into > Lib/imp.py, I am about to run into some stuff that was not kept private to > the file. Specifically, I have PyImport_GetMagicTag() and NullImporter_Type > which I would li

[Python-Dev] Handling deprecations in the face of PEP 384

2012-04-20 Thread Brett Cannon
As I clean up Python/import.c and move much of its functionality into Lib/imp.py, I am about to run into some stuff that was not kept private to the file. Specifically, I have PyImport_GetMagicTag() and NullImporter_Type which I would like to chop out and move to Lib/imp.py. >From my reading of PE

Re: [Python-Dev] Failed issue tracker submission

2012-04-20 Thread Matt Joiner
I'm getting one of these every couple of days. What's the deal? On Apr 21, 2012 1:03 AM, "Python tracker" < roundup-ad...@psf.upfronthosting.co.za> wrote: > > An unexpected error occurred during the processing > of your message. The tracker administrator is being > notified. > > Return-Path: > X-

Re: [Python-Dev] [RFC] PEP 418: Add monotonic time, performance counter and process time functions

2012-04-20 Thread Victor Stinner
2012/4/15 Victor Stinner : >> Here is a simplified version of the first draft of the PEP 418. The >> full version can be read online. >> http://www.python.org/dev/peps/pep-0418/ > > FYI there is no time.thread_time() function. It would only be > available on Windows and Linux. It does not use secon

Re: [Python-Dev] [Python-checkins] cpython: Issue #14581: Windows users are allowed to import modules w/o taking

2012-04-20 Thread Terry Reedy
On 4/20/2012 12:53 PM, brett.cannon wrote: http://hg.python.org/cpython/rev/a32be109bd86 changeset: 76428:a32be109bd86 user:Brett Cannon date:Fri Apr 20 12:53:14 2012 -0400 summary: Issue #14581: Windows users are allowed to import modules w/o taking the file suffix's case in

[Python-Dev] Failed issue tracker submission

2012-04-20 Thread Python tracker
An unexpected error occurred during the processing of your message. The tracker administrator is being notified. Return-Path: X-Original-To: rep...@bugs.python.org Delivered-To: roundup+trac...@psf.upfronthosting.co.za Received: from mail.python.org (mail.python.org [82.94.164.166]) by ps

Re: [Python-Dev] OS X buildbots missing

2012-04-20 Thread Bill Janssen
Antoine Pitrou wrote: > For the record, we don't have any stable OS X buildbots anymore. Sigh. That's me again. We are currently installing a virtual private cloud at our workspace, and I'm seeing a lot of intermittent failures in that server room. I need to work out a way in which buildbot r

[Python-Dev] Summary of Python tracker Issues

2012-04-20 Thread Python tracker
ACTIVITY SUMMARY (2012-04-13 - 2012-04-20) Python tracker at http://bugs.python.org/ To view or respond to any of the issues listed below, click on the issue. Do NOT respond to this message. Issues counts and deltas: open3396 (+19) closed 23015 (+44) total 26411 (+63) Open issues wit

Re: [Python-Dev] importlib is now bootstrapped (and what that means)

2012-04-20 Thread Eric V. Smith
On 04/20/2012 10:59 AM, Brett Cannon wrote: > > > On Fri, Apr 20, 2012 at 09:54, Eric V. Smith > wrote: > > On 04/14/2012 02:12 PM, Brett Cannon wrote: > > My multi-year project -- started in 2006 according to my blog -- to > > rewrite import in pure Pytho

Re: [Python-Dev] importlib is now bootstrapped (and what that means)

2012-04-20 Thread Brett Cannon
On Fri, Apr 20, 2012 at 11:02, Eric Snow wrote: > On Fri, Apr 20, 2012 at 7:54 AM, Eric V. Smith wrote: > > On 04/14/2012 02:12 PM, Brett Cannon wrote: > >> My multi-year project -- started in 2006 according to my blog -- to > >> rewrite import in pure Python and then bootstrap it into CPython as

Re: [Python-Dev] importlib is now bootstrapped (and what that means)

2012-04-20 Thread Eric Snow
On Fri, Apr 20, 2012 at 7:54 AM, Eric V. Smith wrote: > On 04/14/2012 02:12 PM, Brett Cannon wrote: >> My multi-year project -- started in 2006 according to my blog -- to >> rewrite import in pure Python and then bootstrap it into CPython as >> *the* implementation of __import__() is finally over

Re: [Python-Dev] importlib is now bootstrapped (and what that means)

2012-04-20 Thread Brett Cannon
On Fri, Apr 20, 2012 at 09:54, Eric V. Smith wrote: > On 04/14/2012 02:12 PM, Brett Cannon wrote: > > My multi-year project -- started in 2006 according to my blog -- to > > rewrite import in pure Python and then bootstrap it into CPython as > > *the* implementation of __import__() is finally ove

Re: [Python-Dev] importlib is now bootstrapped (and what that means)

2012-04-20 Thread Eric V. Smith
On 04/14/2012 02:12 PM, Brett Cannon wrote: > My multi-year project -- started in 2006 according to my blog -- to > rewrite import in pure Python and then bootstrap it into CPython as > *the* implementation of __import__() is finally over (mostly)! Maybe I'm missing something, but it seems that I

Re: [Python-Dev] issue 9141, finalizers and gc module

2012-04-20 Thread Kristján Valur Jónsson
Thanks. I wonder if these semantics might not belong in cPython too, us being consenting adults and all that ☺ K From: python-dev-bounces+kristjan=ccpgames@python.org [mailto:python-dev-bounces+kristjan=ccpgames@python.org] On Behalf Of Maciej Fijalkowski Sent: 17. apríl 2012 21:29 To:

Re: [Python-Dev] issue 9141, finalizers and gc module

2012-04-20 Thread Maciej Fijalkowski
On Fri, Apr 20, 2012 at 3:33 PM, Kristján Valur Jónsson < krist...@ccpgames.com> wrote: > Thanks. I wonder if these semantics might not belong in cPython too, us > being consenting adults and all that J > I would say it's saner, but it's just my opinion :) Cheers, fijal > > > ** ** > > K

Re: [Python-Dev] issue 9141, finalizers and gc module

2012-04-20 Thread Kristján Valur Jónsson
> -Original Message- > From: python-dev-bounces+kristjan=ccpgames@python.org > [mailto:python-dev-bounces+kristjan=ccpgames@python.org] On > Behalf Of mar...@v.loewis.de > Sent: 18. apríl 2012 07:11 > To: python-dev@python.org > Subject: Re: [Python-Dev] issue 9141, finalizers and

[Python-Dev] OS X buildbots missing

2012-04-20 Thread Antoine Pitrou
Hello, For the record, we don't have any stable OS X buildbots anymore. If you want to contribute a build slave (I hear we may have Apple employees reading this list), please take a look at http://wiki.python.org/moin/BuildBot Regards Antoine. ___ P

Re: [Python-Dev] [Python-checkins] peps: Note that ImportError will no longer be raised due to a missing __init__.py

2012-04-20 Thread Eric V. Smith
On 4/19/2012 10:59 PM, Brett Cannon wrote: > It's actually an ImportWarning, not Error (or at least that's what I > meant on import-sig). If the module is eventually found then there is no > error. My error. Fixed. Eric. > > On Thu, Apr 19, 2012 at 18:56, eric.smith