Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
ignore more files
· 8ac72ca80f56
Matti Picus
authored
Feb 07, 2020
8ac72ca80f56
python3
· c39d2eba642e
Matti Picus
authored
Feb 07, 2020
c39d2eba642e
Hide whitespace changes
Inline
Side-by-side
.hgignore
View file @
c39d2eba
.*\.py[co]
.*~
lib/cpython-doc/tools/build
lib/pypy/rpython
py.ppm
test_raytrace.ppm
.*.swp
own/twisted/tcp.py
View file @
c39d2eba
...
...
@@ -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
)
...
...