import bpy
class customPropertiesGroup(bpy.types.PropertyGroup):
objects = bpy.props.PointerProperty(type=bpy.types.Object)
bpy.utils.register_class(customPropertiesGroup)
bpy.types.Object.customList = bpy.props.CollectionProperty(type=customPropertiesGroup)
ob = bpy.context.active_object.customList.add().name = 'ob_01'
ob = bpy.context.selected_objects[1].copy()
ob = bpy.context.active_object.customList.add().name = 'ob_02'
ob = bpy.context.selected_objects[0].copy()
can i access ob_01 and does ob_01 actually store a copy of selected object [1]?