[issue6210] Exception Chaining missing method for suppressing context

2012-02-07 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda :


--
nosy:  -draghuram

___
Python tracker 
<http://bugs.python.org/issue6210>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9857] SkipTest in tearDown is reported an as an error

2010-09-15 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda :


--
nosy: +draghuram

___
Python tracker 
<http://bugs.python.org/issue9857>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9514] platform.linux_distribution() under Ubuntu returns ('debian', 'squeeze/sid', '')

2010-08-04 Thread Raghuram Devarakonda

Raghuram Devarakonda  added the comment:

Please check issue1322 for past discussion on similar topic (usability of 
lsb_release in platform.py).

--
nosy: +draghuram

___
Python tracker 
<http://bugs.python.org/issue9514>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue6210] Exception Chaining missing method for suppressing context

2010-08-03 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda :


--
nosy: +draghuram

___
Python tracker 
<http://bugs.python.org/issue6210>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue8828] Atomic function to rename a file

2010-05-27 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda :


--
nosy: +draghuram

___
Python tracker 
<http://bugs.python.org/issue8828>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue8751] Threading and KeyError: 51

2010-05-18 Thread Raghuram Devarakonda

Raghuram Devarakonda  added the comment:

As suggested, please post in c.l.py or other forums. Open a bug here only if 
you are sure that there is a bug in Python.

--
nosy: +draghuram
resolution:  -> invalid
status: open -> closed

___
Python tracker 
<http://bugs.python.org/issue8751>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue8692] Use divide-and-conquer for faster factorials

2010-05-12 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda :


--
nosy: +draghuram

___
Python tracker 
<http://bugs.python.org/issue8692>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1294] Management of KeyboardInterrupt in cmd.py

2009-11-13 Thread Raghuram Devarakonda

Raghuram Devarakonda  added the comment:

> I am not sure I understand: currently Ctrl-C generates a
> KeyboardInterrupt, which can be caught by the  application which can
> then decide how to proceed (in particular it  can start another command
> loop or exit with a meaningful message or anything else).
>
> This patch would suppress KeyboardInterrupt and thus interfere with such
> applications. Or am I missing something?

I checked the patch and tested with python from trunk. You are right
that the patch catches KeyboardInterrupt thus interfering with any
applications that expect it to be propagated upstream.  Perhaps, this
can be made conditional so that we can keep both behaviors.

But CTRL-D processing doesn't suffer from any backwards compatible
issues and that part of the patch should be able to be applied safely.

--

___
Python tracker 
<http://bugs.python.org/issue1294>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1294] Management of KeyboardInterrupt in cmd.py

2009-11-11 Thread Raghuram Devarakonda

Raghuram Devarakonda  added the comment:

On Sun, Nov 8, 2009 at 8:22 PM, Ilya Sandler  wrote:

> Is not this patch backward incompatible?
>
> E.g any cmd-based application which expects Ctrl-C to propagate to the
> top level will be broken by this patch.

But currently, CTRL-C terminates the session instead of propagating
upstream. The only way it would do so is if do_KeyboardInterrupt() is
implemented in which case, the behaviour would remain same even with
the patch.

--

___
Python tracker 
<http://bugs.python.org/issue1294>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7245] better Ctrl-C support in pdb (program can be resumed)

2009-10-31 Thread Raghuram Devarakonda

Raghuram Devarakonda  added the comment:

It is better for this functionality to be added in "Cmd" module as that
will benefit all users of that module. Please see bug #1294 which has a
patch for this purpose. It would be nice if you can test with that patch
and see if pdb works as you expected.

--
nosy: +draghuram

___
Python tracker 
<http://bugs.python.org/issue7245>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue6701] Make custom xmlrpc extension easier

2009-08-14 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda :


--
nosy: +draghuram

___
Python tracker 
<http://bugs.python.org/issue6701>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue6275] let unittest.assertRaises() return the exception object caught

2009-07-29 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda :


--
nosy: +draghuram

