##// END OF EJS Templates
actually send only one kernel_info request...
actually send only one kernel_info request store the Future for the initial request, allowing subsequent requests to wait on the same pending reply. Previously, any incoming requests that arrived while waiting for the first reply would send their own request.

File last commit:

r12797:d1ebf45a
r18563:0b2c2392
Show More
ipython_config.py
13 lines | 287 B | text/x-python | PythonLexer
MinRK
reorganize default config files to match profiles as directories...
r3954 c = get_config()
MinRK
load_subconfig supports profiles...
r4030 app = c.InteractiveShellApp
MinRK
reorganize default config files to match profiles as directories...
r3954
# This can be used at any point in a config file to load a sub config
# and merge it into the current one.
MinRK
load_subconfig supports profiles...
r4030 load_subconfig('ipython_config.py', profile='default')
MinRK
reorganize default config files to match profiles as directories...
r3954
lines = """
MinRK
remove old default config files
r3965 from IPython.parallel import *
MinRK
reorganize default config files to match profiles as directories...
r3954 """
MinRK
update bundled profiles to use extend
r12797 app.exec_lines.append(lines)
MinRK
reorganize default config files to match profiles as directories...
r3954