Skip to content

Commit b8ec731

Browse files
author
Christopher Doris
committed
rearrange
1 parent 0259a21 commit b8ec731

File tree

19 files changed

+4
-67
lines changed

19 files changed

+4
-67
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

python/README.md

Lines changed: 0 additions & 47 deletions
This file was deleted.

python/setup.cfg renamed to setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ classifiers =
1212

1313
[options]
1414
zip_safe = False
15+
package_dir =
16+
=pysrc
1517
packages = juliacall
1618
python_requires = ~=3.5
1719
install_requires =

src/jlwrap/any.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ function init_jlwrap_any()
172172
$("\n"^(@__LINE__()-1))
173173
class AnyValue(ValueBase):
174174
__slots__ = ()
175-
__module__ = "juliacall"
176175
def __repr__(self):
177176
if self._jl_isnull():
178177
return "<jl NULL>"

src/jlwrap/array.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,6 @@ function init_jlwrap_array()
293293
$("\n"^(@__LINE__()-1))
294294
class ArrayValue(AnyValue):
295295
__slots__ = ()
296-
__module__ = "juliacall"
297296
_jl_buffer_info = $(pyjl_methodnum(pyjlarray_buffer_info))
298297
@property
299298
def ndim(self):

src/jlwrap/callback.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ function init_jlwrap_callback()
3333
$("\n"^(@__LINE__()-1))
3434
class CallbackValue(ValueBase):
3535
__slots__ = ()
36-
__module__ = "juliacall"
3736
def __repr__(self):
3837
if self._jl_isnull():
3938
return "<jl NULL>"

src/jlwrap/dict.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ function init_jlwrap_dict()
3737
$("\n"^(@__LINE__()-1))
3838
class DictValue(AnyValue):
3939
__slots__ = ()
40-
__module__ = "juliacall"
4140
_jl_undefined_ = object()
4241
def __iter__(self):
4342
return self._jl_callmethod($(pyjl_methodnum(pyjldict_iter)))

0 commit comments

Comments
 (0)