Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
abb9e086
Commit
abb9e086
authored
Jan 21, 2013
by
Andrey Kamaev
Committed by
OpenCV Buildbot
Jan 21, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #314 from vpisarev:2.4
parents
9c7a8dd5
f14b7af5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gen2.py
modules/python/src2/gen2.py
+3
-3
No files found.
modules/python/src2/gen2.py
View file @
abb9e086
...
...
@@ -243,9 +243,9 @@ class ClassInfo(object):
if
decl
:
self
.
bases
=
decl
[
1
]
.
split
()[
1
:]
if
len
(
self
.
bases
)
>
1
:
print
"
Warning: c
lass
%
s has more than 1 base class (not supported by Python C extensions)"
%
(
self
.
name
,)
print
"Bases: "
,
" "
.
join
(
self
.
bases
)
print
"Only the first base class will be used"
print
"
Note: C
lass
%
s has more than 1 base class (not supported by Python C extensions)"
%
(
self
.
name
,)
print
"
Bases: "
,
" "
.
join
(
self
.
bases
)
print
"
Only the first base class will be used"
self
.
bases
=
[
self
.
bases
[
0
]
.
strip
(
","
)]
#return sys.exit(-1)
if
self
.
bases
and
self
.
bases
[
0
]
.
startswith
(
"cv::"
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment