Skip to content
This repository was archived by the owner on Oct 1, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions experimentlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,15 @@
# and it also makes other things easier for developers, such as using ipython's
# tab completion and not causing unexpected imports if someone using this
# module decides to use "from experimentlib import *"
import repyimporter

import fastnmclient
repytime = repyimporter.import_repy_module("time")
rsa = repyimporter.import_repy_module("rsa")
parallelize = repyimporter.import_repy_module("parallelize")
advertise = repyimporter.import_repy_module("advertise")

from repyportability import *
add_dy_support(locals())

repytime = dy_import_module('time.r2py')
parallelize = dy_import_module('parallelize.r2py')
rsa = dy_import_module('rsa.r2py')
advertise = dy_import_module('advertise.r2py')

# The maximum number of node locations to return from a call to lookup_node_locations.
max_lookup_results = 1024 * 1024
Expand Down
1 change: 1 addition & 0 deletions scripts/config_build.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ DEPENDENCIES/common/*
# Tests
test DEPENDENCIES/utf/*
test tests/*
test examples/*