**System Information**
Operating system: Windows-10-10.0.22000-SP0 64 Bits
Graphics card: NVIDIA GeForce RTX 3060/PCIe/SSE2 NVIDIA Corporation 4.5.0 NVIDIA 511.79
**Blender Version**
Broken: version: 3.2.0 Alpha, branch: master, commit date: 2022-03-07 06:49, hash: `rBad2948face07`
Worked: (newest version of Blender that worked as expected)
**Short description of error**
When doing a link library load, the return python object is bpy_lib and not 2 objects. Also this objects doesn't seem to be fully exposed to python since it doesn't have any methods.
**Exact steps for others to reproduce the error**
1. Open factory default blender.
2. Go to Scripting tab and create the following script:
```python
import bpy
import os
filename = os.path.join(os.path.expandvars('$TMP'), 'test.blend')
bpy.data.libraries.write(filename, set(bpy.context.selected_objects), fake_user=True)
with bpy.data.libraries.load(filename, link=True) as (data_from, data_to):
data_to.objects = data_from.objects
```
3. Execute and an error should occur, stating that bpy_lib is not iterable
PS: This happens with any file