Cython LINK : error LNK2001: 확인할 수 없는 외부 기호

Code Genie·2025년 3월 6일

Signal과 연결되어 있지 않은 함수에 @Slot() 데코레이터 사용시
cython 컴파일 에러

 @Slot()
 def call(self, func, *args, **kwargs):
     current_time = time.time()
         if current_time - self.last_call_time >= self.delay:
             self.last_call_time = current_time
             return func(*args, **kwargs)

@Slot() 삭제후 에러 해결 됨

profile
1인 개발

0개의 댓글