Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #44287
| Newsgroups | comp.lang.python |
|---|---|
| Date | 2013-04-24 12:19 -0700 |
| References | <4d64ae22-0fb6-4675-80c9-7ecdda7ad4d2@googlegroups.com> <atqotbF92amU1@mid.individual.net> |
| Message-ID | <68daf2e4-f6f7-4511-bc33-b475326403d7@googlegroups.com> (permalink) |
| Subject | Re: Weird python behavior |
| From | Forafo San <ppv.grps@gmail.com> |
On Wednesday, April 24, 2013 3:08:27 PM UTC-4, Neil Cerutti wrote:
> On 2013-04-24, Forafo San <ppv.grps@gmail.com> wrote:
>
> > Hello All,
>
> > I'm running Python version 2.7.3_6 on a FreeBSD system. The following session in a Python interpreter throws a mysterious TypeError:
>
> >
>
> > ------------------------------------------
>
> > [ppvora@snowfall ~/xbrl]$ python
>
> > Python 2.7.3 (default, Apr 22 2013, 18:42:18)
>
> > [GCC 4.2.1 20070719 [FreeBSD]] on freebsd8
>
> > Type "help", "copyright", "credits" or "license" for more information.
>
> >>>> import glob
>
> > Traceback (most recent call last):
>
> > File "<stdin>", line 1, in <module>
>
> > File "glob.py", line 14, in <module>
>
> > myl = glob.glob('data/*.xml')
>
> > TypeError: 'module' object is not callable
>
> > ------------------------------------------
>
> > The file glob.py that the error refers to was run under another
>
> > screen session. It's a mystery why even that program threw an
>
> > error. Regardless, why should that session throw an import
>
> > error in this session? Weird. Any help is appreciated. Thanks,
>
>
>
> 'Cause Python's import statement looks in the current directory
>
> first for files to import. So you're importing your own
>
> error-riddled and mortal glob.py, rather than Python's pristine
>
> and Olympian glob.py.
>
>
>
> --
>
> Neil Cerutti
>
> "This room is an illusion and is a trap devisut by Satan. Go
>
> ahead and dauntlessly! Make rapid progres!"
>
> --Ghosts 'n Goblins
OK, lesson learned: Take care not to have module names that conflict with python's built ins. Sorry for being so obtuse.
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Weird python behavior Forafo San <ppv.grps@gmail.com> - 2013-04-24 12:06 -0700
Re: Weird python behavior Neil Cerutti <neilc@norwich.edu> - 2013-04-24 19:08 +0000
Re: Weird python behavior Forafo San <ppv.grps@gmail.com> - 2013-04-24 12:19 -0700
Re: Weird python behavior Tim Roberts <timr@probo.com> - 2013-04-25 23:04 -0700
Re: Weird python behavior rusi <rustompmody@gmail.com> - 2013-04-25 23:25 -0700
Re: Weird python behavior rusi <rustompmody@gmail.com> - 2013-04-26 00:04 -0700
csiph-web