Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to import a module in python that contains the following lines:

#setup.py
def isnumber(pause):
    try:
        float(pause)
        return True
    except ValueError:
        return False

I am trying to call it like this:

#program.py
import setup

but I get the following error:

    Traceback (most recent call last):
  File "C:\Users\rthompson@iingen.unam.mx\ralph\programas\python\scraper\release\program.py", line 4, in <module>
    import setup
  File "C:\Users\rthompson@iingen.unam.mx\ralph\programas\python\lib\setup.py", line 55, in <module>
    download_url="http://www.crummy.com/software/BeautifulSoup/download/"
  File "C:\Users\rthompson@iingen.unam.mx\ralph\programas\python\lib\distutils\core.py", line 140, in setup
    raise SystemExit, gen_usage(dist.script_name) + "\nerror: %s" % msg
SystemExit: usage: program.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or: program.py --help [cmd1 cmd2 ...]
   or: program.py --help-commands
   or: program.py cmd --help

error: no commands supplied

Line 55 in setup.py corresponds to return True in the code above.

Without the isnumber function the import works as expected.

Can anyone see what I'm doing wrong?

share|improve this question
setup.py is already defined in the python distribution, so changing the module name fixed the problem. I don't understand why removing the function made any difference though. – ralph346526 Apr 14 '12 at 23:48

1 Answer

up vote 2 down vote accepted

You've decided to call your module "setup.py". This is a dangerous name to pick since it's commonly used for the build/install script for Python modules, much like the one yours already has. Pick a different name.

share|improve this answer
thanks, I just spotted that. Weird that removing this little function made the import work though. – ralph346526 Apr 14 '12 at 23:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.