def foo ():
x = re.compile('^abc')
foo2(x)
def foo2(x):
How do I get x to return '^abc'
? within the following code
logging.info('x is ' + x.???)
def foo ():
x = re.compile('^abc')
foo2(x)
def foo2(x):
How do I get x to return '^abc'
? within the following code
logging.info('x is ' + x.???)