Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
code-health: remove c_ssize_t type wrapper
  • Loading branch information
DifferentialOrange committed Oct 6, 2022
commit 65da3af31b765b2df1db2826d21f1175d75f0712
5 changes: 1 addition & 4 deletions tarantool/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@

import ctypes
import ctypes.util
try:
from ctypes import c_ssize_t
except ImportError:
from ctypes import c_longlong as c_ssize_t
from ctypes import c_ssize_t

import msgpack

Expand Down