forked from JuliaPy/PythonCall.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCompat.jl
More file actions
34 lines (27 loc) · 665 Bytes
/
Copy pathCompat.jl
File metadata and controls
34 lines (27 loc) · 665 Bytes
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
"""
module PythonCall.Compat
Misc bits and bobs for compatibility.
"""
module Compat
using ..PythonCall
using ..Utils
using ..C
using ..Core
using ..Wrap
using Serialization: Serialization, AbstractSerializer, serialize, deserialize
using Tables: Tables
using Requires: @require
import ..PythonCall: event_loop_on, event_loop_off, fix_qt_plugin_path, pytable
include("gui.jl")
include("ipython.jl")
include("multimedia.jl")
include("serialization.jl")
include("tables.jl")
include("pycall.jl")
function __init__()
init_gui()
init_pyshow()
init_tables()
@require PyCall = "438e738f-606a-5dbb-bf0a-cddfbfd45ab0" init_pycall(PyCall)
end
end