mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 09:56:28 +03:00
Update spacy/util.py
Co-authored-by: Matthew Honnibal <honnibal+gh@gmail.com>
This commit is contained in:
parent
cad988da7f
commit
5de3f8604d
|
@ -689,7 +689,7 @@ def is_same_func(func1: Callable, func2: Callable) -> bool:
|
||||||
same_name = func1.__qualname__ == func2.__qualname__
|
same_name = func1.__qualname__ == func2.__qualname__
|
||||||
same_file = inspect.getfile(func1) == inspect.getfile(func2)
|
same_file = inspect.getfile(func1) == inspect.getfile(func2)
|
||||||
same_code = inspect.getsourcelines(func1) == inspect.getsourcelines(func2)
|
same_code = inspect.getsourcelines(func1) == inspect.getsourcelines(func2)
|
||||||
return all([same_name, same_file, same_code])
|
return same_name and same_file and same_code
|
||||||
|
|
||||||
|
|
||||||
def get_cuda_stream(
|
def get_cuda_stream(
|
||||||
|
|
Loading…
Reference in New Issue
Block a user