cygwin python with Tkinter and pexpect module

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jörg Maier

    cygwin python with Tkinter and pexpect module

    Hey guys,

    i have a big problem using Tkinter and pexpect in cygwin. i try to program
    an winscp-like rsync Program for all posix Platforms (linux, macosx,
    cygwin). i got a class SslConnection with a method listDirectory that gives
    back a list of an remote directory using pexpect. this method works in
    linux, it works in cygwin-python from command-line, but invoked in an
    Tkinter-Program i got the strange Exception:
    E:\cygwin\bin\p ython2.3.exe: *** unable to remap E:\cygwin\bin\t k84.dll to
    same address as parent(0x710000 ) != 0xC20000 28 [main] python 604
    sync_with_child : child 1848(0x63C) died before initialization with status
    code 0x1
    3133 [main] python 604 sync_with_child : *** child state child loading
    dlls
    E:\cygwin\bin\p ython2.3.exe: *** unable to remap E:\cygwin\bin\t k84.dll to
    same
    address as parent(0x710000 ) != 0xC20000
    174653 [main] python 604 sync_with_child : child 1932(0x5F8) died before
    initial
    ization with status code 0x1
    203190 [main] python 604 sync_with_child : *** child state child loading
    dlls

    dont know what to do , gui-program is running under linux. Any ideas? Is
    this a bug in cygwin tcltk?

    thanks for every advice,
    joerg

    --
    Hi
    I am a signature virus.
    Please copy me to your .signature file to help me spread.
  • Jason Tishler

    #2
    Re: cygwin python with Tkinter and pexpect module

    Jörg,

    On Sat, Sep 06, 2003 at 07:16:39PM +0200, Jörg Maier wrote:[color=blue]
    > it works in cygwin-python from command-line, but invoked in an
    > Tkinter-Program i got the strange Exception:
    > E:\cygwin\bin\p ython2.3.exe: *** unable to remap E:\cygwin\bin\t k84.dll to
    > same address as parent(0x710000 ) != 0xC20000 28
    >
    > [snip]
    >
    > Is this a bug in cygwin tcltk?[/color]

    No, you have been bitten by the Cygwin fork() issue:



    The solution is to install the rebase package via Cygwin's setup.exe and
    rebase your system.

    Please read the README:



    Jason

    --
    PGP/GPG Key: http://www.tishler.net/jason/pubkey.asc or key servers
    Fingerprint: 7A73 1405 7F2B E669 C19D 8784 1AFD E4CC ECF4 8EF6

    Comment

    • Jörg Maier

      #3
      Re: cygwin python with Tkinter and pexpect module

      Jason,

      As said anywhere else as proposal to solve this problem:

      works like a charm.

      Thank you
      Jörg Maier
      [color=blue]
      > On Sat, Sep 06, 2003 at 07:16:39PM +0200, Jörg Maier wrote:[color=green]
      >> it works in cygwin-python from command-line, but invoked in an
      >> Tkinter-Program i got the strange Exception:
      >> E:\cygwin\bin\p ython2.3.exe: *** unable to remap E:\cygwin\bin\t k84.dll
      >> to same address as parent(0x710000 ) != 0xC20000 28
      >>
      >> [snip]
      >>
      >> Is this a bug in cygwin tcltk?[/color]
      >
      > No, you have been bitten by the Cygwin fork() issue:
      >
      >[/color]
      http://www.google.com/search?hl=en&i...=Google+Search[color=blue]
      >
      > The solution is to install the rebase package via Cygwin's setup.exe and
      > rebase your system.
      >
      > Please read the README:
      >
      > http://www.tishler.net/jason/softwar...ase-2.2.README
      >
      > Jason
      >[/color]

      --
      Hi
      I am a signature virus.
      Please copy me to your .signature file to help me spread.

      Comment

      Working...