Re: Can ay one help me on pysvn , i want to capture the log and status of checkout call .....

2013-10-09 Thread bab mis
On Wednesday, October 9, 2013 11:39:04 AM UTC+5:30, bab mis wrote: > Here is the code i am trying: 2 from pysvn import wc_status_kind 3 import pysvn 4 import os, os.path 6 import re 7 8 def createSVNClient(): 9 """Create a pysvn

Can ay one help me on pysvn , i want to capture the log and status of checkout call .....

2013-10-08 Thread bab mis
-- https://mail.python.org/mailman/listinfo/python-list

xml parsing as YML parser does does

2013-09-24 Thread bab mis
Hi , Here is an example how i do yml parsing and a proper pythonic object returns , is it possible in XML, tried lxml,dom, but there is no straight forward solution: [root@linux-source pyrun]# cat x.yml #Section for specifying test process information Test: commoninfo: buildhome

Re: I want to print entry and exit message for functions , i have bunch of such function . How can i do it in decorator.

2013-09-22 Thread bab mis
On Friday, September 20, 2013 6:29:55 PM UTC+5:30, bab mis wrote: > def fun: > > print "entry" > > . > > . > > print " On Friday, September 20, 2013 6:29:55 PM UTC+5:30, bab mis wrote: > def fun: > > print "entry&q

dynamic function parameters for **kwargs

2013-09-20 Thread bab mis
Hi , I have a function as below: def func(**kwargs): ... ... args="a='b',c='d'" i want to call func(args) so that my function call will take a var as an parameter. it fails with an error "typeError: fun() takes exactly 0 arguments (1 given)" . Is there any other way to get the

I want to print entry and exit message for functions , i have bunch of such function . How can i do it in decorator.

2013-09-20 Thread bab mis
def fun: print "entry" . . print "exit" -- https://mail.python.org/mailman/listinfo/python-list