Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Python: Dev

I would like an Python account

 

 

Python dev RSS feed   Index | Next | Previous | View Threaded


victor.stinner at haypocalc

Sep 27, 2008, 8:32 AM

Post #1 of 5 (204 views)
Permalink
I would like an Python account

Hi,

Would it possible to get more permissions on Python bugtracker, especially to
add keywords, close a duplicate bug, etc.?

I also would like an SVN account for Python trunk and Python 3000 branch. I
know that both branches are near "frozen" and commit are only allowed after
patch review and/or discussion (on the mailing list or the bug tracker. So I
will after the final versions (2.6 and 3.0) to commit. Or would it be
possible to have a "mentor"? Someone to ask questions about Python SVN/bug
tracker, or someone who reviews my patchs/commits.

--
Victor Stinner aka haypo
http://www.haypocalc.com/blog/
_______________________________________________
Python-Dev mailing list
Python-Dev[at]python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: http://mail.python.org/mailman/options/python-dev/list-python-dev%40lists.gossamer-threads.com


musiccomposition at gmail

Sep 27, 2008, 8:35 AM

Post #2 of 5 (198 views)
Permalink
Re: I would like an Python account [In reply to]

On Sat, Sep 27, 2008 at 10:32 AM, Victor Stinner
<victor.stinner[at]haypocalc.com> wrote:
> Hi,
>
> Would it possible to get more permissions on Python bugtracker, especially to
> add keywords, close a duplicate bug, etc.?

+1

In the time Victor has been contributing, he's found copious amounts
of bugs and contributed excellent patches for almost every one.

>
> I also would like an SVN account for Python trunk and Python 3000 branch. I
> know that both branches are near "frozen" and commit are only allowed after
> patch review and/or discussion (on the mailing list or the bug tracker. So I
> will after the final versions (2.6 and 3.0) to commit. Or would it be
> possible to have a "mentor"? Someone to ask questions about Python SVN/bug
> tracker, or someone who reviews my patchs/commits.
>
> --
> Victor Stinner aka haypo
> http://www.haypocalc.com/blog/
> _______________________________________________
> Python-Dev mailing list
> Python-Dev[at]python.org
> http://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe: http://mail.python.org/mailman/options/python-dev/musiccomposition%40gmail.com
>



--
Cheers,
Benjamin Peterson
"There's no place like 127.0.0.1."
_______________________________________________
Python-Dev mailing list
Python-Dev[at]python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: http://mail.python.org/mailman/options/python-dev/list-python-dev%40lists.gossamer-threads.com


brett at python

Sep 27, 2008, 5:35 PM

Post #3 of 5 (195 views)
Permalink
Re: I would like an Python account [In reply to]

On Sat, Sep 27, 2008 at 8:32 AM, Victor Stinner
<victor.stinner[at]haypocalc.com> wrote:
> Hi,
>
> Would it possible to get more permissions on Python bugtracker, especially to
> add keywords, close a duplicate bug, etc.?
>
> I also would like an SVN account for Python trunk and Python 3000 branch. I
> know that both branches are near "frozen" and commit are only allowed after
> patch review and/or discussion (on the mailing list or the bug tracker. So I
> will after the final versions (2.6 and 3.0) to commit. Or would it be
> possible to have a "mentor"? Someone to ask questions about Python SVN/bug
> tracker, or someone who reviews my patchs/commits.

If you were given commit privs, Victor, everyone would be your mentor
to make sure you didn't mess up. =) And python-dev or
python-committers (which you will be subscribed to if you get the
privs) are always available to ask questions.

-Brett

>
> --
> Victor Stinner aka haypo
> http://www.haypocalc.com/blog/
> _______________________________________________
> Python-Dev mailing list
> Python-Dev[at]python.org
> http://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe: http://mail.python.org/mailman/options/python-dev/brett%40python.org
>
_______________________________________________
Python-Dev mailing list
Python-Dev[at]python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: http://mail.python.org/mailman/options/python-dev/list-python-dev%40lists.gossamer-threads.com


brett at python

Sep 29, 2008, 4:23 PM

Post #4 of 5 (183 views)
Permalink
Re: I would like an Python account [In reply to]

On Sat, Sep 27, 2008 at 8:32 AM, Victor Stinner
<victor.stinner[at]haypocalc.com> wrote:
> Hi,
>
> Would it possible to get more permissions on Python bugtracker, especially to
> add keywords, close a duplicate bug, etc.?
>

Let's start off with giving you Developer permissions on the tracker
to start and then you can work up to commit privileges, Victor. What
is your username on the tracker?

-Brett
_______________________________________________
Python-Dev mailing list
Python-Dev[at]python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: http://mail.python.org/mailman/options/python-dev/list-python-dev%40lists.gossamer-threads.com


victor.stinner at haypocalc

Oct 6, 2008, 3:07 PM

Post #5 of 5 (157 views)
Permalink
Re: I would like an Python account [In reply to]

Hi,

Brett gave me permissions to edit the bug tracker, yeah!

> I also would like an SVN account

If I can't get an account, can anyone review my issues and/or commit the
attached patches? Most contributions are recent but I'm waiting for some of
these issues to be fixed before fixing other issues. Most issuses are
specific to Python3.

=== Fix bugs ===

[Py3k] line number is wrong after encoding declaration (2008-03-18)
http://bugs.python.org/issue2384
|--> one liner fix
\--> patch + testcase

compile() cannot decode Latin-1 source encodings (2008-08-17)
http://bugs.python.org/issue3574
\--> patch + multiple tests (eg. test_pep3120.py)

PyTraceBack_Print() doesn't respect # coding: xxx header (2008-09-26)
http://bugs.python.org/issue3975
|--> complex patch: rewrite _Py_DisplaySourceLine() to support unicode
|--> patch
\--> a testcase is included in the related issue: issue2384

IDLE: checksyntax() doesn't support Unicode? (2008-10-01)
http://bugs.python.org/issue4008
|--> refactoring to reuse tokenizer.detect_encoding()
\--> patch

missing newline in "Could not convert argument %s to string"
error message (2008-09-30)
http://bugs.python.org/issue4004
|--> trivial fix
\--> patch


=== Improvments ===

Support bytes for os.exec*() (2008-10-03)
http://bugs.python.org/issue4035

Support bytes for subprocess.Popen() (2008-10-03)
http://bugs.python.org/issue4036


--
Victor Stinner aka haypo
http://www.haypocalc.com/blog/
_______________________________________________
Python-Dev mailing list
Python-Dev[at]python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: http://mail.python.org/mailman/options/python-dev/list-python-dev%40lists.gossamer-threads.com

Python dev RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact lists@gossamer-threads.com
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.