___
Python tracker 
<http://bugs.python.org/issue6275>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue974019] ConfigParser non-string defaults broken with .getboolean()

2009-04-22 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda :


--
resolution:  -> wont fix
status: open -> closed

___
Python tracker 
<http://bugs.python.org/issue974019>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5409] ConfigParser get methods broken

2009-03-03 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda :


--
resolution:  -> invalid
status: open -> closed

___
Python tracker 
<http://bugs.python.org/issue5409>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5374] optparse special usage tokens conflict with formatting characters

2009-02-26 Thread Raghuram Devarakonda

Raghuram Devarakonda  added the comment:

On Thu, Feb 26, 2009 at 9:32 AM, Andy Buckley  wrote:

> Dang, why didn't I think of that? Cheers. Might be worth mentioning that
> in the documentation, in case there are other people with my particular
> brand of tunnel vision ;)

I am not entirely sure if it is worth changing the documentation but
it wouldn't hurt, I suppose. It will be helpful if you can submit a
simple doc patch for that purpose.

___
Python tracker 
<http://bugs.python.org/issue5374>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5374] optparse special usage tokens conflict with formatting characters

2009-02-26 Thread Raghuram Devarakonda

Raghuram Devarakonda  added the comment:

Please use the fix suggested by Tim Gordon.

--
nosy: +draghuram
resolution:  -> works for me
status: open -> closed

___
Python tracker 
<http://bugs.python.org/issue5374>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2204] document ConfigParser behaviour when a file has same section multiple times

2009-02-10 Thread Raghuram Devarakonda

Raghuram Devarakonda  added the comment:

> The attached patch is a proof of concept for throwing an exception.

If it is not too much of a problem, can you upload the patch to
http://codereview.appspot.com? Reviewing there is simpler. Also, you
will have to include some test cases in the patch.

> As discussed on the mailing list [1], it has some shortcomings that
> should be addressed before it is merged.

I think that the builder interface already has correct behaviour in
that duplicate sections are not allowed. So you can have
'unique_sections' control only parser interface and can set it to
False by default (to be compatible with current behaviour).

> [1]: http://mail.python.org/pipermail/python-dev/2009-

Correct discussion link:
http://mail.python.org/pipermail/python-dev/2009-February/085838.html

___
Python tracker 
<http://bugs.python.org/issue2204>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2047] shutil.destinsrc returns wrong result when source path matches beginning of destination path

2009-01-29 Thread Raghuram Devarakonda

Raghuram Devarakonda  added the comment:

On Thu, Jan 29, 2009 at 1:32 PM, Antoine Pitrou  wrote:
> Sorry, I had only given a quick look at Benjamin's patch, not yours.
> Actually Benjamin's patch does not seem to address anything, which makes
> things more confusing.

True. It is all a bit unfortunate for such a small change to get
bogged down like this. I specifically asked about the patch proposed
by Christian and implemented by Benjamin (in msg63168) but no one
bothered to reply. Please look at my patch and see if you can apply
it. In fact, I even submitted it when Guido asked for some patches to
test codereview tool initially. It is at
http://codereview.appspot.com/841/show.

___
Python tracker 
<http://bugs.python.org/issue2047>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2047] shutil.destinsrc returns wrong result when source path matches beginning of destination path

2009-01-29 Thread Raghuram Devarakonda

Raghuram Devarakonda  added the comment:

On Wed, Jan 28, 2009 at 5:13 PM, Antoine Pitrou  wrote:

shutil_destinsrc.patch has both the code chage and two test cases.
Actually test cases are much longer than the code itself :-).

___
Python tracker 
<http://bugs.python.org/issue2047>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2047] shutil.destinsrc returns wrong result when source path matches beginning of destination path

2009-01-27 Thread Raghuram Devarakonda

Raghuram Devarakonda  added the comment:

On Tue, Jan 27, 2009 at 12:35 PM, James Cooper  wrote:
> This may not be a show-stopping bug, but it's non-obvious, annoying,
> unnecessary, and very easy to fix.  Any chance of getting this into a
> release?

