Skip to content

Commit 14cb7ed

Browse files
committed
readme: python 3.3
1 parent 28d2425 commit 14cb7ed

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
**Google Mock** mocks generator based on libclang
22

33
### Requirements
4-
+ [python](http://www.python.org) (tested with 2.7 and 3.2)
4+
+ [python](http://www.python.org) (tested with 2.7 and 3.3)
55
+ [libclang](http://clang.llvm.org) (tested with 3.2)
66

77
### Download

gmock.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@ def generate_includes(includes):
244244
return ''.join(result)
245245

246246
return Index.create(excludeDecls = True).parse(
247-
path = b'~.hpp'
247+
path = b"~.hpp"
248248
, args = args
249-
, unsaved_files = [(b'~.hpp', bytes(generate_includes(files), "utf-8"))]
249+
, unsaved_files = [(b"~.hpp", bytes(generate_includes(files), "utf-8"))]
250250
, options = TranslationUnit.PARSE_SKIP_FUNCTION_BODIES | TranslationUnit.PARSE_INCOMPLETE
251251
)
252252

0 commit comments

Comments
 (0)