pythonnet 3.0.3__py3-none-any.whl → 3.0.5__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.
- pythonnet/runtime/Python.Runtime.deps.json +2 -2
- pythonnet/runtime/Python.Runtime.dll +0 -0
- pythonnet/runtime/Python.Runtime.pdb +0 -0
- pythonnet/runtime/Python.Runtime.xml +42 -2
- {pythonnet-3.0.3.dist-info → pythonnet-3.0.5.dist-info}/METADATA +4 -5
- pythonnet-3.0.5.dist-info/RECORD +10 -0
- {pythonnet-3.0.3.dist-info → pythonnet-3.0.5.dist-info}/WHEEL +1 -1
- pythonnet/.gitignore +0 -3
- pythonnet/runtime/.gitkeep +0 -0
- pythonnet-3.0.3.dist-info/AUTHORS.md +0 -88
- pythonnet-3.0.3.dist-info/LICENSE +0 -21
- pythonnet-3.0.3.dist-info/RECORD +0 -14
- {pythonnet-3.0.3.dist-info → pythonnet-3.0.5.dist-info}/top_level.txt +0 -0
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETStandard,Version=v2.0": {},
|
|
9
9
|
".NETStandard,Version=v2.0/": {
|
|
10
|
-
"Python.Runtime/3.0.
|
|
10
|
+
"Python.Runtime/3.0.5": {
|
|
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.
|
|
126
|
+
"Python.Runtime/3.0.5": {
|
|
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.
|
|
3652
|
+
<member name="M:Python.Runtime.OperatorMethod.HaveReverse(System.Reflection.MethodBase)">
|
|
3613
3653
|
<summary>
|
|
3614
|
-
Check if the method
|
|
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>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pythonnet
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.5
|
|
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
|
|
@@ -17,14 +17,13 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
21
|
Classifier: Operating System :: Microsoft :: Windows
|
|
21
22
|
Classifier: Operating System :: POSIX :: Linux
|
|
22
23
|
Classifier: Operating System :: MacOS :: MacOS X
|
|
23
|
-
Requires-Python: <3.
|
|
24
|
+
Requires-Python: <3.14,>=3.7
|
|
24
25
|
Description-Content-Type: text/x-rst
|
|
25
|
-
|
|
26
|
-
License-File: AUTHORS.md
|
|
27
|
-
Requires-Dist: clr-loader <0.3.0,>=0.2.6
|
|
26
|
+
Requires-Dist: clr_loader<0.3.0,>=0.2.7
|
|
28
27
|
|
|
29
28
|
pythonnet - Python.NET
|
|
30
29
|
===========================
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
clr.py,sha256=9LJE8vehgQqkCBTDXaB4VUBbdQeDbSs5zmZ283dHLRU,96
|
|
2
|
+
pythonnet/__init__.py,sha256=XtllPI_8M3wOGAIP3oJ_nesfPFY4Ctj8WqyCGB4pJ6c,5195
|
|
3
|
+
pythonnet/runtime/Python.Runtime.deps.json,sha256=UjDs7r4COLpsRBglgJ16ilRapfHbfohTM-hhPXOwE-k,9851
|
|
4
|
+
pythonnet/runtime/Python.Runtime.dll,sha256=0gStdNwYzQcyDI5mW9MuxlSbVVzpfmHk08-IQ3pkmI4,450048
|
|
5
|
+
pythonnet/runtime/Python.Runtime.pdb,sha256=Mmt2KjJJVmHbPR7_hagFOTE5BBp31RzIjlvsTTO0fUs,203828
|
|
6
|
+
pythonnet/runtime/Python.Runtime.xml,sha256=QPOTSrqbvOsZNYextthLbFjnsexwvqdjsCJ43Qb_vhk,186909
|
|
7
|
+
pythonnet-3.0.5.dist-info/METADATA,sha256=N5A59cud6Hkj3lvgItmah6zJFt01zJVZwsSxpdEhNcw,6576
|
|
8
|
+
pythonnet-3.0.5.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
9
|
+
pythonnet-3.0.5.dist-info/top_level.txt,sha256=t_cWGAdMpwl7YO793-aNxNpIEUQhODegjRUXXd1alfA,14
|
|
10
|
+
pythonnet-3.0.5.dist-info/RECORD,,
|
pythonnet/.gitignore
DELETED
pythonnet/runtime/.gitkeep
DELETED
|
File without changes
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
# Credits
|
|
2
|
-
|
|
3
|
-
## Development Lead
|
|
4
|
-
|
|
5
|
-
- Benedikt Reinartz ([@filmor](https://github.com/filmor))
|
|
6
|
-
- Victor Milovanov ([@lostmsu](https://github.com/lostmsu))
|
|
7
|
-
|
|
8
|
-
## Former Development Leads
|
|
9
|
-
- Barton Cline ([@BartonCline](https://github.com/BartonCline))
|
|
10
|
-
- Brian Lloyd ([@brianlloyd](https://github.com/brianlloyd))
|
|
11
|
-
- David Anthoff ([@davidanthoff](https://github.com/davidanthoff))
|
|
12
|
-
- Denis Akhiyarov ([@denfromufa](https://github.com/denfromufa))
|
|
13
|
-
- Tony Roberts ([@tonyroberts](https://github.com/tonyroberts))
|
|
14
|
-
- Victor Uriarte ([@vmuriart](https://github.com/vmuriart))
|
|
15
|
-
|
|
16
|
-
## Contributors
|
|
17
|
-
|
|
18
|
-
- Alex Earl ([@slide](https://github.com/slide))
|
|
19
|
-
- Alex Helms ([@alexhelms](https://github.com/alexhelms))
|
|
20
|
-
- Alexandre Catarino([@AlexCatarino](https://github.com/AlexCatarino))
|
|
21
|
-
- Andrey Sant'Anna ([@andreydani](https://github.com/andreydani))
|
|
22
|
-
- Arvid JB ([@ArvidJB](https://github.com/ArvidJB))
|
|
23
|
-
- Avinash Maddikonda ([@SFM61319](https://github.com/SFM61319))
|
|
24
|
-
- Benoît Hudson ([@benoithudson](https://github.com/benoithudson))
|
|
25
|
-
- Bradley Friedman ([@leith-bartrich](https://github.com/leith-bartrich))
|
|
26
|
-
- Callum Noble ([@callumnoble](https://github.com/callumnoble))
|
|
27
|
-
- Christabella Irwanto([@christabella](https://github.com/christabella))
|
|
28
|
-
- Christian Heimes ([@tiran](https://github.com/tiran))
|
|
29
|
-
- Christoph Gohlke ([@cgohlke](https://github.com/cgohlke))
|
|
30
|
-
- Christopher Bremner ([@chrisjbremner](https://github.com/chrisjbremner))
|
|
31
|
-
- Christopher Pow ([@christopherpow](https://github.com/christopherpow))
|
|
32
|
-
- Daniel Abrahamsson ([@danabr](https://github.com/danabr))
|
|
33
|
-
- Daniel Fernandez ([@fdanny](https://github.com/fdanny))
|
|
34
|
-
- Daniel Santana ([@dgsantana](https://github.com/dgsantana))
|
|
35
|
-
- Dave Hirschfeld ([@dhirschfeld](https://github.com/dhirschfeld))
|
|
36
|
-
- David Lassonde ([@lassond](https://github.com/lassond))
|
|
37
|
-
- David Lechner ([@dlech](https://github.com/dlech))
|
|
38
|
-
- Dmitriy Se ([@dmitriyse](https://github.com/dmitriyse))
|
|
39
|
-
- Félix Bourbonnais ([@BadSingleton](https://github.com/BadSingleton))
|
|
40
|
-
- Florian Treurniet ([@ftreurni](https://github.com/ftreurni))
|
|
41
|
-
- He-chien Tsai ([@t3476](https://github.com/t3476))
|
|
42
|
-
- Inna Wiesel ([@inna-w](https://github.com/inna-w))
|
|
43
|
-
- Ivan Cronyn ([@cronan](https://github.com/cronan))
|
|
44
|
-
- Jan Krivanek ([@jakrivan](https://github.com/jakrivan))
|
|
45
|
-
- Jeff Reback ([@jreback](https://github.com/jreback))
|
|
46
|
-
- Jeff Robbins ([@jeff17robbins](https://github.com/jeff17robbins))
|
|
47
|
-
- Joe Frayne ([@jfrayne](https://github.com/jfrayne))
|
|
48
|
-
- Joe Lidbetter ([@jmlidbetter](https://github.com/jmlidbetter))
|
|
49
|
-
- Joe Savage ([@s4v4g3](https://github.com/s4v4g3))
|
|
50
|
-
- John Burnett ([@johnburnett](https://github.com/johnburnett))
|
|
51
|
-
- John Wilkes ([@jbw3](https://github.com/jbw3))
|
|
52
|
-
- Luke Stratman ([@lstratman](https://github.com/lstratman))
|
|
53
|
-
- Konstantin Posudevskiy ([@konstantin-posudevskiy](https://github.com/konstantin-posudevskiy))
|
|
54
|
-
- Matthias Dittrich ([@matthid](https://github.com/matthid))
|
|
55
|
-
- Meinrad Recheis ([@henon](https://github.com/henon))
|
|
56
|
-
- Mohamed Koubaa ([@koubaa](https://github.com/koubaa))
|
|
57
|
-
- Patrick Stewart ([@patstew](https://github.com/patstew))
|
|
58
|
-
- Peter Kese ([@pkese](https://github.com/pkese))
|
|
59
|
-
- Raphael Nestler ([@rnestler](https://github.com/rnestler))
|
|
60
|
-
- Rickard Holmberg ([@rickardraysearch](https://github.com/rickardraysearch))
|
|
61
|
-
- Sam Winstanley ([@swinstanley](https://github.com/swinstanley))
|
|
62
|
-
- Sean Freitag ([@cowboygneox](https://github.com/cowboygneox))
|
|
63
|
-
- Serge Weinstock ([@sweinst](https://github.com/sweinst))
|
|
64
|
-
- Simon Mourier ([@smourier](https://github.com/smourier))
|
|
65
|
-
- Tom Minka ([@tminka](https://github.com/tminka))
|
|
66
|
-
- Viktoria Kovescses ([@vkovec](https://github.com/vkovec))
|
|
67
|
-
- Ville M. Vainio ([@vivainio](https://github.com/vivainio))
|
|
68
|
-
- Virgil Dupras ([@hsoft](https://github.com/hsoft))
|
|
69
|
-
- Wenguang Yang ([@yagweb](https://github.com/yagweb))
|
|
70
|
-
- William Sardar ([@williamsardar](https://github.com/williamsardar))
|
|
71
|
-
- Xavier Dupré ([@sdpython](https://github.com/sdpython))
|
|
72
|
-
- Zane Purvis ([@zanedp](https://github.com/zanedp))
|
|
73
|
-
- ([@amos402](https://github.com/amos402))
|
|
74
|
-
- ([@bltribble](https://github.com/bltribble))
|
|
75
|
-
- ([@civilx64](https://github.com/civilx64))
|
|
76
|
-
- ([@GSPP](https://github.com/GSPP))
|
|
77
|
-
- ([@omnicognate](https://github.com/omnicognate))
|
|
78
|
-
- ([@OneBlue](https://github.com/OneBlue))
|
|
79
|
-
- ([@rico-chet](https://github.com/rico-chet))
|
|
80
|
-
- ([@rmadsen-ks](https://github.com/rmadsen-ks))
|
|
81
|
-
- ([@SnGmng](https://github.com/SnGmng))
|
|
82
|
-
- ([@stonebig](https://github.com/stonebig))
|
|
83
|
-
- ([@testrunner123](https://github.com/testrunner123))
|
|
84
|
-
- ([@DanBarzilian](https://github.com/DanBarzilian))
|
|
85
|
-
- ([@alxnull](https://github.com/alxnull))
|
|
86
|
-
- ([@gpetrou](https://github.com/gpetrou))
|
|
87
|
-
- Ehsan Iran-Nejad ([@eirannejad](https://github.com/eirannejad))
|
|
88
|
-
- ([@legomanww](https://github.com/legomanww))
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2006-2021 the contributors of the Python.NET project
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a
|
|
6
|
-
copy of this software and associated documentation files (the "Software"),
|
|
7
|
-
to deal in the Software without restriction, including without limitation
|
|
8
|
-
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
9
|
-
and/or sell copies of the Software, and to permit persons to whom the
|
|
10
|
-
Software is furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included
|
|
13
|
-
in all copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
16
|
-
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
18
|
-
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
20
|
-
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
21
|
-
DEALINGS IN THE SOFTWARE.
|
pythonnet-3.0.3.dist-info/RECORD
DELETED
|
@@ -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,,
|
|
File without changes
|