You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -389,14 +389,14 @@ Fory python has two implementations for the protocol:
389
389
390
390
Code structure:
391
391
392
-
-`python/pyfory/_serialization.pyx`: Core serialization logic and entry point for cython mode based on `xlang serialization format`
392
+
-`python/pyfory/serialization.pyx`: Core serialization logic and entry point for cython mode based on `xlang serialization format`
393
393
-`python/pyfory/_fory.py`: Serialization entry point for pure python mode based on `xlang serialization format`
394
394
-`python/pyfory/_registry.py`: Type registry, resolution and serializer dispatch for pure python mode, which is also used by cython mode. Cython mode use a cache to reduce invocations to this module.
395
395
-`python/pyfory/serializer.py`: Serializers for non-internal types
396
396
-`python/pyfory/includes`: Cython headers for `c++` functions and classes.
397
397
-`python/pyfory/resolver.py`: resolving shared/circular references when ref tracking is enabled in pure python mode
398
398
-`python/pyfory/format`: Fory row format encoding and decoding, arrow columnar format interoperation
399
-
-`python/pyfory/_util.pyx`: Buffer for reading/writing data, string utilities. Used by `_serialization.pyx` and `python/pyfory/format` at the same time.
399
+
-`python/pyfory/_util.pyx`: Buffer for reading/writing data, string utilities. Used by `serialization.pyx` and `python/pyfory/format` at the same time.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -155,7 +155,7 @@ cd python
155
155
python setup.py develop
156
156
```
157
157
158
-
- Use `cython --cplus -a pyfory/_serialization.pyx` to produce an annotated HTML file of the source code. Then you can analyze interaction between Python objects and Python's C API.
158
+
- Use `cython --cplus -a pyfory/serialization.pyx` to produce an annotated HTML file of the source code. Then you can analyze interaction between Python objects and Python's C API.
0 commit comments