-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Experimental support for R functions and external pointers.
Merge branch 'release/0.9'
- Loading branch information
Showing
15 changed files
with
685 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.8 | ||
0.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
from ._conversion import ( | ||
DEFAULT_CLASS_MAP, | ||
Converter, | ||
RExpression, | ||
RLanguage, | ||
SimpleConverter, | ||
convert, | ||
convert_array, | ||
convert_attrs, | ||
convert_char, | ||
convert_list, | ||
convert_symbol, | ||
convert_vector, | ||
dataframe_constructor, | ||
factor_constructor, | ||
ts_constructor, | ||
DEFAULT_CLASS_MAP as DEFAULT_CLASS_MAP, | ||
Converter as Converter, | ||
RBuiltin as RBuiltin, | ||
RBytecode as RBytecode, | ||
RExpression as RExpression, | ||
RFunction as RFunction, | ||
RLanguage as RLanguage, | ||
SimpleConverter as SimpleConverter, | ||
convert as convert, | ||
convert_array as convert_array, | ||
convert_attrs as convert_attrs, | ||
convert_char as convert_char, | ||
convert_list as convert_list, | ||
convert_symbol as convert_symbol, | ||
convert_vector as convert_vector, | ||
dataframe_constructor as dataframe_constructor, | ||
factor_constructor as factor_constructor, | ||
ts_constructor as ts_constructor, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
"""Utilities for parsing a rdata file.""" | ||
|
||
from ._parser import ( | ||
DEFAULT_ALTREP_MAP, | ||
CharFlags, | ||
RData, | ||
RObject, | ||
RObjectInfo, | ||
RObjectType, | ||
parse_data, | ||
parse_file, | ||
DEFAULT_ALTREP_MAP as DEFAULT_ALTREP_MAP, | ||
CharFlags as CharFlags, | ||
RData as RData, | ||
RObject as RObject, | ||
RObjectInfo as RObjectInfo, | ||
RObjectType as RObjectType, | ||
parse_data as parse_data, | ||
parse_file as parse_file, | ||
) |
Oops, something went wrong.