
Where does Python look for libraries? - Post.Byes
Mar 27, 2006 · No. You will have to read your OS's documentation on how to make sure libiconv.so is in a location your dynamic linker will look for shared libraries.
Does FTPLIB have a 'local change directory' ? - Post.Byes
Aug 7, 2005 · Re: Does FTPLIB have a 'local change directory' ? If you want to change the working directory of a Python program, then use os.chdir () for that purpose. That's what 'lcd' does in ftp client …
How to test if object is sequence, or iterable? - Post.Byes
Jul 22, 2006 · Hi, > I'd like to know if there's a way to check if an object is a sequence, or an iterable. Something like issequence () or isiterable (). > Does something like that exist? (Something which, in …
How to call a function defined in another py file - Post.Byes
Feb 19, 2007 · But Do I need to put A.py and B.py in the same directory? if not, where does python look for A.py ? And do I need to compile A.py before I can import it to B.py?
Multiple independent Python interpreters in a C/C++ program?
Apr 11, 2008 · Duh! The sad fact is, the functions in Python's C API does not take the interpreter as an argument, so they default to the one that is currently active (i.e. the one that PyThreadState_G et () …
Considering moving from PowerBuilder to Python - Post.Byes
Sep 1, 2005 · Re: Considering moving from PowerBuilder to Python For: <snip> So, is there any data on the popularity of IDEs (most users), or is there a chart comparing the most popular versions. </snip> …
after, after_cancel and Python 2.3 - Post.Byes
Jul 18, 2005 · Previous to Python 2.3 my app has destroyed the root Tk window using root.destroy rather than the more usual root.quit. In Python 2.3 this does not work so well. In some situations (i.e., …
how to use Dispatch to open an application in win32com.client
Feb 17, 2007 · When I try like that When I try like that Excel is opening import win32com.client object = win32com.client .Dispatch ("Exce l.Application") object.Visible = 1 > But when I try my application …
Float** internal representation (Numeric module) - Post.Byes
Jul 18, 2005 · i am using python for numerical simulations and noticed that when i assign a Float variable say 0.1 python sees it like 0.1000000014901 1612. I have also checked if python really …
strange file.write () behavior on windows: $ConvertToNonresident ...
Nov 22, 2005 · while taking some rough disk performance measures on windows machines, and snooping with FileMon, i've noticed some odd behavior here's the little nul-writer i'm running: def …