Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #3586

Re: Pickling over a socket

Path csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!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.122
X-Spam-Level *
X-Spam-Evidence '*H*': 0.76; '*S*': 0.00; 'wed,': 0.04; 'am,': 0.14; 'wrote:': 0.14; 'op.': 0.16; 'worked,': 0.16; 'header:In-Reply- To:1': 0.22; "didn't": 0.25; 'instead': 0.26; 'message- id:@mail.gmail.com': 0.28; 'probably': 0.30; '5:30': 0.31; 'to:addr:python-list': 0.32; 'using': 0.34; 'change': 0.34; 'received:209.85': 0.37; '20,': 0.38; 'apr': 0.38; 'received:google.com': 0.38; 'it!': 0.39; 'to:addr:python.org': 0.39; 'received:209': 0.39; 'would': 0.40; 'header:Received:5': 0.40; 'played': 0.60; '2011': 0.62; 'below.': 0.64; 'received:209.85.210.174': 0.84; 'received:mail- iy0-f174.google.com': 0.84; 'subject:over': 0.84
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type:content-transfer-encoding; bh=29wmhzSC0zYSAEg5wgz5J5cZKLzHbTLxip5RS//UIMQ=; b=ODEuWkQeZWdVSBfcFMfWQeR9j+EzaJOK8ljIkAZmt75kRb51lqsUUuTesLXsFSndEs qrvUg4qg4ZSdJhteG4laaCPNnfm4cW//fRfngcnFGD2A7YVWYZmbycUOR1cwvQlgu8jh vg9V9kqhRLHPNTa1ECECM4Cv5i73BBsR/0gug=
DomainKey-Signature a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=TLdGooOBqMmrDwKDAIPicG4D3Mn0yfZIYzYRfk4vlcf+4NiDlDqTsrdCRvQpBIYAzV +ncmDNhrhoaTKtQk1QYO+0DrxmmzmrU+70TZSewGPPFr0RYtp4pikG232Aq5K/0AqWuH 4QfxzMYBtHFl+0+3zoQZji0yMG6fmlYG80G1A=
MIME-Version 1.0
In-Reply-To <BANLkTi=1d4k6QfscN_F_fPddznfQUuY6wA@mail.gmail.com>
References <61890800-f81a-4a1e-8905-a0237407f016@a21g2000prj.googlegroups.com> <BANLkTi=1d4k6QfscN_F_fPddznfQUuY6wA@mail.gmail.com>
Date Wed, 20 Apr 2011 05:37:47 +1000
Subject Re: Pickling over a socket
From Chris Angelico <rosuav@gmail.com>
To python-list@python.org
Content-Type text/plain; charset=ISO-8859-1
Content-Transfer-Encoding quoted-printable
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.12
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <http://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 <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.582.1303241870.9059.python-list@python.org> (permalink)
Lines 8
NNTP-Posting-Host 82.94.164.166
X-Trace 1303241870 news.xs4all.nl 81481 [::ffff:82.94.164.166]:47253
X-Complaints-To abuse@xs4all.nl
Xref x330-a1.tempe.blueboxinc.net comp.lang.python:3586

Show key headers only | View raw


On Wed, Apr 20, 2011 at 5:30 AM, Dan Stromberg <drsalists@gmail.com> wrote:
> I played around with it until something worked, and ended up with the
> below.  The most significant change was probably using sc.makefile
> instead of s.makefile in the server...

Oh! I didn't notice that in the OP. Yep, that would do it!

ChrisA

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Pickling over a socket Roger Alexander <rtalexander@mac.com> - 2011-04-19 11:53 -0700
  Re: Pickling over a socket Chris Rebert <clp2@rebertia.com> - 2011-04-19 12:21 -0700
  Re: Pickling over a socket Chris Angelico <rosuav@gmail.com> - 2011-04-20 05:29 +1000
  Re: Pickling over a socket Dan Stromberg <drsalists@gmail.com> - 2011-04-19 12:30 -0700
  Re: Pickling over a socket Chris Angelico <rosuav@gmail.com> - 2011-04-20 05:37 +1000
    Re: Pickling over a socket Roger Alexander <rtalexander@mac.com> - 2011-04-19 15:27 -0700
      Re: Pickling over a socket Jean-Paul Calderone <calderone.jeanpaul@gmail.com> - 2011-04-19 19:28 -0700
        Re: Pickling over a socket Bastian Ballmann <balle@chaostal.de> - 2011-04-20 08:44 +0200
        Re: Pickling over a socket Chris Angelico <rosuav@gmail.com> - 2011-04-20 16:59 +1000
        Re: Pickling over a socket Bastian Ballmann <balle@chaostal.de> - 2011-04-20 09:34 +0200
          Re: Pickling over a socket Thomas Rachel <nutznetz-0c1b6768-bfa9-48d5-a470-7603bd3aa915@spamschutz.glglgl.de> - 2011-04-20 10:25 +0200
            [OT] Re: Pickling over a socket Bastian Ballmann <balle@chaostal.de> - 2011-04-20 10:59 +0200
        Re: Pickling over a socket Chris Angelico <rosuav@gmail.com> - 2011-04-20 19:26 +1000
        Re: Pickling over a socket Bastian Ballmann <balle@chaostal.de> - 2011-04-20 11:41 +0200

csiph-web