small API changes
This commit is contained in:
parent
3fd8ccb06b
commit
ea51f06783
@ -169,7 +169,7 @@ int Yap_CleanOpaqueVariable(CELL d) {
|
|||||||
}
|
}
|
||||||
blob_info = blob_tag - USER_BLOB_START;
|
blob_info = blob_tag - USER_BLOB_START;
|
||||||
if (!GLOBAL_OpaqueHandlers)
|
if (!GLOBAL_OpaqueHandlers)
|
||||||
return FALSE;
|
return false;
|
||||||
if (!GLOBAL_OpaqueHandlers[blob_info].fail_handler)
|
if (!GLOBAL_OpaqueHandlers[blob_info].fail_handler)
|
||||||
return true;
|
return true;
|
||||||
return (GLOBAL_OpaqueHandlers[blob_info].fail_handler)(d);
|
return (GLOBAL_OpaqueHandlers[blob_info].fail_handler)(d);
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -108,12 +108,14 @@ if any(a.startswith(('bdist', 'build', 'install')) for a in sys.argv):
|
|||||||
(pjoin('share', 'jupyter', 'kernels', KERNEL_NAME), glob(pjoin(dest, '*'))),
|
(pjoin('share', 'jupyter', 'kernels', KERNEL_NAME), glob(pjoin(dest, '*'))),
|
||||||
]
|
]
|
||||||
mode_loc = pjoin( sysconfig.get_path('platlib'), 'notebook', 'static', 'components', 'codemirror', 'mode', 'prolog')
|
mode_loc = pjoin( sysconfig.get_path('platlib'), 'notebook', 'static', 'components', 'codemirror', 'mode', 'prolog')
|
||||||
|
custom_loc = pjoin( sysconfig.get_path('platlib'), 'notebook', 'static', 'custom')
|
||||||
try:
|
try:
|
||||||
os.mkdir(mode_loc)
|
os.makedirs(mode_loc)
|
||||||
|
shutil.copy( "${CMAKE_SOURCE_DIR}/misc/editors/prolog.js" , mode_loc)
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
shutil.copy( "${CMAKE_SOURCE_DIR}/misc/editors/prolog.js" , mode_loc)
|
shutil.copy( pjoin( custom_loc, "custom.js") , pjoin( custom_loc, "custom.js.orig"))
|
||||||
|
shutil.copy( "${CMAKE_CURRENT_SOURCE_DIR}/custom.js" , pjoin( custom_loc, "custom.js"))
|
||||||
|
|
||||||
extras_require = setuptools_args['extras_require'] = {
|
extras_require = setuptools_args['extras_require'] = {
|
||||||
'test:python_version=="2.7"': ['mock'],
|
'test:python_version=="2.7"': ['mock'],
|
||||||
|
Reference in New Issue
Block a user