python Programming Glossary: inspect.getsource
Code for Greatest Common Divisor in Python http://stackoverflow.com/questions/11175131/code-for-greatest-common-divisor-in-python import gcd gcd 20 8 4 Source from the inspect module print inspect.getsource gcd def gcd a b Calculate the Greatest Common Divisor of a and..
Preprocessing function text in runtime bofore compilation http://stackoverflow.com/questions/12238511/preprocessing-function-text-in-runtime-bofore-compilation for line in lines def remove_1 f import inspect source inspect.getsource f new_source comment_1 source with open 'temp.py' 'w' as file.. 2' f remove_1 f #If decorator @remove is used above f inspect.getsource includes @remove inside the code. f I used inspect.getsourcelines.. includes @remove inside the code. f I used inspect.getsourcelines to retrieve function f code. Then I made some text processing..
Can Python print a function definition? http://stackoverflow.com/questions/1562759/can-python-print-a-function-definition question If you are importing the function you can use inspect.getsource import re import inspect print inspect.getsource re.compile.. can use inspect.getsource import re import inspect print inspect.getsource re.compile def compile pattern flags 0 Compile a regular expression..
print the code which defined a lambda function http://stackoverflow.com/questions/334851/print-the-code-which-defined-a-lambda-function the following from lamtest import myfunc import inspect inspect.getsource myfunc the result 'myfunc lambda x x 2 n' share improve this..
How do you get Python to write down the code of a function it has in memory? http://stackoverflow.com/questions/399991/how-do-you-get-python-to-write-down-the-code-of-a-function-it-has-in-memory more b.py import a import inspect a.foo 89 print inspect.getsource a.foo vinko@mithril python b.py 89 def foo a print a share..
How would you determine where each property and method of a Python class is defined? http://stackoverflow.com/questions/484890/how-would-you-determine-where-each-property-and-method-of-a-python-class-is-defi code.co_filename # Or import inspect print inspect.getsource meth inspect.getfile meth But consider def some_method self..
Python reflection - Can I use this to get the source code of a method definition http://stackoverflow.com/questions/777371/python-reflection-can-i-use-this-to-get-the-source-code-of-a-method-definition the inspect module import inspect import mymodule print inspect.getsource mymodule.sayHello The function must be defined in a module that..
Finding the source code for built-in Python functions? [duplicate] http://stackoverflow.com/questions/8608587/finding-the-source-code-for-built-in-python-functions this is not so straighforward since inspect.getfile and inspect.getsource will return a type error stating that the object is built in...
|