Skip to content

Commit 63ab9a4

Browse files
committed
scp: Make the chunk size constant more readable
Signed-off-by: Jakub Jelen <jjelen@redhat.com>
1 parent e5f7338 commit 63ab9a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pylibsshext/scp.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ from pylibsshext.errors cimport LibsshSCPException
2424
from pylibsshext.session cimport get_libssh_session
2525

2626

27-
SCP_MAX_CHUNK = 65536
27+
SCP_MAX_CHUNK = 65_536 # 64kB
2828

2929

3030
cdef class SCP:

0 commit comments

Comments
 (0)