About 576 results
Open links in new tab
  1. 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.

  2. 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 …

  3. 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 …

  4. 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?

  5. 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 () …

  6. 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> …

  7. 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., …

  8. 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 …

  9. 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 …

  10. 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 …