This post originated from an RSS feed registered with Python Buzz
by Hans Nowak.
Original Post: Hook and bait
Feed Title: Efectos Especiales
Feed URL: http://www.zephyrfalcon.org/weblog2/rss.xml
Feed Description: Ramblings, rants, musings, ideas and observations. Topics include (but are not limited to): programming (especially Python), books, games (especially CCGs and board games), astrology, design, writing, painting, etc.
Does the following Ruby code have a Python equivalent? If so, what is it? class MyClass def MyClass.method_added(name) puts "Adding Method #{name}" end def new_method # Yada yada yada end end # produces output: # Adding Method new_method (As seen here. ... [194 words]