Given a group name, return the actual name of its extension module. (This just adds a suffix to the final component.)
(group_name: str)
| 108 | |
| 109 | |
| 110 | def shared_lib_name(group_name: str) -> str: |
| 111 | """Given a group name, return the actual name of its extension module. |
| 112 | |
| 113 | (This just adds a suffix to the final component.) |
| 114 | """ |
| 115 | return f"{group_name}__mypyc" |
| 116 | |
| 117 | |
| 118 | def short_name(name: str) -> str: |
no outgoing calls
no test coverage detected
searching dependent graphs…