(thread_id)
| 157 | errors = [] |
| 158 | |
| 159 | def serialize_data(thread_id): |
| 160 | try: |
| 161 | person = Person(name=f"User{thread_id}", age=25) |
| 162 | data = fory.serialize(person) |
| 163 | result = fory.deserialize(data) |
| 164 | results.append(result) |
| 165 | except Exception as e: |
| 166 | errors.append((thread_id, e)) |
| 167 | |
| 168 | threads = [] |
| 169 | for i in range(5): |
nothing calls this directly
no test coverage detected