So when you type this into an interactive session:
>>> import sha
>>> help(sha)
You get an error?
--
http://mail.python.org/mailman/listinfo/python-list
import os
print os.path.basename(filepath)
--
http://mail.python.org/mailman/listinfo/python-list
I just assumed he had heard of me and knew better than to take my
advice. :-)
--
http://mail.python.org/mailman/listinfo/python-list
Benji York wrote:
> mclaugb wrote:
> > Is there a decent debugger to use with IDL? I have briefly about "PDB" but
> > this looks pretty limited in features and difficult to use.
>
> You might like Winpdb:
> http://www.digitalpeers.com/pythondebugger/
> --
> Benji York
Not Found
The requested UR
Benji York wrote:
> [EMAIL PROTECTED] wrote:
> > Benji York wrote:
> >>You might like Winpdb:
> >>http://www.digitalpeers.com/pythondebugger/
> >
> > Not Found
> >
> > The requested URL /pythondebugger/-- was not found on this server.
> > Apache/2.0.52 (Red Hat) Server at www.digitalpeers.com Port
I have an app that I wrote to move images from a camera/portable media
to an archive directory. It is using TKInter and PIL to display each
jpg as it is transfered. I can email you the code if you would like.
--
http://mail.python.org/mailman/listinfo/python-list
I'm having issues with gmail at work but I will try to email it from
home tonight.
--
http://mail.python.org/mailman/listinfo/python-list
import sys
sys.exit
--
http://mail.python.org/mailman/listinfo/python-list
>>> thisisastring = "1"
>>> thisisanint = 1
>>> type(thisisastring)
>>> type(thisisanint)
>>> thisisastring = int(thisisastring)
>>> thisisanint = str(thisisanint)
>>> type(thisisastring)
>>> type(thisisanint)
>>>
--
http://mail.python.org/mailman/listinfo/python-list
>>> import os.path
>>> help(os.path)
Help on module ntpath:
NAME
ntpath - Common pathname manipulations, WindowsNT/95 version.
FILE
c:\data\utils\python24\lib\ntpath.py
DESCRIPTION
Instead of importing this module directly, import os and refer to
this
module as os.path.
FUNCTION
10 matches
Mail list logo