1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/bin/sh
[ "$1" = python3-pymysql ] || exit 0
python3 -c '
import pymysql
# Verify version
assert pymysql.__version__
# Verify core exports
assert hasattr(pymysql, "connect")
assert hasattr(pymysql, "connections")
assert hasattr(pymysql, "cursors")
# Verify cursor types are importable
from pymysql.cursors import Cursor, DictCursor, SSCursor, SSDictCursor
# Verify exception classes are importable
from pymysql import (
err,
MySQLError,
OperationalError,
InterfaceError,
DatabaseError,
IntegrityError,
DataError,
)
# Verify connections.Connection class exists
from pymysql import connections
assert connections.Connection is not None
# Verify callable cursor classes
assert callable(Cursor)
assert callable(DictCursor)
assert callable(SSCursor)
assert callable(SSDictCursor)
# Verify constants module
import pymysql.constants as constants
assert hasattr(constants, "CR")
assert hasattr(constants, "ER")
# Verify _escape function exists (used internally for queries)
from pymysql.converters import escape_string, escape_dict
assert callable(escape_string)
assert callable(escape_dict)
print("pymysql OK")
'
|