pythonnet 3.0.3__py3-none-any.whl → 3.0.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@
7
7
  "targets": {
8
8
  ".NETStandard,Version=v2.0": {},
9
9
  ".NETStandard,Version=v2.0/": {
10
- "Python.Runtime/3.0.3": {
10
+ "Python.Runtime/3.0.4": {
11
11
  "dependencies": {
12
12
  "Lost.Compat.NullabilityAttributes": "0.0.4",
13
13
  "Microsoft.CSharp": "4.7.0",
@@ -123,7 +123,7 @@
123
123
  }
124
124
  },
125
125
  "libraries": {
126
- "Python.Runtime/3.0.3": {
126
+ "Python.Runtime/3.0.4": {
127
127
  "type": "project",
128
128
  "serviceable": false,
129
129
  "sha512": ""
Binary file
Binary file
@@ -2833,11 +2833,51 @@
2833
2833
  Set the cause associated with the exception to cause. Use NULL to clear it. There is no type check to make sure that cause is either an exception instance or None. This steals a reference to cause.
2834
2834
  </summary>
2835
2835
  </member>
2836
+ <member name="P:Python.Runtime.RuntimeData.PostStashHook">
2837
+ <summary>
2838
+ Callback called as a last step in the serialization process
2839
+ </summary>
2840
+ </member>
2841
+ <member name="P:Python.Runtime.RuntimeData.PreRestoreHook">
2842
+ <summary>
2843
+ Callback called as the first step in the deserialization process
2844
+ </summary>
2845
+ </member>
2836
2846
  <member name="M:Python.Runtime.RuntimeData.ClearCLRData">
2837
2847
  <summary>
2838
2848
  Clears the old "clr_data" entry if a previous one is present.
2839
2849
  </summary>
2840
2850
  </member>
2851
+ <member name="M:Python.Runtime.RuntimeData.FreeSerializationData(System.String)">
2852
+ <summary>
2853
+ Removes the serialization capsule from the `sys` module object.
2854
+ </summary>
2855
+ <remarks>
2856
+ The serialization data must have been set with <code>StashSerializationData</code>
2857
+ </remarks>
2858
+ <param name="key">The name given to the capsule on the `sys` module object</param>
2859
+ </member>
2860
+ <member name="M:Python.Runtime.RuntimeData.StashSerializationData(System.String,System.IO.MemoryStream)">
2861
+ <summary>
2862
+ Stores the data in the <paramref name="stream"/> argument in a Python capsule and stores
2863
+ the capsule on the `sys` module object with the name <paramref name="key"/>.
2864
+ </summary>
2865
+ <remarks>
2866
+ No checks on pre-existing names on the `sys` module object are made.
2867
+ </remarks>
2868
+ <param name="key">The name given to the capsule on the `sys` module object</param>
2869
+ <param name="stream">A MemoryStream that contains the data to be placed in the capsule</param>
2870
+ </member>
2871
+ <member name="M:Python.Runtime.RuntimeData.GetSerializationData(System.String)">
2872
+ <summary>
2873
+ Retreives the previously stored data on a Python capsule.
2874
+ Throws if the object corresponding to the <paramref name="key"/> parameter
2875
+ on the `sys` module object is not a capsule.
2876
+ </summary>
2877
+ <param name="key">The name given to the capsule on the `sys` module object</param>
2878
+ <returns>A MemoryStream containing the previously saved serialization data.
2879
+ The stream is empty if no name matches the key. </returns>
2880
+ </member>
2841
2881
  <member name="T:Python.Runtime.TypeManager">
2842
2882
  <summary>
2843
2883
  The TypeManager class is responsible for building binary-compatible
@@ -3609,9 +3649,9 @@
3609
3649
  corresponding Python type's operator methods.
3610
3650
  </summary>
3611
3651
  </member>
3612
- <member name="M:Python.Runtime.OperatorMethod.IsReverse(System.Reflection.MethodBase)">
3652
+ <member name="M:Python.Runtime.OperatorMethod.HaveReverse(System.Reflection.MethodBase)">
3613
3653
  <summary>
3614
- Check if the method is performing a reverse operation.
3654
+ Check if the method should have a reversed operation.
3615
3655
  </summary>
3616
3656
  <param name="method">The operator method.</param>
3617
3657
  <returns></returns>
@@ -38,6 +38,7 @@
38
38
  - Dmitriy Se ([@dmitriyse](https://github.com/dmitriyse))
39
39
  - Félix Bourbonnais ([@BadSingleton](https://github.com/BadSingleton))
40
40
  - Florian Treurniet ([@ftreurni](https://github.com/ftreurni))
41
+ - Frank Witscher ([@Frawak](https://github.com/Frawak))
41
42
  - He-chien Tsai ([@t3476](https://github.com/t3476))
42
43
  - Inna Wiesel ([@inna-w](https://github.com/inna-w))
43
44
  - Ivan Cronyn ([@cronan](https://github.com/cronan))
@@ -86,3 +87,4 @@
86
87
  - ([@gpetrou](https://github.com/gpetrou))
87
88
  - Ehsan Iran-Nejad ([@eirannejad](https://github.com/eirannejad))
88
89
  - ([@legomanww](https://github.com/legomanww))
90
+ - ([@gertdreyer](https://github.com/gertdreyer))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pythonnet
3
- Version: 3.0.3
3
+ Version: 3.0.4
4
4
  Summary: .NET and Mono integration for Python
5
5
  Author-email: "The Contributors of the Python.NET Project" <pythonnet@python.org>
6
6
  License: MIT
@@ -24,7 +24,7 @@ Requires-Python: <3.13,>=3.7
24
24
  Description-Content-Type: text/x-rst
25
25
  License-File: LICENSE
26
26
  License-File: AUTHORS.md
27
- Requires-Dist: clr-loader <0.3.0,>=0.2.6
27
+ Requires-Dist: clr-loader<0.3.0,>=0.2.6
28
28
 
29
29
  pythonnet - Python.NET
30
30
  ===========================
@@ -0,0 +1,12 @@
1
+ clr.py,sha256=9LJE8vehgQqkCBTDXaB4VUBbdQeDbSs5zmZ283dHLRU,96
2
+ pythonnet/__init__.py,sha256=XtllPI_8M3wOGAIP3oJ_nesfPFY4Ctj8WqyCGB4pJ6c,5195
3
+ pythonnet/runtime/Python.Runtime.deps.json,sha256=-EO1U3VQeMYCQrfl5sJ4yISMd2IoKpe764RGauJyjxI,9851
4
+ pythonnet/runtime/Python.Runtime.dll,sha256=FCUb9Yx6vdVjv30hJPO3HlKLNfv9Pi14onDkZduGNUA,438784
5
+ pythonnet/runtime/Python.Runtime.pdb,sha256=Q9jpQe3vqnCzI5gaWwsr8NcsFba0f7iUG2nK5MzwS3E,197956
6
+ pythonnet/runtime/Python.Runtime.xml,sha256=QPOTSrqbvOsZNYextthLbFjnsexwvqdjsCJ43Qb_vhk,186909
7
+ pythonnet-3.0.4.dist-info/AUTHORS.md,sha256=IjhmEJExLdDqQAdGZmXKvnqJy95lDrwqaupG3JmZAAg,4966
8
+ pythonnet-3.0.4.dist-info/LICENSE,sha256=4dw6b_AXpoANwnpyIFAPUSuV-82ZbTjru_-FxpMkU2k,1104
9
+ pythonnet-3.0.4.dist-info/METADATA,sha256=Ox-2g15j8xknoDJjdLXKQXY0v8DFwdieGccew5jG41E,6572
10
+ pythonnet-3.0.4.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
11
+ pythonnet-3.0.4.dist-info/top_level.txt,sha256=t_cWGAdMpwl7YO793-aNxNpIEUQhODegjRUXXd1alfA,14
12
+ pythonnet-3.0.4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: bdist_wheel (0.44.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
pythonnet/.gitignore DELETED
@@ -1,3 +0,0 @@
1
- mono/
2
- netfx/
3
- runtime/
File without changes
@@ -1,14 +0,0 @@
1
- clr.py,sha256=9LJE8vehgQqkCBTDXaB4VUBbdQeDbSs5zmZ283dHLRU,96
2
- pythonnet/.gitignore,sha256=Nf87sbYHhmFOyPXmo0d8sxgjfTQODwoiI-SapnZGKFc,22
3
- pythonnet/__init__.py,sha256=XtllPI_8M3wOGAIP3oJ_nesfPFY4Ctj8WqyCGB4pJ6c,5195
4
- pythonnet/runtime/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- pythonnet/runtime/Python.Runtime.deps.json,sha256=1K_KLH_41xLmCIjG1n7OZBjr58Nvuqx7GOc1K9upU78,9851
6
- pythonnet/runtime/Python.Runtime.dll,sha256=IoIoaQI0gubRUxSoy9fLcA5cHvTYns_2X_QUSxhA2nk,431104
7
- pythonnet/runtime/Python.Runtime.pdb,sha256=7W0p042i7EfjhxXzg4vbELeqQ1zLRUYWtKGcNDkPjOs,193304
8
- pythonnet/runtime/Python.Runtime.xml,sha256=n3gTXhdcYlt-ldAyj-74ht0Aitn1HVGNEs9BQYTeyJk,184718
9
- pythonnet-3.0.3.dist-info/AUTHORS.md,sha256=ujM7JbW-qaex1j7NW6VOGn1h8TIGzGh4l4oIbiPjHhI,4857
10
- pythonnet-3.0.3.dist-info/LICENSE,sha256=4dw6b_AXpoANwnpyIFAPUSuV-82ZbTjru_-FxpMkU2k,1104
11
- pythonnet-3.0.3.dist-info/METADATA,sha256=tZNLCNTKWUXkZOqW60VCL3VzP1FYNs8iQANnzBMJDco,6573
12
- pythonnet-3.0.3.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
13
- pythonnet-3.0.3.dist-info/top_level.txt,sha256=t_cWGAdMpwl7YO793-aNxNpIEUQhODegjRUXXd1alfA,14
14
- pythonnet-3.0.3.dist-info/RECORD,,