473,395 Members | 1,613 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Simple import question about mac osx

Hi, I have this code (learning from Core Python, Chun's book), module
named chap2.py.

class FooClass(object):
version=0.1

def __init__(self, nm='John Doe'):
self.name=nm
print 'Created a class instance for ', nm
def showname(self):
print 'Your name is', self.name
print 'My name is', self.__class__.__name__

On Windows, if I compile this and then in the python interpreter type:
>>import chap2
foo1=FooClass()
Created a class instance for John Doe
>>>
If I do the same think on my Mac OS X 10.5.2

NameError: name 'FooClass' is not defined.

I thought it was the path and did export PATH=$PATH:/mypath/
topythoncode

but it did not help.

What am I doing wrong? Thank you.
Jun 27 '08 #1
8 1103
On Apr 29, 1:16*pm, jmDesktop <needin4mat...@gmail.comwrote:
Hi, I have this code (learning from Core Python, Chun's book), module
named chap2.py.

class FooClass(object):
* * * * version=0.1

* * * * def __init__(self, nm='John Doe'):
* * * * * * * * self.name=nm
* * * * * * * * print 'Created a class instance for ', nm
* * * * def showname(self):
* * * * * * * * print 'Your name is', self.name
* * * * * * * * print 'My name is', self.__class__.__name__

On Windows, if I compile this and then in the python interpreter type:
>import chap2
foo1=FooClass()

Created a class instance for *John Doe

If I do the same think on my Mac OS X 10.5.2

NameError: name 'FooClass' is not defined.

I thought it was the path and did export PATH=$PATH:/mypath/
topythoncode

but it did not help.

What am I doing wrong? *Thank you.
forgot to say that on the mac I can do import chap2, but when I try
and instantiate I get the error above.
Jun 27 '08 #2
On Apr 29, 12:46 pm, jmDesktop <needin4mat...@gmail.comwrote:
On Apr 29, 1:16 pm, jmDesktop <needin4mat...@gmail.comwrote:
Hi, I have this code (learning from Core Python, Chun's book), module
named chap2.py.
class FooClass(object):
version=0.1
def __init__(self, nm='John Doe'):
self.name=nm
print 'Created a class instance for ', nm
def showname(self):
print 'Your name is', self.name
print 'My name is', self.__class__.__name__
On Windows, if I compile this and then in the python interpreter type:
>>import chap2
>>foo1=FooClass()
Created a class instance for John Doe
If I do the same think on my Mac OS X 10.5.2
NameError: name 'FooClass' is not defined.
I thought it was the path and did export PATH=$PATH:/mypath/
topythoncode
but it did not help.
What am I doing wrong? Thank you.

forgot to say that on the mac I can do import chap2, but when I try
and instantiate I get the error above.
It shouldn't work under Windows, either. You have to qualify the name
of the class with the name of the module, as in chap2.FooClass(). Or
you can type "from chap2 import FooClass" and then you'll be able to
simply say FooClass().
Jun 27 '08 #3
On Apr 29, 1:54*pm, s0s...@gmail.com wrote:
On Apr 29, 12:46 pm, jmDesktop <needin4mat...@gmail.comwrote:


On Apr 29, 1:16 pm, jmDesktop <needin4mat...@gmail.comwrote:
Hi, I have this code (learning from Core Python, Chun's book), module
named chap2.py.
class FooClass(object):
* * * * version=0.1
* * * * def __init__(self, nm='John Doe'):
* * * * * * * * self.name=nm
* * * * * * * * print 'Created a class instance for ',nm
* * * * def showname(self):
* * * * * * * * print 'Your name is', self.name
* * * * * * * * print 'My name is', self.__class__.__name__
On Windows, if I compile this and then in the python interpreter type:
>import chap2
>foo1=FooClass()
Created a class instance for *John Doe
If I do the same think on my Mac OS X 10.5.2
NameError: name 'FooClass' is not defined.
I thought it was the path and did export PATH=$PATH:/mypath/
topythoncode
but it did not help.
What am I doing wrong? *Thank you.
forgot to say that on the mac I can do import chap2, but when I try
and instantiate I get the error above.

It shouldn't work under Windows, either. You have to qualify the name
of the class with the name of the module, as in chap2.FooClass(). Or
you can type "from chap2 import FooClass" and then you'll be able to
simply say FooClass().- Hide quoted text -

- Show quoted text -
Thanks. That worked on mac. But it does work like I said in
Windows. Don't know why. Mr. Chun must also be using Windows because
that is the way he does it in his book.
Jun 27 '08 #4
On Tue, Apr 29, 2008 at 2:14 PM, jmDesktop <ne***********@gmail.comwrote:
Thanks. That worked on mac. But it does work like I said in
Windows. Don't know why. Mr. Chun must also be using Windows because
that is the way he does it in his book.
It shouldn't work that way on windows either. Can you tell us a
little more about what you mean when you say you "compile this" under
windows? Normally, python code doesn't need to be compiled, so I'm
wondering if you're doing something different from what we expect when
you say you compile it and then import it in the interpreter.

Are you by any chance writing code in IDLE, running it, then doing
things in the interpreter?

--
Jerry
Jun 27 '08 #5
On Apr 29, 2:37*pm, "Jerry Hill" <malaclyp...@gmail.comwrote:
On Tue, Apr 29, 2008 at 2:14 PM, jmDesktop <needin4mat...@gmail.comwrote:
*Thanks. *That worked on mac. *But it does work like I said in
*Windows. *Don't know why. *Mr. Chun must also be using Windows because
*that is the way he does it in his book.

It shouldn't work that way on windows either. *Can you tell us a
little more about what you mean when you say you "compile this" under
windows? *Normally, python code doesn't need to be compiled, so I'm
wondering if you're doing something different from what we expect when
you say you compile it and then import it in the interpreter.

Are you by any chance writing code in IDLE, running it, then doing
things in the interpreter?

*--
Jerry
On Windows I took the text file I created on mac with vi and opened it
in PythonWin. I ran it. It compiled. I run the import and call from
the python interpreter.
Jun 27 '08 #6
On Apr 29, 2:17 pm, jmDesktop <needin4mat...@gmail.comwrote:
On Apr 29, 2:37 pm, "Jerry Hill" <malaclyp...@gmail.comwrote:
On Tue, Apr 29, 2008 at 2:14 PM, jmDesktop <needin4mat...@gmail.comwrote:
Thanks. That worked on mac. But it does work like I said in
Windows. Don't know why. Mr. Chun must also be using Windows because
that is the way he does it in his book.
It shouldn't work that way on windows either. Can you tell us a
little more about what you mean when you say you "compile this" under
windows? Normally, python code doesn't need to be compiled, so I'm
wondering if you're doing something different from what we expect when
you say you compile it and then import it in the interpreter.
Are you by any chance writing code in IDLE, running it, then doing
things in the interpreter?
--
Jerry

On Windows I took the text file I created on mac with vi and opened it
in PythonWin. I ran it. It compiled. I run the import and call from
the python interpreter.
Well, Python compiles automatically any .py file that you import. Of
course this isn't machine code like the one from a C compiled
executable. It's Python's own bytecode. But normally you shouldn't
worry about that bytecode; actually, you shouldn't even be paying
attention to it. All that concerns you is that you created a module
and that you can import it. Leave the whole "compiling" concept to the
interpreter.
Jun 27 '08 #7
On Tue, Apr 29, 2008 at 3:17 PM, jmDesktop <ne***********@gmail.comwrote:
On Windows I took the text file I created on mac with vi and opened it
in PythonWin. I ran it. It compiled. I run the import and call from
the python interpreter.
You're not doing what you think you're doing. I'm not sure I know the
right way to explain it, though.

When you run your code in pythonwin, it's just like calling 'python -i
chap2.py' It runs the code in chap2.py, then gives you an interpreter
window to interact with your code. In this case, that means that
FooClass is visible with no import at all, because it was defined in
the scope of the currently running script, as opposed to being
imported.

You haven't said exactly how you're doing this on your mac, but I'm
guessing that you're opening a command line, starting up the python
interpreter, then going from there?

Can someone help me out? I'm running into a mental block on how to
explain the difference between doing this:
C:\Python25>python -i chap2.py
>>foo1=FooClass()
Created a class instance for John Doe
>>>
and doing this:
C:\Python25>python
Python 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>import chap2
foo1=chap2.FooClass()
Created a class instance for John Doe
>>>
--
Jerry
Jun 27 '08 #8
On Apr 29, 3:47*pm, "Jerry Hill" <malaclyp...@gmail.comwrote:
When you run your code in pythonwin, it's just like calling 'python -i
chap2.py' *It runs the code in chap2.py, then gives you an interpreter
window to interact with your code. *In this case, that means that
FooClass is visible with no import at all, because it was defined in
the scope of the currently running script, as opposed to being
imported.

You haven't said exactly how you're doing this on your mac, but I'm
guessing that you're opening a command line, starting up the python
interpreter, then going from there?

Can someone help me out? *I'm running into a mental block on how to
explain the difference between doing this:
C:\Python25>python -i chap2.py>>foo1=FooClass()
jmDesktop,

With what Jerry stated,

You can see what is happening under PythonWin interactive window by
doing:
>>dir()
before and after running chap2.py and see that FooClass is defined
without import, which gives a clue that PythonWin is not running the
script independant of the interactive window.

Or try adding the following to the end of your chap2.py:
print "Hello World"
somevar = 12345
And run in PythonWin and see what happens to your interactive window
and if somevar is defined.

If you close and open PythonWin and use the interactive window without
having first run chap2.py, you will find it behaves the same as the
mac.

Ivan
Jun 27 '08 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: engsolnom | last post by:
Knowing absolutely zero about benchmarks, I was interested in the posting referencing the paper by Dr. Cowell-Shah. I was curious how long Python takes just to read and display time.clock(), soI...
1
by: barnesc | last post by:
Hi! Here's a simple hashcash implementation in Python. 28 lines of actual code. Can be reduced to 17 lines for instructional purposes, if you don't want clustering, and use xrange() instead...
38
by: jrlen balane | last post by:
basically what the code does is transmit data to a hardware and then receive data that the hardware will transmit. import serial import string import time from struct import * ser =...
5
by: max(01)* | last post by:
hello. i wrote a very simple tkinter demo program that uses menus, buttons, labels, entries, frames and secondary toplevels. it is a python version of a java program made by a colleague. ...
7
by: Dustin MacDonald | last post by:
Hi everyone. This is my first time posting to this newsgroup, and although I maintain my netiquette I might've missed something specific to the newsgroup, so hopefully you can avoid flaming me...
1
by: =?ISO-8859-1?Q?Tor_Erik_S=F8nvisen?= | last post by:
Hi, A while ago I asked a question on the list about a simple eval function, capable of eval'ing simple python constructs (tuples, dicts, lists, strings, numbers etc) in a secure manner:...
5
by: sstidham | last post by:
I cannot understand for the life of me why this isn't working, but maybe someone can help me out. It should be a simple Sum. I have a table that is imported data from Excel. I need to total up...
7
by: bvdp | last post by:
Okay guys. I have the _ast based safe eval installed and working in my program. It appears to be working just fine. Thanks for the help. Now, a few more questions: 1. I see that _ast is a 2.5...
13
by: John Dann | last post by:
A Python newbie, but some basic understanding of how classes, objects etc work in eg VB.Net. However, I'm struggling a little to translate this knowledge into the Python context. I'm trying to...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.