aboutsummaryrefslogtreecommitdiffstats
path: root/shibokengenerator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'shibokengenerator.cpp')
-rw-r--r--shibokengenerator.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/shibokengenerator.cpp b/shibokengenerator.cpp
index c37791722..27e9f0f68 100644
--- a/shibokengenerator.cpp
+++ b/shibokengenerator.cpp
@@ -317,10 +317,11 @@ QString ShibokenGenerator::cpythonBaseName(const TypeEntry* type)
case ContainerTypeEntry::VectorContainer:
case ContainerTypeEntry::StackContainer:
case ContainerTypeEntry::QueueContainer:
- baseName = "PyList";
- break;
+ //baseName = "PyList";
+ //break;
case ContainerTypeEntry::PairContainer:
- baseName = "PyTuple";
+ //baseName = "PyTuple";
+ baseName = "PySequence";
break;
case ContainerTypeEntry::SetContainer:
baseName = "PySet";