aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken
Commit message (Expand)AuthorAgeFilesLines
* Add overflow check to unsigned int, because we need it on 64bit platforms.Hugo Lima2010-01-221-21/+10
* Fix bug on overflow check routines under 32 bits platforms.Hugo Lima2010-01-221-33/+50
* Adds support for Duck Punching (aka Monkey Patching).Marcelo Lira2010-01-213-6/+40
* Add special conversion rules to the char type.Hugo Lima2010-01-201-3/+28
* Converter<PyInt> now follows the Converter interface.Hugo Lima2010-01-201-2/+2
* Adds convenience ThreadStateSaver class to libshiboken.Marcelo Lira2010-01-182-0/+64
* Adds convenience GilState class to libshiboken.Marcelo Lira2010-01-182-0/+56
* libshiboken initialises Python threads if available.Marcelo Lira2010-01-151-0/+4
* 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
* Implemented type discovery feature.Hugo Lima2010-01-146-7/+264
* 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-131-0/+1
* Fix object initialization.Hugo Lima2010-01-134-30/+45
* Added Shiboken::makeTuple inline method to help with constructions of Python ...Hugo Lima2010-01-081-0/+20
* Add -> operator to AutoDecRef class.Hugo Lima2009-12-301-0/+1
* Replaces SbkCopyCppObject template function with the CppObjectCopier template...Marcelo Lira2009-12-221-113/+46
* Changed SbkBaseWrapper_New signature to use "bool" instead of "unsigned int" ...Marcelo Lira2009-12-222-5/+5
* Improvements and refactor on libshiboken's converters.Marcelo Lira2009-12-211-41/+87
* Refactored SbkType specializations and replaced "long long" by "PY_LONG_LONG".Marcelo Lira2009-12-211-78/+13
* Disabled AutoDecRef obj. copy. and added some useful cast operators.Hugo Lima2009-12-211-1/+6
* Adds AutoDecRef class that holds a PyObject pointer and decrefs it when get o...Marcelo Lira2009-12-182-2/+72
* Added template specializations for SbkType<T> when T is a primitive type.Hugo Lima2009-12-161-5/+81
* Tests for numerical implicit conversions and fixesLauro Neto2009-12-161-9/+36
* All wrapped classes now inherit from the SbkBaseWrapper of the metatype SbkBa...Marcelo Lira2009-12-143-22/+156
* Renamed ShiboTypeObject to SbkBaseWrapperType to clearify its relationship wi...Marcelo Lira2009-12-114-8/+8
* Converter<T>::copyCppObject method was replaced by a template function.Marcelo Lira2009-12-101-8/+25
* Renamed a lot of Shiboken things with "Py" prefix to use "Sbk" prefix.Marcelo Lira2009-12-087-83/+85
* Moved container converters from test library to libshiboken's converter header.Marcelo Lira2009-12-071-0/+117
* Added Shiboken_TypeCheck macro that makes use of PyType<T>().Marcelo Lira2009-12-072-3/+9
* Do not generate the method Converter<T>::createWrapper, it'll beHugo Lima2009-12-071-17/+22
* Adds Overflow check to integer types conversions.Marcelo Lira2009-12-071-3/+9
* Correct install location for FindShiboken.cmakeChris Hills2009-12-071-1/+1
* Multiple inheritance works as desired for 99.9% of all known use cases!Hugo Lima2009-12-052-0/+24
* Modified the BindingManager::getOverride method to use Python __mro__.Marcelo Lira2009-12-023-19/+21
* Converter's basic isConvertible and toCpp methods consider None as C++ NULL p...Marcelo Lira2009-12-011-2/+6
* Shiboken::cppObjectIsInvalid now accepts None values as valid.Marcelo Lira2009-12-011-1/+1
* Added method to take care of the details of ownership transfer to C++.Marcelo Lira2009-11-302-0/+19
* Wrapper invalidation method recursively updates children objects status.Marcelo Lira2009-11-303-8/+27
* Implemented primitives to solve the parent/children problem.Hugo Lima2009-11-272-30/+135
* Added convenience method BindingManager::invalidateWrapper(const void*).Marcelo Lira2009-11-262-0/+9
* Added the "containsCppWrapper" flag to the PyBaseWrapper.Marcelo Lira2009-11-262-4/+22
* BindingManager::invalidateWrapper also removes ownership of the object from P...Marcelo Lira2009-11-261-0/+1
* Renamed Shiboken's function cppObjectIsValid to cppObjectIsInvalid.Marcelo Lira2009-11-262-8/+13
* Added the invalidateWrapper method to BindingManager.Marcelo Lira2009-11-253-13/+23
* Merged with multipleinheritance branchMarcelo Lira2009-11-253-12/+41
|\
| * Binding manager releaseWrapper(PyObject*) method fixed to releaseMarcelo Lira2009-11-181-1/+10
| * In multiple inheritance cases the binding manager only assigns aMarcelo Lira2009-11-181-1/+2
| * Shiboken retrieves a Python wrapper object from its correspondingMarcelo Lira2009-11-183-11/+30
* | Added an PyObject* specialization to the Conversion template toMarcelo Lira2009-11-241-0/+8