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


Groups > comp.lang.python > #98223

Bugfixing python 3.5 asyncio

Path csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail
From Dmitry Panteleev <dpantele@dpantele.com>
Newsgroups comp.lang.python
Subject Bugfixing python 3.5 asyncio
Date Tue, 3 Nov 2015 20:24:04 -0500
Lines 16
Message-ID <mailman.14.1446641617.16136.python-list@python.org> (permalink)
Mime-Version 1.0
Content-Type text/plain; charset=UTF-8
X-Trace news.uni-berlin.de vXpojGFTZseJhrYjOmJZnwvPxLzdraDueOhC3rN/6ZFA==
Return-Path <dpantele@dpantele.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.017
X-Spam-Evidence '*H*': 0.97; '*S*': 0.00; 'override': 0.07; 'url:github': 0.09; 'bug': 0.10; 'python': 0.10; 'subject:python': 0.14; 'dmitry': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'sys.path': 0.16; 'url:issues': 0.16; 'thanks,': 0.24; 'patch': 0.24; 'distribute': 0.27; 'message-id:@mail.gmail.com': 0.27; 'module.': 0.27; 'fixed': 0.31; 'url:python': 0.33; 'received:google.com': 0.35; 'easiest': 0.35; 'there': 0.36; 'received:209.85': 0.36; 'to:addr:python-list': 0.36; 'really': 0.37; 'received:209': 0.38; 'anything': 0.38; 'to:addr:python.org': 0.40; 'hello,': 0.40; 'us.': 0.62; 'different': 0.63; 'our': 0.64; 'of:': 0.66
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=dpantele.com; s=google; h=mime-version:from:date:message-id:subject:to:content-type; bh=zg8IKxpqBTjtkuGF5ZlJuWYF6bmwVHOoXs1eAUToDpc=; b=g5xrE/MIWbwZkICzV8l06vZ6tJGmzO/5WdPEyDiFB1hoNs0C/wXC34d1b6ON9SAV2E oICV2BRq+MsY4FObKXMssL9jERG8Io6QbNAwESCo0aDK1u0Z9ioaTfpgH2x10bgi1h8Q sQ2VnvisWG++hMJXKCscWtDGJeKPI9hAxrMzc=
X-Google-DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to :content-type; bh=zg8IKxpqBTjtkuGF5ZlJuWYF6bmwVHOoXs1eAUToDpc=; b=Wtf7cEqvloXJ5CIU6zbhPDz4XG0lg4OUjQEmah778AbnpntEAulVIPeNWJ6BQNu0Oc iscuaX9dyx4ylPH5yrHe8qHTIfF9Isbndk+sfKvsaHnhNDmnOUZ7tIfysYdqnfGFpFqa bjBSGLoRG4SPOyFFWjkUHp8zdXb676edqCI+qktGZ21gNacY2bKC3dTiC6gYqy6FEQ8u vOB+Hip+lwp50yyWFFInt9ZLlSNVNCK5UjFIf3qYVt9Z2VbuYUPfR4fYEfJ7J2k5lRuM OWxynmgaW8GTyHYyRQ/leek4nrR1hOarQ+0HXuT3FkC1tWDtlRNJVPZTC517Q9nbVfHE G5Tw==
X-Gm-Message-State ALoCoQliox7H7oSl2ceE/D9OZLPk28zA+YAaZuY3Yhy2wf48ys7jKTUYlvlTTauDLxFrD+GZt3L3
X-Received by 10.25.82.76 with SMTP id g73mr9925970lfb.56.1446600264481; Tue, 03 Nov 2015 17:24:24 -0800 (PST)
X-Mailman-Approved-At Wed, 04 Nov 2015 07:53:37 -0500
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.20+
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>
Xref csiph.com comp.lang.python:98223

Show key headers only | View raw


Hello,

There is a bug in asyncio.Queue
(https://github.com/python/asyncio/issues/268), which makes it
unusable for us. It is fixed in master now. What is the easiest way to
patch the asyncio bundled with python if I have to distribute it among
5 colleagues? It is used in our private module.

I can think of:
1. Copy asyncio.queues into our package so it has a different name
2. Override sys.path

Both look really strange. Is there anything else?

Thanks,
Dmitry Panteleev

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


Thread

Bugfixing python 3.5 asyncio Dmitry Panteleev <dpantele@dpantele.com> - 2015-11-03 20:24 -0500

csiph-web