Re: Help me understand this logging config

2011-08-30 Thread anand jeyahar
else: rv = (self.loggerClass or _loggerClass)(name) rv.manager = self self.loggerDict[name] = rv self._fixupParents(rv) finally: _releaseLock() return rv =

Re: packaging a python application

2011-08-28 Thread anand jeyahar
case. == Anand Jeyahar https://sites.google.com/site/<https://sites.google.com/site/aangjie/home/quotes> anandjeyahar == The man who is really serious, with the urge to find out what truth is, has no style at all. He lives only

python mysqltuner port

2011-08-16 Thread anand jeyahar
e this. > > Thanks and Regards, > ========== > Anand Jeyahar > https://sites.google.com/site/anandjeyahar > == > The man who is really serious, > with the urge to find out what tru

Re: Idea for pure-python templates using AST.

2011-08-16 Thread anand jeyahar
. Also i never really thought about design. Just blindly/mechanically, translated from perl to python. So criticize and let me know how i can improve this. Thanks and Regards, == Anand Jeyahar https://sites.google.com/site/anandjeyahar

Re: Tabs -vs- Spaces: Tabs should have won.

2011-07-16 Thread anand jeyahar
On Sun, Jul 17, 2011 at 08:39, Steven D'Aprano wrote: > > I have reluctantly come to do the same thing. There is a plethora of broken > tools out there that don't handle tabs well, and consequently even though > tabs for indentation are objectively better, I use spaces because it is > less worse t

Re: how to call a function for evry 10 secs

2011-07-02 Thread anand jeyahar
p://packages.python.org/APScheduler/#installing-apscheduler Thanks and Regards, ====== Anand Jeyahar https://sites.google.com/site/< https://sites.google.com/site/aangjie/home/quotes> anandjeyahar == The man who is

python overloading

2011-06-24 Thread anand jeyahar
ccess? == Anand Jeyahar http://sites.google.com/a/cbcs.ac.in/students/anand == The man who is really serious, with the urge to find out what truth is, has no style at all. He lives only in what is. ~

porting maatkit to python?

2011-06-18 Thread anand jeyahar
need to brainstorm on that too.). Thanks and Regards, == Anand Jeyahar http://sites.google.com/a/cbcs.ac.in/students/anand == The man who is really serious, with the urge to find out what truth is, has no style

Errors while using strip and remove on a variable.

2011-02-03 Thread anand jeyahar
assignment. please find the script below* a ='oe,eune,eueo, ,u' b = a.split(',') print b c = b.remove('oe') print a print c ====== Anand Jeyahar http://sites.google.com/a/cbcs.ac.in/students/anand ===

Bug in Python APscheduler module.

2010-03-18 Thread anand jeyahar
Hi , I looked everywhere and could find no mention of this(might be looking in the wrong places point me please..). the Python package Advanced python scheduler seems to have a bug with the unschedule func. When passing the function of an object it doesn't remove it from the scheduler. bu

Re: Graph library for Python

2009-12-13 Thread anand jeyahar
While I agree, I think it's going to be extremely difficult to get any > kind of buy in without a great deal of support from within python. > Any devs willing to throw the time required into this? > > Geremy Condra > -- > http://mail.python.org/mailman/listinfo/python-list > yep i am interested.

Re: Which graph library is best suited for large graphs?

2009-12-11 Thread anand jeyahar
On 12/11/2009 10:27 PM, Neal Becker wrote: Which library would you choose? Hmm i have tried python-graph and was happy with itbut the most use i did was for complete graphs of 60-65 nodes.. Also there is an experimental branch for faster implementations, which is under development

Re: Why Can't I Delete a File I Created with Win XP?

2009-12-05 Thread anand jeyahar
simple when the python program ended, the file handle created by it was still open... so windows will not allow you to delete it (the standard behaviour, when a parent process dies, with a sub-process running is to keep the child running.) try logging off and back on.it will solve the p

Render a xml graph as an image

2009-11-27 Thread anand jeyahar
hi all. Am looking to display a graph as an image.. the graph is in the format of a xml file(basically the output of a python-graph package).. Is there a package that already does it?? == Anand J http://sites.google.com/a/cbcs.ac.in/stude

Re: Any elegant way to construct the complete $k$-partite graph in Python?

2009-11-23 Thread anand jeyahar
I am not sure what you mean by complete $k$- partite graph There is the python-graph package(http://code.google.com/p/python-graph/) you might wanna check out. It does return a complete graph.. may be u can tweak it?? == Anand J http://sites.google.co