Considering that the issue is idle for such a long time, I am not sure
if any one will check this in. Your best bet may be to bring this up
on python-dev. As you say, the problem is obvious and the fix is
simple.

___
Python tracker 
<http://bugs.python.org/issue2047>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue4320] optparse: "1 2 3" should be seen as one string

2008-11-14 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

I had the same need in my small command line client (that uses Cmd.Cmd)
and I solved it by using shlex.split() instead of regular string split.
I haven't looked at optparse code lately and perhaps it can do the same.

--
nosy: +draghuram

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue4320>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue4297] Add error_log attribute to optparse.OptionParser

2008-11-11 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda <[EMAIL PROTECTED]>:


--
nosy: +draghuram

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue4297>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1210] imaplib does not run under Python 3

2008-11-04 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda <[EMAIL PROTECTED]>:


--
nosy:  -draghuram

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1210>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3187] os.listdir can return byte strings

2008-09-29 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda <[EMAIL PROTECTED]>:


--
nosy: +draghuram

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3187>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3937] platform.dist(): detect Linux distribution version in a robust, standard way

2008-09-23 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

Please take a look at #1322 for some discussion on this topic.

--
nosy: +draghuram

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3937>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3728] imaplib module broken by str to unicode conversion

2008-08-29 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

This seems to be duplicate of #1210.

--
nosy: +draghuram
resolution:  -> duplicate
status: open -> closed

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3728>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3580] failures in test_os

2008-08-18 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

On Mon, Aug 18, 2008 at 10:28 AM, Antoine Pitrou <[EMAIL PROTECTED]> wrote:
> Since the purpose of the test is, allegedly, to "Verify that an open
> file can be stat'ed", it may be simpler to create and open a file
> ourselves (test_support.TESTFN being an obvious candidate :-)), and

No. Any open file does not do. There has been a discussion on
python-dev some time back about replacing the use of pagefile.sys with
a temporarily created open file. But the problem that spawned this
test case does not occur with just any open file.

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3580>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3580] failures in test_os

2008-08-18 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

> The other failure is trivial, I've fixed it in r65780.

#1709112 has been reported earlier in relation to pagefile.sys. Your
patch addresses at least part of the problem there. I wonder if that
issue can be closed.

--
nosy: +draghuram

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3580>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1545] shutil fails when copying to NTFS in Linux

2008-08-11 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

WindowsError issue is now fixed in r65644.

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1545>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3134] shutil references undefined WindowsError symbol

2008-08-11 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

> Patch works under Windows.

Thanks. Can you please commit the change?

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3134>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2549] shutil: NameError (WindowsError) when moving from ext3 to fat32 under linux

2008-06-23 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

This is duplicate of 3134. I posted a patch there.

--
resolution:  -> duplicate
status: open -> closed

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2549>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1545] shutil fails when copying to NTFS in Linux

2008-06-20 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

I have submitted a patch (http://codereview.appspot.com/2384) for
WindowsError issue as it is reported in two other bugs #3134 and #2549.
I have only tested on Linux so I would appreciate if some one who have
access to windows can test it as well. Considering that the fix is
simple and more bugs are being opened for the same problem, it is
worthwhile to check this in quickly.

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1545>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3134] shutil references undefined WindowsError symbol

2008-06-19 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

I submitted a patch at http://codereview.appspot.com/2384. Please take a
look.

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3134>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2571] cmd.py always uses raw_input, even when another stdin is specified

2008-06-19 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

On Wed, Jun 18, 2008 at 9:28 PM, Richard King <[EMAIL PROTECTED]> wrote:
>
> Richard King <[EMAIL PROTECTED]> added the comment:
>
> There were some other things I wanted too so I just made my own cmd.py.

Yes. Lot of people seem to use their own versions of cmd.py. Recently,
I also implemented another class on top of cmd.Cmd in order to have
more useful functionality. I have seen at least three implementations
('cmdln' on googlecode, 'CommandLoop' and 'cmd2' on pypi). I hope that
after some heavy use, I will be able to submit some patches to the
standard library module. There is already one in #1294.

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2571>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3134] shutil references undefined WindowsError symbol

