aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Fixing includesLauro Neto2010-01-264-4/+4
* Shiboken generator doesn't need to link against QtXml and libapiextractor as ...Hugo Lima2010-01-251-6/+2
* Setting CMAKE_BUILD_TYPE before usageLauro Neto2010-01-251-1/+5
* Do not remove the "const" from "const char*" types when convertingHugo Lima2010-01-221-1/+2
* Add overflow check to unsigned int, because we need it on 64bit platforms.Hugo Lima2010-01-221-21/+10
* Fix implicitconv_numerical testsHugo Lima2010-01-221-3/+3
* Fix bug on overflow check routines under 32 bits platforms.Hugo Lima2010-01-225-34/+66
* Adds support for Duck Punching (aka Monkey Patching).Marcelo Lira2010-01-215-6/+192
* Add special conversion rules to the char type.Hugo Lima2010-01-202-6/+31
* When verifying for the aliased type of a primitive type, go to the last alias...Hugo Lima2010-01-201-1/+1
* Added another constructor to Str class, just to test the new char behaviour.Hugo Lima2010-01-202-0/+7
* Small refactoring to sortOverloads function, so it's a bit easier to read (IMO).Hugo Lima2010-01-201-24/+22
* Converter<PyInt> now follows the Converter interface.Hugo Lima2010-01-201-2/+2
* Generator now supports overloads with both static and non-static methods.Marcelo Lira2010-01-192-14/+81
* Adds helper methods to ShibokenGenerator.Marcelo Lira2010-01-192-0/+64
* Adds helpers to OverloadData to check for static and non-static methods.Marcelo Lira2010-01-192-1/+65
* Adds test case for overload with static and a non-static versions of a method.Hugo Lima2010-01-194-1/+98
* Bucket::m_locked is accessed by multiple threads and must be volatile,Hugo Lima2010-01-181-1/+1
* Common variable names are stored as #defines instead of C++ static methods.Marcelo Lira2010-01-183-37/+37
* Expanded thread locking tests with two more cases.Marcelo Lira2010-01-184-2/+42
* Generator now makes use of the GilState and ThreadStateSaver classes.Marcelo Lira2010-01-182-16/+13
* Adds convenience ThreadStateSaver class to libshiboken.Marcelo Lira2010-01-182-0/+64
* Adds convenience GilState class to libshiboken.Marcelo Lira2010-01-182-0/+56
* Adds CppGenerator::writeCppSelfDefinition method.Marcelo Lira2010-01-154-33/+29
* Updated type system variable replacement for '%0' (aka C++ return value).Marcelo Lira2010-01-151-3/+2
* Adding new tests related to threads/GIL lockingLauro Neto2010-01-1512-0/+393
* Fixing shebang on runtest.shLauro Neto2010-01-151-1/+1
* Wrapped virtual methods now locking the GIL in the right places.Marcelo Lira2010-01-152-14/+25
* Added ShibokenGenerator::shouldDereferenceAbstractMetaTypePointer method.Marcelo Lira2010-01-152-5/+10
* Adds support for "allow-thread" type system tag on Python method wrappers.Marcelo Lira2010-01-151-17/+24
* Adds ShibokenGenerator::threadStateVariableName() method.Marcelo Lira2010-01-151-0/+1
* Adds OverloadData::hasAllowThread() method.Marcelo Lira2010-01-152-0/+12
* libshiboken initialises Python threads if available.Marcelo Lira2010-01-151-0/+4
* Values returned from C++ are now stored in a C++ variable.Marcelo Lira2010-01-153-29/+23
* Add -Wno-strict-aliasing to GCC compiler flags.Hugo Lima2010-01-151-2/+2
* ProtectedVirtualDestructor must be object-type instead of value-type, because...Hugo Lima2010-01-151-2/+2
* Remove warning about using a uninitialized variableHugo Lima2010-01-151-2/+2
* Add option -DAVOID_PROTECTED_HACK to turn off the protected hack.Hugo Lima2010-01-151-3/+8
* Correctly set diferent CXX_FLAGS for release and debug builds.Hugo Lima2010-01-151-4/+7
* Fix custom converters from libsample.Hugo Lima2010-01-153-5/+10
* Added SbkDbg stream class, used to print debug messages.Hugo Lima2010-01-143-5/+107
* Added template specialization SbkType<signed char>(), needed by someone.Hugo Lima2010-01-141-0/+1
* Inc. the reference of the return value when returning self on inplace operato...Hugo Lima2010-01-141-5/+6
* Changed prefix of local generated C functions to avoid name clash with bindin...Hugo Lima2010-01-143-9/+11
* Added a convenience overload for cpythonBaseName, with AbstractMetaClass as p...Hugo Lima2010-01-143-5/+11
* Implemented type discovery feature.Hugo Lima2010-01-148-13/+291
* Removed type discovery tests from blacklist and added "other" binding directo...Hugo Lima2010-01-141-2/+2
* Removed warninig: missing braces around initializer for 'PyTypeObject' from b...Hugo Lima2010-01-141-1/+5
* Fix transfer ownership on return values.Hugo Lima2010-01-132-7/+13
* Fix object initialization.Hugo Lima2010-01-137-77/+89