Fix file ends for CI
This commit is contained in:
parent
59429cdcbe
commit
e77981f86e
@ -24,4 +24,4 @@ with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
|
|||||||
data = conn.recv(128)
|
data = conn.recv(128)
|
||||||
print("got: " + str(data))
|
print("got: " + str(data))
|
||||||
conn.sendall(data)
|
conn.sendall(data)
|
||||||
print("sent: " + str(data))
|
print("sent: " + str(data))
|
||||||
|
@ -43,4 +43,4 @@ Accepting connections
|
|||||||
Connected by ('192.168.10.128', 64509)
|
Connected by ('192.168.10.128', 64509)
|
||||||
got: b'Hello, world'
|
got: b'Hello, world'
|
||||||
sent: b'Hello, world'
|
sent: b'Hello, world'
|
||||||
```
|
```
|
||||||
|
@ -15,4 +15,3 @@ with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
|
|||||||
print("Receiving")
|
print("Receiving")
|
||||||
data = s.recv(1024)
|
data = s.recv(1024)
|
||||||
print('Received', repr(data))
|
print('Received', repr(data))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user