2008-06-18 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

This is same as #2549 which also reported the same problem. In fact, the
problem was originally found in #1545. As I said there, the proposed
patch has a very small problem. Can you please take a look?

--
nosy: +draghuram

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3134>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2571] cmd.py always uses raw_input, even when another stdin is specified

2008-06-18 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

Richard, I see the following very clearly mentioned in the doc:

"If you want a given stdin to be used, make sure to set the instance’s
use_rawinput attribute to False, otherwise stdin will be ignored."

Even though this seems like unnecessary, at least it is documented. If
you want to push for automatically setting use_rawinput when 'stdin' is
not None, you will need to submit a patch and convince some core
developer to agree with you.

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2571>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3115] os.listdir randomly fails on occasions when it shouldn't

2008-06-16 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

Isn't this similar to #1608818?

--
nosy: +draghuram

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3115>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3058] Let SimpleXMLRPCServer pass client_address to called functions.

2008-06-09 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda <[EMAIL PROTECTED]>:


--
nosy: +draghuram

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3058>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3053] test_shutil fails under AIX

2008-06-06 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

Is there any particular reason to assert for failed function at all?
This test seems to be for 'onerror' function and the test would be valid
even without asserting whether the failed API is 'remove' or 'listdir'
etc. Isn't it?

--
nosy: +draghuram

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3053>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3002] shutil.copyfile blocks indefinitely on named pipes

2008-05-29 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

I am not sure if copyfile() should be trying to copy named pipes (or any
other special files for that matter). The best way is perhaps to check
and skip such files.

--
nosy: +draghuram

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3002>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2760] Recent change in socket.py breaks urllib2

2008-05-05 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

Similar problem has been reported in #2632 as well.

--
nosy: +draghuram

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2760>
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2632] performance problem in socket._fileobject.read

2008-05-05 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

Similar problem is reported in #2760.

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2632>
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2711] error: (10035, 'The socket operation could not complete without blocking')

2008-04-28 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

Duplicate of #2710.

--
nosy: +draghuram
resolution:  -> duplicate
status: open -> closed

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2711>
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2663] shutil.copytree glob-style filtering [patch]

2008-04-28 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

I forgot to add that the example provided in rst doc is incorrect. The
copytree() in that example should be given destination path as well. In
addition, the docstring for copytree mentions "which is a directory
list". "directory list" is a bit vague and should ideally be replaced by
something like "list of elements" (which is what appears in the doc) or
"list of entries".

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2663>
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2663] shutil.copytree glob-style filtering [patch]

2008-04-28 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

The patch looks good to me.

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2663>
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2663] shutil.copytree glob-style filtering [patch]

2008-04-28 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

My update with email failed so I am just copying my response here:

>  while working on the patch to add the same feature in rmtree, I realized
>  this is a non sense since the root folder itself is removed at the end
>  of the function when all its content is removed.

Indeed. Sorry about that.

>  So, unless we change this behavior, which I doubt it is a good idea, it
>  won't be possible.

I agree. But in general, it would be nice to separate file list
generation and the actual operation. Something similar to shell where
it resolves the pattern while the actual command itself cares only
about the files passed to it. This is not necessarily a comment on
this patch which I am hoping I can check it out soon.

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2663>
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2663] shutil.copytree glob-style filtering [patch]

2008-04-22 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

Is there any reason for rmtree also to not support this exclusion
feature? Both copytree and rmtree explicitly iterate over list of names
and as I see it, this exclusion is really about which names to ignore.
Already, copytree and rmtree have inconsistencies (rmtree has 'onerror'
while 'copytree' doesn't) and it would be nice to not add more.

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2663>
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2047] shutil.destinsrc returns wrong result when source path matches beginning of destination path

2008-04-22 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

Can some one with commit privileges check in shutil_destinsrc.patch? The
change is rather simple and there is no point for issues such as these
to remain open for long time.

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2047>
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1489] test_socket_ssl hangs on Windows (deadlock)

