Skip to content

Commit 80d30f0

Browse files
author
Christopher Doris
committed
reformat
1 parent 97f6c22 commit 80d30f0

File tree

1 file changed

+23
-26
lines changed

1 file changed

+23
-26
lines changed

src/API/publics.jl

Lines changed: 23 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,25 @@
11
if Base.VERSION v"1.11"
2-
eval(
3-
Expr(
4-
:public,
5-
:VERSION,
6-
:GIL,
7-
:GC,
8-
# C
9-
:python_executable_path,
10-
:python_library_path,
11-
:python_library_handle,
12-
:python_version,
13-
# Core
14-
:pynew,
15-
:pyisnull,
16-
:pycopy!,
17-
:getptr,
18-
:pydel!,
19-
:unsafe_pynext,
20-
:PyNULL,
21-
:CONFIG,
22-
# Compat
23-
:event_loop_on,
24-
:event_loop_off,
25-
:fix_qt_plugin_path,
26-
),
27-
)
2+
eval(Meta.parse("""
3+
public VERSION,
4+
GIL,
5+
GC,
6+
# C
7+
python_executable_path,
8+
python_library_path,
9+
python_library_handle,
10+
python_version,
11+
# Core
12+
pynew,
13+
pyisnull,
14+
pycopy!,
15+
getptr,
16+
pydel!,
17+
unsafe_pynext,
18+
PyNULL,
19+
CONFIG,
20+
# Compat
21+
event_loop_on,
22+
event_loop_off,
23+
fix_qt_plugin_path
24+
"""))
2825
end

0 commit comments

Comments
 (0)