Unless you have the router configured to allow connections through to your
local client, you will need the client to connect *outwards*, either to you
or to an intermediate server.
On Tue, Aug 9, 2011 at 12:10 PM, Johny wrote:
> I have a client that is a part of a local network.This client has
Is the `code` module (http://docs.python.org/library/code.html) an
insufficiently exact copy of an interpreter for you?
On Mon, Aug 8, 2011 at 4:17 PM, Francis Labarre
wrote:
> Hello everyone,
>
> I'm currently trying to port some embedded code from python 2.7 to python
> 3.2.
>
> The current co
Wrap your 3rd party library with a Python interface module, and run all
calls from foo and goo through your interface.
On Thu, Aug 4, 2011 at 2:48 PM, Mathew wrote:
> more info. I have a large 3rd party library with a function that looks
> like
> this
> void dumbfunc() {
> static int statevar=0
On Wed, Aug 3, 2011 at 9:25 AM, Steven D'Aprano <
steve+comp.lang.pyt...@pearwood.info> wrote:
> gc wrote:
>
> > Target lists using comma separation are great, but they don't work
> > very well for this task. What I want is something like
> >
> > a,b,c,d,e = *dict()
>
> a, b, c, d, e = [dict() for