Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #73033
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.fsmpi.rwth-aachen.de!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed3a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <rosuav@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.032 |
| X-Spam-Evidence | '*H*': 0.94; '*S*': 0.00; 'output': 0.05; 'socket': 0.07; 'cc:addr:python-list': 0.11; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'wrote:': 0.18; 'examples': 0.20; 'cc:addr:python.org': 0.22; 'library,': 0.24; 'fairly': 0.24; 'mon,': 0.24; 'cc:2**0': 0.24; "i've": 0.25; 'possibly': 0.26; 'header:In-Reply-To:1': 0.27; 'idea': 0.28; 'michael': 0.29; 'message-id:@mail.gmail.com': 0.30; 'code': 0.31; 'that.': 0.31; '(my': 0.31; 'could': 0.34; 'received:google.com': 0.35; 'should': 0.36; 'application': 0.37; 'turn': 0.37; 'pm,': 0.38; 'that,': 0.38; 'how': 0.40; 'easy': 0.60; 'results.': 0.60; 'break': 0.61; 'welle': 0.84; 'to:none': 0.92 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=umocb7+j4g74GQcNkMlYqFddB/EfC9HwxcAjwQwAqq8=; b=Ega8i8HHt7KsYCUZHg/rXZ5Oy3hIG/XTdOsMkXw9Cgofmp8cKmTZSlAAU+oPzS7mNM m0kS1EVbI2v7Jgiwue2AT3napQZy2ZXxN3l3Qksh3Ta2ogGVq5Txi6ZHmnN1xEvttluD aEeZEXuQcWNViDyFQYzaLiutMfnzh4xtyM94pb6NEWaGGDSyUx/H2ucRZf09m4LHdq3W CHrIfE6Kg+CtWIEOTKz0np53A/LEDiqgW8Cgh8xvzLDqwEeoFF73P45y/DH4X6wvqSlJ hoOaViBc153wJHUAfUc/bdzrhxq/EG49x6MehKxglYF0ABk6s+RzkmfeAagjK5nzBgWZ cH+w== |
| MIME-Version | 1.0 |
| X-Received | by 10.52.244.84 with SMTP id xe20mr21809575vdc.3.1402325445420; Mon, 09 Jun 2014 07:50:45 -0700 (PDT) |
| In-Reply-To | <7klg6bxlt8.ln2@news.c0t0d0s0.de> |
| References | <a55g6bxjlj.ln2@news.c0t0d0s0.de> <mailman.10908.1402314536.18130.python-list@python.org> <7klg6bxlt8.ln2@news.c0t0d0s0.de> |
| Date | Tue, 10 Jun 2014 00:50:45 +1000 |
| Subject | Re: Interfacing Fortran applications |
| From | Chris Angelico <rosuav@gmail.com> |
| Cc | "python-list@python.org" <python-list@python.org> |
| Content-Type | text/plain; charset=UTF-8 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.10915.1402325777.18130.python-list@python.org> (permalink) |
| Lines | 13 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1402325777 news.xs4all.nl 2970 [2001:888:2000:d::a6]:42683 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:73033 |
Show key headers only | View raw
On Mon, Jun 9, 2014 at 10:24 PM, Michael Welle <mwe012008@gmx.net> wrote: > I can change everything until after the > initialisation of the application and the output of the results. That, > hopefully, will not break something. Okay. So you should be able to go for the socket approach, fairly easily. Or possibly you could turn the whole thing into a C-callable library, although I've no idea how easy it is to do that. (My experience with FORTRAN - yes, not Fortran, the code was that old - goes as far as eyeballing some of IBM's DB2 examples and translating them into REXX. I've never actually used a Fortran compiler.) ChrisA
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Interfacing Fortran applications Michael Welle <mwe012008@gmx.net> - 2014-06-09 09:43 +0200
Re: Interfacing Fortran applications Chris Angelico <rosuav@gmail.com> - 2014-06-09 19:36 +1000
Re: Interfacing Fortran applications Michael Welle <mwe012008@gmx.net> - 2014-06-09 12:30 +0200
Re: Interfacing Fortran applications Sturla Molden <sturla.molden@gmail.com> - 2014-06-09 11:48 +0000
Re: Interfacing Fortran applications Michael Welle <mwe012008@gmx.net> - 2014-06-09 14:24 +0200
Re: Interfacing Fortran applications Chris Angelico <rosuav@gmail.com> - 2014-06-10 00:50 +1000
Re: Interfacing Fortran applications Michael Welle <mwe012008@gmx.net> - 2014-06-09 17:14 +0200
Re: Interfacing Fortran applications Sturla Molden <sturla.molden@gmail.com> - 2014-06-09 22:57 +0200
Re: Interfacing Fortran applications Michael Welle <mwe012008@gmx.net> - 2014-06-10 10:55 +0200
Re: Interfacing Fortran applications alister <alister.nospam.ware@ntlworld.com> - 2014-06-10 10:36 +0000
csiph-web