This commit is contained in:
Thomas Nagy 2015-12-25 18:06:18 +01:00
parent f73d3f1a2f
commit 4111d559b4
2 changed files with 1 additions and 8 deletions

View File

@ -15,7 +15,7 @@ re_imp = re.compile('^(#)*?([^#=]*?)\ =\ (.*?)$', re.M)
class ConfigSet(object): class ConfigSet(object):
""" """
A dict that honor serialization and parent relationships. The serialization format A copy-on-write dict with human-readable serialized format. The serialization format
is human-readable (python-like) and performed by using eval() and repr(). is human-readable (python-like) and performed by using eval() and repr().
For high performance prefer pickle. Do not store functions as they are not serializable. For high performance prefer pickle. Do not store functions as they are not serializable.

View File

@ -139,14 +139,7 @@ def check_fortran_dummy_main(self, *k, **kw):
""" """
Guess if a main function is needed by compiling a code snippet with Guess if a main function is needed by compiling a code snippet with
the C compiler and link with the Fortran compiler the C compiler and link with the Fortran compiler
TODO: (DC)
- handling dialects (F77, F90, etc... -> needs core support first)
- fix dummy main check (AC_FC_DUMMY_MAIN vs AC_FC_MAIN)
TODO: what does the above mean? (ita)
""" """
if not self.env.CC: if not self.env.CC:
self.fatal('A c compiler is required for check_fortran_dummy_main') self.fatal('A c compiler is required for check_fortran_dummy_main')