2008-04-22 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda <[EMAIL PROTECTED]>:


--
title: test_socket_ssl hanhs on Windows (deadlock) -> test_socket_ssl hangs on 
Windows (deadlock)

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1489>
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2667] Remove multiple inheritance in Python 3000

2008-04-22 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

I don't think this request is appropriate for bug tracker. If you are
really keen, bring it up on perhaps python-ideas mailing list.

--
nosy: +draghuram
resolution:  -> invalid
status: open -> closed

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2667>
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2663] shutil.copytree glob-style filtering [patch]

2008-04-21 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda <[EMAIL PROTECTED]>:


--
nosy: +draghuram

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2663>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2632] socket._fileobject.read(n) should ignore _rbufsize when 1

2008-04-14 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

The relevant python-dev thread is
http://mail.python.org/pipermail/python-dev/2008-April/078613.html

--
nosy: +draghuram

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2632>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2571] cmd.py always uses raw_input, even when another stdin is specified

2008-04-07 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

The doc for "cmd" at
http://docs.python.org/dev/library/cmd.html#module-cmd says:

"Instances of Cmd subclasses have some public instance variables:
.
.
.
Cmd.use_rawinput¶
A flag, defaulting to true. If true, cmdloop() uses raw_input() to
display a prompt and read the next command; if false, sys.stdout.write()
and sys.stdin.readline() are used. (This means that by importing
readline, on systems that support it, the interpreter will automatically
support Emacs-like line editing and command-history keystrokes.)"

So it is for the user to modify use_rawinput as required. This flag has
been introduced in #405952. BTW, this one and other similar variables
are at class level and are not instance variables. Isn't it?

--
nosy: +draghuram

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2571>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2549] shutil: NameError (WindowsError) when moving from ext3 to fat32 under linux

2008-04-04 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

This problem has been noticed as part of issue1545 and a patch with the
fix has been proposed but has a small problem with it. Do you want to
take a look?

--
nosy: +draghuram

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2549>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2047] shutil.destinsrc returns wrong result when source path matches beginning of destination path

2008-03-21 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda <[EMAIL PROTECTED]>:


--
keywords: +easy

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2047>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1577] shutil.move() does not use os.rename() if dst is a directory

2008-03-21 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda <[EMAIL PROTECTED]>:


--
resolution: accepted -> fixed
status: open -> closed

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1577>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2283] lambda *a, **k: a, k # does not work

2008-03-13 Thread Raghuram Devarakonda

Raghuram Devarakonda <[EMAIL PROTECTED]> added the comment:

I am closing it as invalid.

--
nosy: +draghuram
resolution:  -> invalid
status: open -> closed

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2283>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1524825] ConfigParser: accept leading whitespace on options+comments

2008-03-06 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda:


--
nosy: +draghuram

_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1524825>
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1714] ConfigParser.py do not allow leading (and trailing) space in values.

2008-03-06 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda:


--
nosy: +draghuram

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1714>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2047] shutil.destinsrc returns wrong result when source path matches beginning of destination path

2008-03-01 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

>  The function is just a one liner in 2.6 and it's used in one place only.
>  Let's move it into move().

Isn't it clear from this issue's original description that there is a
bug in the one liner that needs fix ?

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2047>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2047] shutil.destinsrc returns wrong result when source path matches beginning of destination path

2008-02-29 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

>  Should it get a _ prepended to it then?

Probably yes.

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2047>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2047] shutil.destinsrc returns wrong result when source path matches beginning of destination path

2008-02-29 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

On Fri, Feb 29, 2008 at 9:21 PM, Joseph Armbruster
<[EMAIL PROTECTED]> wrote:
>  On another note, I just completed building the docs in windows and
>  shutil.destinsrc does not appear to be documented.  I did notice this
>  description for shutil:

destinsrc() is an internal function used only in shutil.move().

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2047>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2204] document ConfigParser behaviour when a file has same section multiple times

2008-02-29 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

