[Python-Dev] Summary of Tracker Issues

2007-06-16 Thread Tracker

ACTIVITY SUMMARY (06/10/07 - 06/17/07)
Tracker at http://bugs.python.org/

To view or respond to any of the issues listed below, click on the issue 
number.  Do NOT respond to this message.


 1645 open ( +0) /  8584 closed ( +0) / 10229 total ( +0)

Average duration of open issues: 829 days.
Median duration of open issues: 777 days.

Open Issues Breakdown
   open  1645 ( +0)
pending 0 ( +0)

___
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] Outcome of Georg's documentation work?

2007-06-16 Thread A.M. Kuchling
On Sat, Jun 16, 2007 at 11:31:56AM +0200, Georg Brandl wrote:
> That would be really nice. Should I subscribe to the pydotorg list?

Yes, please, and e-mail me an SSH key.

Such work should be done on ximinez for security reasons, I think, 
even though the machine is fairly heavily loaded.

--amk
___
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] Requesting commit access to python sandbox. Cleanup urllib2 - Summer of Code 2007 Project

2007-06-16 Thread O.R.Senthil Kumaran
* "Martin v. L?wis" <[EMAIL PROTECTED]> [2007-06-16 12:10:45]:

> > I am a student participant of Google Summer of Code 2007 and I am
> > working on the cleanup task of urllib2, with Skip as my mentor.
> 
> I have now given you write access. Please constrain all checkins
> to the sandbox; checkins elsewhere should be approved by your
> mentor.

Thanks Martin. I shall abide by the guidelines.

-- 
O.R.Senthil Kumaran
http://uthcode.sarovar.org
___
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] Requesting commit access to python sandbox. Cleanup urllib2 - Summer of Code 2007 Project

2007-06-16 Thread Martin v. Löwis
> I am a student participant of Google Summer of Code 2007 and I am
> working on the cleanup task of urllib2, with Skip as my mentor.
> I would like to request for a commit access to the Python Sandbox for
> implementing the changes as part of the project. I have attached by
> SSH Public keys.
> preferred name : senthil.kumaran

I have now given you write access. Please constrain all checkins
to the sandbox; checkins elsewhere should be approved by your
mentor.

Regards,
Martin
___
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] Outcome of Georg's documentation work?

2007-06-16 Thread Georg Brandl
A.M. Kuchling schrieb:
> What was the outcome of the discussion of Georg Brandl's reworked
> documentation ("The docs, reloaded")?  Was any decision made on
> whether to go with reST, or on what changes need to made before that's
> possible?  Did Fred Drake say what he thought?

For my part, I'm still working on it and want to integrate a few of the
planned interactive features now.

> Georg, do you want access to python.org to host a version of the docs
> there?

That would be really nice. Should I subscribe to the pydotorg list?

Georg


-- 
Thus spake the Lord: Thou shalt indent with four spaces. No more, no less.
Four shall be the number of spaces thou shalt indent, and the number of thy
indenting shall be four. Eight shalt thou not indent, nor either indent thou
two, excepting that thou then proceed to four. Tabs are right out.

___
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] [RFC] urlparse - parse query facility

2007-06-16 Thread O.R.Senthil Kumaran
* Fred L. Drake, Jr. <[EMAIL PROTECTED]> [2007-06-16 01:06:59]:

>  > * Coding question: Without retyping the bunch of code again in the
>  > BaseResult, would is the possible to call parse_qs/parse_qsl function on
>  > self.query and provide the result? Basically, what would be a good of
>  > doing it.
> 
> That's what I was thinking.  Just add something like this to BaseResult 
> (untested):
> 
> def parsedQuery(self, keep_blank_values=False, strict_parsing=False):
> return parse_qs(
> self.query,
> keep_blank_values=keep_blank_values,
> strict_parsing=strict_parsing)
> 
> def parsedQueryList(self, keep_blank_values=False, strict_parsing=False):
> return parse_qsl(
> self.query,
> keep_blank_values=keep_blank_values,
> strict_parsing=strict_parsing)

Thanks Fred. That really helped. :-)

I have updated the urlparse.py module, cgi.py and also included in the tests
in the test_urlparse.py to test this new functionality. 
test run passed for all the valid queries, except for these:

#("=", {}),
#("=&=", {}),
#("=;=", {}),

The testcases are basically from test_cgi.py module and there is comment on
validity of these 3 tests for query values. 

Pending stuff is updating the documentation.

I maintained all the files temporarily at:

http://cvs.sarovar.org/cgi-bin/cvsweb.cgi/python/?cvsroot=uthcode

I had requested a commit access to Summer of Code branch in my previous mail,
but I guess it not been noticed yet. I shall update the files later or
send in as patches for application.


> Whether there's a real win with this is unclear.  I generally prefer having 
> an 
> object that represents the URL and lets me get what I want from it, rather 
> than having to pass the bits around to separate parsing functions.  The 

I agree. This is really convenient when one comes to know about it.

Thanks,
Senthil

-- 
O.R.Senthil Kumaran
http://uthcode.sarovar.org
___
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