Skip to content

Commit 24f5820

Browse files
author
Christopher Doris
committed
add pytable to API
1 parent 2210eb6 commit 24f5820

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

src/API/exports.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,3 +120,6 @@ export PyList
120120
export PyPandasDataFrame
121121
export PySet
122122
export PyTable
123+
124+
# Compat
125+
export pytable

src/API/functions.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,4 @@ function pyconvert_unconverted end
116116
function event_loop_on end
117117
function event_loop_off end
118118
function fix_qt_plugin_path end
119+
function pytable end

src/Compat/Compat.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ using Requires: @require
1818
import ..PythonCall:
1919
event_loop_on,
2020
event_loop_off,
21-
fix_qt_plugin_path
21+
fix_qt_plugin_path,
22+
pytable
2223

2324
include("gui.jl")
2425
include("ipython.jl")

src/Compat/tables.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ function pytable(src, format = :pandas; opts...)
2626
error("invalid format")
2727
end
2828
end
29-
export pytable
3029

3130
function _pytable_columns(src, cols = Tables.columns(src))
3231
pydict(

0 commit comments

Comments
 (0)