>  Should this 'undesirable' behavior be documented? My thoughts are

Document should definitely reflect the code whether the behaviour is
desirable or not.

>  a) All the key,value pairs in the named section be retrived from entire
>  file. Just appending the dict.

Isn't this what is happening now unless I am not following you?

>  Otherwise,
>  b) An Exception can be thrown if it encounters an invalid Configfile
>  having multiple same sections which can cause problem, but I cannot
>  readily think of one such case.

I have no problem with throwing an exception in case of duplicate
sections but I don't think that can be done by default (it may break
some programs).

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2204>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2204] document ConfigParser behaviour when a file has same section multiple times

2008-02-28 Thread Raghuram Devarakonda

New submission from Raghuram Devarakonda:

ConfigParser.add_section() raises DuplicateSectionError if add_section()
is called with the name of a section that is already present. How ever,
if a section is present multiple times in a file, readfp() does not
raise any exception. Instead, the sections are "combined" with values in
latter sections overwriting previous values (if any). This should be
documented in readfp(). I tried few alternatives but the sentences don't
look right. I am creating the issue in the hope that some one else may
give it a try while I continue to come up with a doc patch.

--
assignee: georg.brandl
components: Documentation
messages: 63109
nosy: draghuram, georg.brandl
severity: normal
status: open
title: document ConfigParser behaviour when a file has same section multiple 
times
type: behavior
versions: Python 2.6

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2204>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2192] error with backslash as last character in raw string

2008-02-25 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

This is as per the design. Please see
http://www.python.org/doc/faq/general/#why-can-t-raw-strings-r-strings-end-with-a-backslash.

--
nosy: +draghuram
resolution:  -> invalid
status: open -> closed

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2192>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue456086] virtual IO for embedding Py in server

2008-02-11 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

I am closing it as there is no activity for long time. Please reopen if
required.

--
nosy: +draghuram
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue456086>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2047] shutil.destinsrc returns wrong result when source path matches beginning of destination path

2008-02-11 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

> Raghuram, you've been too fast ;-)

Sorry about that :-) and thanks for validating the test cases.

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2047>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue549764] Uninstall target in makefile

2008-02-08 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

no activity and no patch.

--
nosy: +draghuram
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue549764>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2047] shutil.destinsrc returns wrong result when source path matches beginning of destination path

2008-02-08 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

Christian, do you mind testing on windows? I tested only on Linux.

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2047>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2047] shutil.destinsrc returns wrong result when source path matches beginning of destination path

2008-02-08 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

I added couple of test cases. Please see the patch shutil_destinsrc.patch.

Added file: http://bugs.python.org/file9393/shutil_destinsrc.patch

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2047>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2047] shutil.destinsrc returns wrong result when source path matches beginning of destination path

2008-02-08 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

Can you write a test to catch this problem? The patch should preferably
be against the latest svn source.

--
nosy: +draghuram

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2047>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue725149] SRE bugs with capturing groups in negative assertions

2008-02-07 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

looks to have been fixed.

--
nosy: +draghuram
resolution:  -> fixed
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue725149>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2021] Turn NamedTemporaryFile into a context manager

2008-02-06 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda:


--
keywords: +patch

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2021>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue419153] Issue warning when LC_NUMERIC is not "C"

2008-02-06 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

Closing as there is no activity for long time.

--
nosy: +draghuram
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue419153>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue619222] os.listdir-alike that includes file type

2008-02-05 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

No activity for long time.

--
nosy: +draghuram
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue619222>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1090076] Defaults in ConfigParser.get overrides section values

2008-02-04 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

The patch "cfgdoc.diff" contains changes to rst as well as to the doc
string. Can some one please review it?

Added file: http://bugs.python.org/file9354/cfgdoc.diff

_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1090076>
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue540952] Memory Usage Reporting

2008-02-04 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

This has evolved into a general discussion without any specific
direction (which is more suitable for a mailing list than in a bug
tracker). So I am closing it. Please do reopen if required.

