Release History¶
0.4.2 (2021-11-14)¶
Features¶
Bugfixes¶
0.4.1 (2021-07-25)¶
Features¶
Added official support for Python 3.9. (#193)
Added official support for macOS 11 (Big Sur). (#195)
Autorelease Objective-C instances when the corresponding Python instance is destroyed. (#200)
Improved memory management when a Python instance is assigned to a new
ObjCInstanceattribute. (#209)Added support to declare weak properties on custom Objective-C classes. (#210)
Bugfixes¶
Fixed incorrect behavior of
Blockwhen trying to create a block with no arguments and using explicit types. This previously caused an incorrect exception about missing argument types; now a no-arg block is created as expected. (#153)Fixed handling of type annotations when passing a bound Python method into
Block. (#153)A cooperative entry point for starting event loop has been added. This corrects a problem seen when using Python 3.8 on iOS. (#182)
Improved performance of Objective-C method calls and
ObjCInstancecreation in many cases. (#183)Fix calling of signal handlers added to the asyncio loop with CFRunLoop integration. (#202)
Allow restarting a stopped event loop. (#205)
Deprecations and Removals¶
Removed automatic conversion of Objective-C numbers (
NSNumberandNSDecimalNumber) to Python numbers when received from Objective-C (i.e. returned from an Objective-C method or property or passed into an Objective-C method implemented in Python). This automatic conversion significantly slowed down every Objective-C method call that returns an object, even though the conversion doesn’t apply to most method calls. If you have code that receives an Objective-C number and needs to use it as a Python number, please convert it explicitly usingpy_from_ns()or an appropriate Objective-C method.As a side effect,
NSNumberandNSDecimalNumbervalues stored in Objective-C collections (NSArray,NSDictionary) are also no longer automatically unwrapped when retrieved from the collection, even when using Python syntax to access the collection. For example, ifarris aNSArrayof integerNSNumber,arr[0]now returns an Objective-CNSNumberand not a Pythonintas before. If you need the contents of an Objective-C collection as Python values, you can usepy_from_ns()to convert either single values (e. g.py_from_ns(arr[0])) or the entire collection (e. g.py_from_ns(arr)). (#183)Removed macOS 10.12 through 10.14 from our automatic test matrix, due to pricing changes in one of our CI services (Travis CI). OS X 10.11 is still included in the test matrix for now, but will probably be removed relatively soon. Automatic tests on macOS 10.15 and 11.0 are unaffected as they run on a different CI service (GitHub Actions).
Rubicon will continue to support macOS 10.14 and earlier on a best-effort basis, even though compatibility is no longer tested automatically. If you encounter any bugs or other problems with Rubicon on these older macOS versions, please report them! (#197)
Misc¶
0.4.0 (2020-07-04)¶
Features¶
Added macOS 10.15 (Catalina) to the test matrix. (#145)
Added PEP 517 and PEP 518 build system metadata to pyproject.toml. (#156)
Added official support for Python 3.8. (#162)
Added a
varargskeyword argument tosend_message()to allow calling variadic methods more safely. (#174)Changed
ObjCMethodto call methods usingsend_message()instead of callingIMPs directly. This is mainly an internal change and should not affect most existing code, although it may improve compatibility with Objective-C code that makes heavy use of runtime reflection and method manipulation (such as swizzling). (#177)
Bugfixes¶
Fixed Objective-C method calls in “flat” syntax accepting more arguments than the method has. The extra arguments were previously silently ignored. An exception is now raised if too many arguments are passed. (#123)
Fixed
ObjCInstance.__str__throwing an exception if the object’s Objective-Cdescriptionisnil. (#125)Corrected a slow memory leak caused every time an asyncio timed event handler triggered. (#146)
Fixed various minor issues in the build and packaging metadata. (#156)
Removed unit test that attempted to pass a struct with bit fields into a C function by value. Although this has worked in the past on x86 and x86_64,
ctypesnever officially supported this, and started generating an error in Python 3.7.6 and 3.8.1 (see bpo-39295). (#157)Corrected the invocation of
NSApplication.terminate()when theCocoaLifecycleis ended. (#170)Fixed
send_message()not acceptingSELobjects for theselectorparameter. The documentation stated that this is allowed, but actually doing so caused a type error. (#177)
Improved Documentation¶
Added detailed reference documentation for all public APIs of
rubicon.objc. (#118)Added a how-to guide for calling regular C functions using
ctypesandrubicon.objc. (#147)
Deprecations and Removals¶
Removed the i386 architecture from the test matrix. It is still supported on a best-effort basis, but compatibility is not tested automatically. (#139)
Tightened the API of
send_message(), removing some previously allowed shortcuts and features that were rarely used, or likely to be used by accident in an unsafe way.Note
In most cases, Rubicon’s high-level method call syntax provided by
ObjCInstancecan be used instead ofsend_message(). This syntax is almost always more convenient to use, more readable and less error-prone.send_message()should only be used in cases not supported by the high-level syntax.Disallowed passing class names as
str/bytesas thereceiverargument ofsend_message(). If you need to send a message to a class object (i. e. call a class method), useObjCClassorget_class()to look up the class, and pass the resultingObjCClassorClassobject as the receiver.Disallowed passing
c_void_pobjects as thereceiverargument ofsend_message(). Thereceiverargument now has to be of typeobjc_id, or one of its subclasses (such asClass), or one of its high-level equivalents (such asObjCInstance). All Objective-C objects returned by Rubicon’s high-level and low-level APIs have one of these types. If you need to send a message to an object pointer stored asc_void_p,cast()it toobjc_idfirst.Removed default values for
send_message()’srestypeandargtypeskeyword arguments. Everysend_message()call now needs to have its return and argument types set explicitly. This ensures that all arguments and the return value are converted correctly between (Objective-)C and Python.Disallowed passing more argument values than there are argument types in
argtypes. This was previously allowed to support calling variadic methods - any arguments beyond the types set inargtypeswould be passed as varargs. However, this feature was easy to misuse by accident, as it allowed passing extra arguments to any method, even though most Objective-C methods are not variadic. Extra arguments passed this way were silently ignored without causing an error or a crash.To prevent accidentally passing too many arguments like this, the number of arguments now has to exactly match the number of
argtypes. Variadic methods can still be called, but the varargs now need to be passed as a list into the separatevarargskeyword arugment. (#174)Removed the
rubicon.objc.core_foundationmodule. This was an internal module with few remaining contents and should not have any external uses. If you need to call Core Foundation functions in your code, please load the framework yourself usingload_library('CoreFoundation')and define the types and functions that you need. (#175)Removed the
ObjCMethodclass from the public API, as there was no good way to use it from external code. (#177)
Misc¶
0.3.1¶
Added a workaround for bpo-36880, which caused a “deallocating None” crash when returning structs from methods very often.
Added macOS High Sierra (10.13) and macOS Mojave (10.14) to the test matrix.
Renamed the
rubicon.objc.asyncmodule torubicon.objc.eventloopto avoid conflicts with the Python 3.6asynckeyword.Removed support for Python 3.4.
Removed OS X Yosemite (10.10) from the test matrix. This version is (and older ones are) still supported on a best-effort basis, but compatibility is not tested automatically.
0.3.0¶
Added Pythonic operators and methods on
NSStringobjects, similar to those forNSArrayandNSDictionary.Removed automatic conversion of
NSStringobjects tostrwhen returned from Objective-C methods. This feature made it difficult to call Objective-C methods onNSStringobjects, because there was no easy way to prevent the automatic conversion.In most cases, this change will not affect existing code, because
NSStringobjects now support operations similar tostr. If an actualstrobject is required, theNSStringobject can be wrapped in astrcall to convert it.Added support for
objc_propertys with non-object types.Added public
get_ivarandset_ivarfunctions for manipulating ivars.Changed the implementation of
objc_propertyto use ivars instead of Python attributes for storage. This fixes name conflicts in some situations.Added the
load_library()function for loadingCDLLs by their name instead of their full path.Split the high-level Rubicon API (
ObjCInstance,ObjCClass, etc.) out ofrubicon.objc.runtimeinto a separaterubicon.objc.apimodule. Theruntimemodule now only contains low-level runtime interfaces likelibobjc.This is mostly an internal change, existing code will not be affected unless it imports names directly from
rubicon.objc.runtime.Moved
c_ptrdiff_tfromrubicon.objc.runtimetorubicon.objc.types.Removed some rarely used names (
IMP,Class,Ivar,Method,get_ivar(),objc_id,objc_property_t,set_ivar()) from the mainrubicon.objcnamespace.If needed, these names can be imported explicitly from the
rubicon.objc.runtimemodule.Fixed
objc_propertysetters on non-macOS platforms. (cculianu)Fixed various bugs in the collection
ObjCInstancesubclasses:Fixed getting/setting/deleting items or slices with indices lower than
-len(obj). Previously this crashed Python, now anIndexErroris raised.Fixed slices with step size 0. Previously they were ignored and 1 was incorrectly used as the step size, now an
IndexErroris raised.Fixed equality checks between Objective-C arrays/dictionaries and non-sequence/mapping objects. Previously this incorrectly raised a
TypeError, now it returnsFalse.Fixed equality checks between Objective-C arrays and sequences of different lengths. Previously this incorrectly returned
Trueif the shorter sequence was a prefix of the longer one, nowFalseis returned.Fixed calling
popitemon an empty Objective-C dictionary. Previously this crashed Python, now aKeyErroris raised.Fixed calling
updatewith both a mapping and keyword arguments on an Objective-C dictionary. Previously the kwargs were incorrectly ignored if a mapping was given, now both are respected.Fixed calling methods using kwarg syntax if a superclass and subclass define methods with the same prefix, but different names. For example, if a superclass had a method
initWithFoo:bar:and the subclassinitWithFoo:spam:, the former could not be called on instances of the subclass.Fixed the internal
ctypes_patchmodule so it no longer depends on a non-public CPython function.
0.2.10¶
Rewrote almost all Core Foundation-based functions to use Foundation instead.
The functions
from_valueandNSDecimalNumber.from_decimalhave been removed and replaced byns_from_py.The function
atis now an alias forns_from_py.The function
is_strhas been removed.is_str(obj)calls should be replaced withisinstance(obj, NSString).The functions
to_list,to_number,to_set,to_str, andto_valuehave been removed and replaced bypy_from_ns.
Fixed
declare_propertynot applying to subclasses of the class it was called on.Fixed
reprofObjCBoundMethodwhen the wrapped method is not anObjCMethod.Fixed the encodings of
NSPoint,NSSize, andNSRecton 32-bit systems.Renamed the
asyncsupport package toeventloopto avoid a Python 3.5+ keyword clash.
0.2.9¶
Improved handling of boolean types.
Added support for using primitives as object values (e.g, as the key/value in an NSDictonary).
Added support for passing Python lists as Objective-C NSArray arguments, and Python dicts as Objective-C NSDictionary arguments.
Corrected support to storing strings and other objects as properties on Python-defined Objective-C classes.
Added support for creating Objective-C blocks from Python callables. (ojii)
Added support for returning compound values (structures and unions) from Objective-C methods defined in Python.
Added support for creating, extending and conforming to Objective-C protocols.
Added an
objc_constconvenience function to look up global Objective-C object constants in a DLL.Added support for registering custom
ObjCInstancesubclasses to be used to represent Objective-C objects of specific classes.Added support for integrating NSApplication and UIApplication event loops with Python’s asyncio event loop.
0.2.8¶
Added support for using native Python sequence/mapping syntax with
NSArrayandNSDictionary. (jeamland)Added support for calling Objective-C blocks in Python. (ojii)
Added functions for declaring custom conversions between Objective-C type encodings and
ctypestypes.Added functions for splitting and decoding Objective-C method signature encodings.
Added automatic conversion of Python sequences to C arrays or structures in method arguments.
Extended the Objective-C type encoding decoder to support block types, bit fields (in structures), typed object pointers, and arbitrary qualifiers. If unknown pointer, array, struct or union types are encountered, they are created and registered on the fly.
Changed the
PyObjectEncodingto match the real definition ofPyObject *.Fixed the declaration of
unichar(was previouslyc_wchar, is nowc_ushort).Removed the
get_selectorfunction. Use theSELconstructor instead.Removed some runtime function declarations that are deprecated or unlikely to be useful.
Removed the encoding constants. Use
encoding_for_ctypeto get the encoding of a type.
0.2.7¶
(#40) Added the ability to explicitly declare no-attribute methods as properties. This is to enable a workaround when Apple introduces readonly properties as a way to access these methods.
0.2.6¶
Added a more compact syntax for calling Objective-C methods, using Python keyword arguments. (The old syntax is still fully supported and will not be removed; certain method names even require the old syntax.)
Added a
superclassproperty toObjCClass.
0.2.5¶
Added official support for Python 3.6.
Added keyword arguments to disable argument and/or return value conversion when calling an Objective-C method.
Added support for (
NS/UI)EdgeInsetsstructs. (Longhanks)Improved
strof Objective-C classes and objects to return thedebugDescription, or forNSStrings, the string value.Changed
ObjCClassto extendObjCInstance(in addition totype), and added anObjCMetaClassclass to represent metaclasses.Fixed some issues on non-x86_64 architectures (i386, ARM32, ARM64).
Fixed example code in README. (Dayof)
Removed the last of the Python 2 compatibility code.
0.2.4¶
Added
objc_propertyfunction for adding properties to custom Objective-C subclasses. (Longhanks)
0.2.3¶
Removed most Python 2 compatibility code.
0.2.2¶
Dropped support for Python 3.3.
Added conversion of Python
enum.Enumobjects to their underlying values when passed to an Objective-C method.Added syntax highlighting to example code in README. (stsievert)
Fixed the
setup.pyshebang line. (uranusjr)
0.2.1¶
Fixed setting of
ObjCClass/ObjCInstanceattributes that are not Objective-C properties.
0.2.0¶
First beta release.
Dropped support for Python 2. Python 3 is now required, the minimum tested version is Python 3.3.
Added error detection when attempting to create an Objective-C class with a name that is already in use.
Added automatic conversion between Python
decimal.Decimaland Objective-CNSDecimalin method arguments and return values.Added PyPy to the list of test platforms.
When subclassing Objective-C classes, the return and argument types of methods are now specified using Python type annotation syntax and
ctypestypes.Improved property support.
0.1.3¶
Fixed some issues on ARM64 (iOS 64-bit).
0.1.2¶
Fixed
NSStringconversion in a few situations.Fixed some issues on iOS and 32-bit platforms.
0.1.1¶
Objective-C classes can now be subclassed using Python class syntax, by using an
ObjCClassas the superclass.Removed
ObjCSubclass, which is made obsolete by the new subclassing syntax.
0.1.0¶
Initial alpha release.
Objective-C classes and instances can be accessed via
ObjCClassandObjCInstance.Methods can be called on classes and instances with Python method call syntax.
Properties can be read and written with Python attribute syntax.
Method return and argument types are read automatically from the method type encoding.
A small number of commonly used structs are supported as return and argument types.
Python strings are automatically converted to and from
NSStringwhen passed to or returned from a method.Subclasses of Objective-C classes can be created with
ObjCSubclass.