[pypy-commit] [Git][pypy/benchmarks][branch/default] 2 commits: ignore more files
Matti Picus
foss at heptapod.net
Sun Feb 23 16:55:55 EST 2020
Matti Picus pushed to branch branch/default at PyPy / benchmarks
Commits:
28e09e09 by Matti Picus at 2020-02-07T00:25:28+02:00
ignore more files
- - - - -
d3a4d7a7 by Matti Picus at 2020-02-07T13:06:24+02:00
python3
- - - - -
2 changed files:
- .hgignore
- own/twisted/tcp.py
Changes:
=====================================
.hgignore
=====================================
--- a/.hgignore
+++ b/.hgignore
@@ -1,4 +1,7 @@
.*\.py[co]
.*~
lib/cpython-doc/tools/build
+lib/pypy/rpython
+py.ppm
+test_raytrace.ppm
.*.swp
=====================================
own/twisted/tcp.py
=====================================
--- a/own/twisted/tcp.py
+++ b/own/twisted/tcp.py
@@ -35,7 +35,7 @@ class Client(object):
def run(self, duration, chunkSize):
self._duration = duration
- self._bytes = 'x' * chunkSize
+ self._bytes = b'x' * chunkSize
# Set up a connection
cc = ClientCreator(self._reactor, Counter)
d = cc.connectTCP(self._host, self._port)
View it on GitLab: https://foss.heptapod.net/pypy/benchmarks/compare/30b21254e980aa6eb9711cf56a433f14b5af7014...d3a4d7a7c585388daa59a31319d5f33e9123f5bd
---
View it on GitLab: https://foss.heptapod.net/pypy/benchmarks/compare/30b21254e980aa6eb9711cf56a433f14b5af7014...d3a4d7a7c585388daa59a31319d5f33e9123f5bd
You're receiving this email because of your account on foss.heptapod.net.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/pypy-commit/attachments/20200223/eebd1392/attachment.html>
More information about the pypy-commit
mailing list