<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Papanii Okai wrote:
<blockquote cite="mid002d01c5d29d$dd95d610$0138fea9@goku" type="cite">
  <meta http-equiv="Content-Type" content="text/html; ">
  <meta name="Generator" content="Microsoft Word 11 (filtered medium)">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]--><o:SmartTagType
 namespaceuri="urn:schemas-microsoft-com:office:smarttags"
 name="PersonName">
<!--[if !mso]>
<style>
st1\:*{behavior:url(#default#ieooui) }
</style>
<![endif]-->
  <style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
        {font-family:Verdana;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman";}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal;
        font-family:Arial;
        color:windowtext;}
span.EmailStyle18
        {mso-style-type:personal;
        font-family:Arial;
        color:navy;}
span.EmailStyle19
        {mso-style-type:personal-reply;
        font-family:Arial;
        color:navy;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.25in 1.0in 1.25in;}
div.Section1
        {page:Section1;}
-->
  </style></o:SmartTagType>
  <div class="Section1">
  <p class="MsoNormal"><font color="navy" face="Arial" size="2"><span
 style="font-size: 10pt; font-family: Arial; color: navy;">Hmm, I tend
to disagree with you on the fact
that in standard python os is not a built in module. Even though nt is
built in,
the os modules also built in. But what is confusing is that Anthony
posted that
he was able to import the os module like so&#8230;<o:p></o:p></span></font></p>
  </div>
</blockquote>
Define 'builtin'.<br>
(define 'sex' ;-)<br>
<br>
>From cpython's help utility..<br>
<br>
Help on built-in module sys:<br>
<br>
NAME<br>
&nbsp;&nbsp;&nbsp; sys<br>
<br>
FILE<br>
&nbsp;&nbsp;&nbsp; (built-in)<br>
<br>
Help on module os:<br>
<br>
NAME<br>
&nbsp;&nbsp;&nbsp; os - OS routines for Mac, DOS, NT, or Posix depending on what
system we're on.<br>
<br>
FILE<br>
&nbsp;&nbsp;&nbsp; /usr/lib/python2.3/os.py<br>
<br>
os.py == not builtin<br>
<br>
I often describe the "help" utility as "built in."<br>
really, it is not.. it is a standard part of python.. but it is written
as a python module, not a core part of the interpreter written in pure
C. <br>
<br>
The help facility, which I use all the time in cpython, and
semantically consider a builtin, is *not* technically a builtin. It
comes from pydoc.py. Which rocks. But is not built in.<br>
<br>
cheers <br>
<br>
Drew<br>
</body>
</html>