소스 검색

import inspect (#3507)

Inspect is used five times on line 65-74 without being imported.
cclauss 7 년 전
부모
커밋
35c6927cc1
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      python/stubout.py

+ 3 - 0
python/stubout.py

@@ -17,6 +17,9 @@
 # This file is used for testing.  The original is at:
 #   http://code.google.com/p/pymox/
 
+import inspect
+
+
 class StubOutForTesting:
   """Sample Usage:
      You want os.path.exists() to always return true during testing.