This post originated from an RSS feed registered with Python Buzz
by Hans Nowak.
Original Post: Wax open issues #3: importing
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.
Currently, the preferred way of importing Wax is from wax import *. This works rather well; it allows for nice short names (Button rather than wax.Button), and doesn't pollute the importing namespace too much, because the number of objects exported is limited. ... [193 words]