[pypy-commit] pypy py3k: we no longer have buffer at applevel, kill this check
antocuni
noreply at buildbot.pypy.org
Thu Mar 22 11:03:26 CET 2012
Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r53886:5a99728a7e69
Date: 2012-03-22 10:51 +0100
http://bitbucket.org/pypy/pypy/changeset/5a99728a7e69/
Log: we no longer have buffer at applevel, kill this check
diff --git a/pypy/module/__pypy__/test/test_bytebuffer.py b/pypy/module/__pypy__/test/test_bytebuffer.py
--- a/pypy/module/__pypy__/test/test_bytebuffer.py
+++ b/pypy/module/__pypy__/test/test_bytebuffer.py
@@ -8,7 +8,6 @@
def test_bytebuffer(self):
from __pypy__ import bytebuffer
b = bytebuffer(12)
- assert isinstance(b, buffer)
assert len(b) == 12
b[3] = b'!'
b[5] = b'?'
More information about the pypy-commit
mailing list