10
0
mirror of https://gitlab.com/scemama/irpf90.git synced 2025-01-03 01:55:42 +01:00
This commit is contained in:
Anthony Scemama 2017-03-17 09:46:01 +01:00
parent d05a40a34a
commit dc6d1085da
2 changed files with 4 additions and 4 deletions

View File

@ -207,7 +207,7 @@ def move_to_top_list(text, it):
- The permutation neeed to be done following `it` order - The permutation neeed to be done following `it` order
- We can have `nested` subroutine / Function. (Because of interface) - We can have `nested` subroutine / Function. (Because of interface)
- This function is called way to much. Is need to be efficient - This function is called way to much. Is need to be efficient
- This function is Unpure - This function is Impure
- One pass over `text` - One pass over `text`
@ -273,7 +273,7 @@ def move_interface(parsed_text,s_type=(Use,Implicit,Declaration,Subroutine,Funct
'''Move everything containt into 'interface' below the first instance of s_type who preced it '''Move everything containt into 'interface' below the first instance of s_type who preced it
Note: Note:
= This function is unpur = This function is impure
''' '''
# Get the born of the interface # Get the born of the interface
@ -298,7 +298,7 @@ def build_sub_needs(parsed_text, d_subroutine):
'''Set the needs, and provides arguements of Routine present in parsed_text '''Set the needs, and provides arguements of Routine present in parsed_text
Note: Note:
This function is unpure This function is impure
''' '''
l_buffer = [] l_buffer = []

View File

@ -407,7 +407,7 @@ def remove_comments(text, form):
'''Remove all comments '''Remove all comments
Note: Note:
This function is unpur This function is impure
''' '''
result = [] result = []