I don't know what resolution to select for this one. None of the
available choices seem to apply.

--
nosy: +draghuram
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue540952>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1090076] Defaults in ConfigParser.get overrides section values

2008-02-01 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda:


--
components: +Documentation -Library (Lib)
versions: +Python 2.6 -Python 2.3

_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1090076>
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1090076] Defaults in ConfigParser.get overrides section values

2008-02-01 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

The following two statements from ConfigParser document clearly mention
that what is passed in 'vars' are defaults and defaults come into
picture only when values are not explicitly set.

"Default values can be specified by passing them into the ConfigParser
constructor as a dictionary. Additional defaults may be passed into the
get() method which will override all others."

"ConfigParser.get(section, option[, raw[, vars]])¶
Get an option value for the named section. All the '%'
interpolations are expanded in the return values, based on the defaults
passed into the constructor, as well as the options vars provided,
unless the raw argument is true."

If we can not change the behaviour (as it will break existing code), we
should explicitly document this fact. Basically, get() looks for options
in the following order:

1) in 'vars'.
2) in the actual section
3) in default section

--
nosy: +draghuram

_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1090076>
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue974019] ConfigParser non-string defaults broken with .getboolean()

2008-02-01 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

With the latest python, get() itself fails with boolean value default. I
tried with this script:

-
from ConfigParser import ConfigParser
cfg = ConfigParser({'var':True})
cfg.add_section('test_section')
print cfg.getboolean('test_section', 'var')
-

and it results in

-
Traceback (most recent call last):
  File "t.py", line 4, in 
print cfg.getboolean('test_section', 'var')
  File "/localhome/raghu/localwork/cpython/trunk/Lib/ConfigParser.py",
line 349, in getboolean
v = self.get(section, option)
  File "/localhome/raghu/localwork/cpython/trunk/Lib/ConfigParser.py",
line 545, in get
return self._interpolate(section, option, value, d)
  File "/localhome/raghu/localwork/cpython/trunk/Lib/ConfigParser.py",
line 585, in _interpolate
if "%(" in value:
TypeError: argument of type 'bool' is not iterable
-

I doubt if it is worth fixing the OP's issue considering that
_interpolate is assuming the value to be string. Can I close this issue?

--
components: +Library (Lib) -None
versions: +Python 2.6


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue974019>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1049816] test_socket PORT conflict with boa-constructor

2008-02-01 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

test_socket.py now seems to use dynamically computed port number so
there should not be any port number conflicts.

--
nosy: +draghuram
resolution:  -> out of date
status: open -> closed

_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1049816>
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue974019] ConfigParser non-string defaults broken with .getboolean()

2008-02-01 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda:


--
nosy: +draghuram


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue974019>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue800929] Module-specific PDFs

2008-01-31 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

Yet another one.

--
nosy: +draghuram, georg.brandl


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue800929>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue800926] Python version numbers in headers/footers PDF documentation

2008-01-31 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

Not really sure if this applies to new docs. I will let Georg close this
one :-).

--
nosy: +draghuram, georg.brandl


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue800926>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue799088] distutils ignored LDFLAGS in Makefile

2008-01-31 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda:


--
resolution:  -> wont fix
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue799088>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue799104] CPPFLAGS should not be aded to ldshard command

2008-01-30 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

For the record, the latest Lib/distutils/sysconfig.py still seems to
have this behaviour (please correct me if I am wrong). I am closing this
as there is no activity for quite some time.

--
nosy: +draghuram
resolution:  -> wont fix
status: open -> closed
type:  -> behavior
versions: +Python 2.6


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue799104>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue756914] SSL support for poplib

2008-01-30 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

no activity. Please do reopen if the offer still stands.

--
nosy: +draghuram
resolution:  -> out of date
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue756914>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue600362] relocate cgi.parse_qs() into urlparse

2008-01-30 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

I know that Senthil has been working on consolidating url related
functionalities so I am adding him to the list.

--
nosy: +draghuram, orsenthil
versions: +Python 2.6, Python 3.0


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue600362>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue606733] Docstring formatter.

2008-01-29 Thread Raghuram Devarakonda

Changes by Raghuram Devarakonda:


--
resolution:  -> rejected
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue606733>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1577] shutil.move() does not use os.rename() if dst is a directory

2008-01-29 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

We are back to square 1 :-). Your patch incorporates Facundo's
suggestion which is 'rename(src_file, dst_dir/`basename src_file`). It
is not clear to me from rereading the earlier comments whether Guido
rejected this approach or not. I would personally prefer this approach.
If this change is not going to be considered, we will be left with
making a doc change; something to the effect:

"If the destination is a file and is on same file system as that of
src, then simply use rename."

An additional doc change will be needed to correct the statement "If dst
is a directory, OSError will be raised". As you found out, this is not
entirely true on Linux and perhaps on other versions of unix. 

I don't think any other changes are needed. I did not go through the
test cases in the patch but I think we can certainly use some of them
even if no code change is done.

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1577>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue780024] Makefile.pre.in ignores CPPFLAGS from environment

2008-01-29 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

The latest Makefile.pre.in does have this change (@CPPFLAGS@ is appended).

--
nosy: +draghuram
resolution:  -> fixed
status: open -> closed
versions: +Python 2.6 -Python 2.3


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue780024>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue814996] OSF/1 test_dbm segfaults

2008-01-28 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

I am assuming that this can be closed considering that there is no
activity for a long time.

--
nosy: +draghuram
resolution:  -> out of date
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue814996>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1577] shutil.move() does not use os.rename() if dst is a directory

2008-01-28 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

Hi Antoine,

You stated the following in a previous comment:

"Right now, shutil.move(src_dir, dst_dir) replaces dst_dir with src_dir
if dst_dir is empty, but moves src_dir inside dst_dir otherwise."

But my test shows differently. If dst_dir doesn't exist or if it is
empty, dst_dir is simply replaced with src_dir. If dst_dir is non-empty,
shutil.move() raises error. In which case did you find src_dir being
moved to dst_dir?

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1577>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue784231] getopt_long_only()

2008-01-25 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

I see no chance of this being accepted now that optparse is entrenched.
Please do reopen if some one thinks otherwise.

--
nosy: +draghuram
resolution:  -> rejected
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue784231>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue784443] test_repr failure on m68k-linux

2008-01-25 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

Please reopen if the problem can be reproduced in 2.5 or later.

--
resolution:  -> out of date
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue784443>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue835338] [2.3.2] test_socket failure on IRIX 6.5

2008-01-24 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

Please reopen if the problem can be reproduced with latest version.

--
nosy: +draghuram
resolution:  -> works for me
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue835338>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue817920] select behavior undefined for empty lists

2008-01-24 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

no activity. closing it.

--
nosy: +draghuram
resolution:  -> wont fix
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue817920>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue784443] test_repr failure on m68k-linux

2008-01-24 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

Considering that there is no activity for long time, is it worthwhile to
keep this open?

--
nosy: +draghuram


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue784443>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue618633] sys.execpthook not used in threads

2008-01-23 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

This is a duplicate of a more recently opened #1230540.

--
nosy: +draghuram
resolution:  -> duplicate
status: open -> closed


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue618633>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1577] shutil.move() does not use os.rename() if dst is a directory

2008-01-23 Thread Raghuram Devarakonda

Raghuram Devarakonda added the comment:

> Does this mean we should preserve this behaviour for shutil.move() as well?

I don't think so. The key is to remember that shutil.move() is
os.rename() with some additional benefits (as stated by Guido in an
earlier comment). Also, changing the behaviour of shutil.move() may
break backwards compatibility.

I thought this issue has reached a conclusion that all one need is a
doc update. Some thing like (copying from my previous comment):

""If the destination is a fiile and is on same filesystem as that of
src, then simply use rename."

In fact, even the issue's component has been changed to "Documentation".

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1577>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



  1   2   >