pvxslibs 1.2.4a3__cp36-cp36m-manylinux1_x86_64.whl → 1.3.0__cp36-cp36m-manylinux1_x86_64.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.
Potentially problematic release.
This version of pvxslibs might be problematic. Click here for more details.
- pvxslibs/dbd/{pvxsIoc.dbd → pvxs3x.dbd} +0 -2
- pvxslibs/dbd/pvxs7x.dbd +8 -0
- pvxslibs/include/pvxs/iochooks.h +66 -0
- pvxslibs/include/pvxs/server.h +5 -1
- pvxslibs/include/pvxs/source.h +1 -1
- pvxslibs/include/pvxs/version.h +1 -1
- pvxslibs/include/pvxs/versionNum.h +2 -2
- pvxslibs/lib/libevent_core.so +0 -0
- pvxslibs/lib/libevent_core.so.2.2.0 +0 -0
- pvxslibs/lib/libevent_pthread.so +0 -0
- pvxslibs/lib/libevent_pthread.so.2.2.0 +0 -0
- pvxslibs/lib/libpvxs.so +0 -0
- pvxslibs/lib/libpvxs.so.1.3 +0 -0
- pvxslibs/lib/libpvxsIoc.so +0 -0
- pvxslibs/lib/libpvxsIoc.so.1.3 +0 -0
- pvxslibs/lib/pvxsIoc_dsoinfo.py +1 -1
- pvxslibs/lib/pvxs_dsoinfo.py +1 -1
- {pvxslibs-1.2.4a3.dist-info → pvxslibs-1.3.0.dist-info}/METADATA +2 -2
- pvxslibs-1.3.0.dist-info/RECORD +40 -0
- pvxslibs/lib/libpvxs.so.1.2 +0 -0
- pvxslibs/lib/libpvxsIoc.so.1.2 +0 -0
- pvxslibs-1.2.4a3.dist-info/RECORD +0 -39
- {pvxslibs-1.2.4a3.dist-info → pvxslibs-1.3.0.dist-info}/LICENSE +0 -0
- {pvxslibs-1.2.4a3.dist-info → pvxslibs-1.3.0.dist-info}/WHEEL +0 -0
- {pvxslibs-1.2.4a3.dist-info → pvxslibs-1.3.0.dist-info}/top_level.txt +0 -0
pvxslibs/dbd/pvxs7x.dbd
ADDED
pvxslibs/include/pvxs/iochooks.h
CHANGED
|
@@ -100,5 +100,71 @@ void testPrepare();
|
|
|
100
100
|
PVXS_IOC_API
|
|
101
101
|
void testShutdown();
|
|
102
102
|
|
|
103
|
+
/** Call just after testIocShutdownOk()
|
|
104
|
+
* @since 1.3.0
|
|
105
|
+
*/
|
|
106
|
+
PVXS_IOC_API
|
|
107
|
+
void testAfterShutdown();
|
|
108
|
+
|
|
109
|
+
/** Call just before testdbCleanup()
|
|
110
|
+
* @since 1.3.0
|
|
111
|
+
*/
|
|
112
|
+
PVXS_IOC_API
|
|
113
|
+
void testCleanupPrepare();
|
|
114
|
+
|
|
115
|
+
#if _DOXYGEN_ || EPICS_VERSION_INT >= VERSION_INT(3, 15, 0 ,0)
|
|
116
|
+
|
|
117
|
+
/** Manage Test IOC life-cycle calls.
|
|
118
|
+
*
|
|
119
|
+
* Makes necessary calls to dbUnitTest.h API
|
|
120
|
+
* as well as any added calls needed by PVXS components.
|
|
121
|
+
*
|
|
122
|
+
@code
|
|
123
|
+
* MAIN(mytest) {
|
|
124
|
+
* testPlan(0); // TODO: Set actual number of tests
|
|
125
|
+
* pvxs::testSetup();
|
|
126
|
+
* pvxs::logger_config_env(); // (optional)
|
|
127
|
+
* {
|
|
128
|
+
* TestIOC ioc; // testdbPrepare()
|
|
129
|
+
*
|
|
130
|
+
* // mytestioc.dbd must include pvxsIoc.dbd
|
|
131
|
+
* testdbReadDatabase("mytestioc.dbd", NULL, NULL);
|
|
132
|
+
* mytestioc_registerRecordDeviceDriver(pdbbase);
|
|
133
|
+
* testdbReadDatabase("sometest.db", NULL, NULL);
|
|
134
|
+
*
|
|
135
|
+
* // tests before iocInit()
|
|
136
|
+
*
|
|
137
|
+
* ioc.init();
|
|
138
|
+
*
|
|
139
|
+
* // tests after iocInit()
|
|
140
|
+
*
|
|
141
|
+
* ioc.shutdown(); // (optional) in ~TestIOC if omitted
|
|
142
|
+
* }
|
|
143
|
+
* {
|
|
144
|
+
* ... repeat ...
|
|
145
|
+
* }
|
|
146
|
+
* epicsExitCallAtExits();
|
|
147
|
+
* pvxs::cleanup_for_valgrind();
|
|
148
|
+
* }
|
|
149
|
+
@endcode
|
|
150
|
+
*
|
|
151
|
+
* @since 1.3.0
|
|
152
|
+
*/
|
|
153
|
+
class PVXS_IOC_API TestIOC final {
|
|
154
|
+
bool isRunning = false;
|
|
155
|
+
public:
|
|
156
|
+
TestIOC();
|
|
157
|
+
~TestIOC();
|
|
158
|
+
//! iocInit()
|
|
159
|
+
void init();
|
|
160
|
+
//! iocShutdown()
|
|
161
|
+
void shutdown();
|
|
162
|
+
//! between iocInit() and iocShutdown() ?
|
|
163
|
+
inline
|
|
164
|
+
bool running() const { return isRunning; }
|
|
165
|
+
};
|
|
166
|
+
|
|
167
|
+
#endif // base >= 3.15
|
|
168
|
+
|
|
103
169
|
}} // namespace pvxs::ioc
|
|
104
170
|
#endif // PVXS_IOCHOOKS_H
|
pvxslibs/include/pvxs/server.h
CHANGED
|
@@ -59,6 +59,10 @@ public:
|
|
|
59
59
|
constexpr Server() = default;
|
|
60
60
|
//! Create/allocate, but do not start, a new server with the provided config.
|
|
61
61
|
explicit Server(const Config&);
|
|
62
|
+
Server(const Server&) = default;
|
|
63
|
+
Server(Server&& o) = default;
|
|
64
|
+
Server& operator=(const Server&) = default;
|
|
65
|
+
Server& operator=(Server&& o) = default;
|
|
62
66
|
~Server();
|
|
63
67
|
|
|
64
68
|
/** Create new server based on configuration from $EPICS_PVA* environment variables.
|
|
@@ -158,7 +162,7 @@ struct PVXS_API Config {
|
|
|
158
162
|
std::vector<std::string> ignoreAddrs;
|
|
159
163
|
//! Addresses (**not** host names) to which (UDP) beacons message will be sent.
|
|
160
164
|
//! May include broadcast and/or unicast addresses.
|
|
161
|
-
//! Supplemented
|
|
165
|
+
//! Supplemented only if auto_beacon==true
|
|
162
166
|
std::vector<std::string> beaconDestinations;
|
|
163
167
|
//! TCP port to bind. Default is 5075. May be zero.
|
|
164
168
|
unsigned short tcp_port = 5075;
|
pvxslibs/include/pvxs/source.h
CHANGED
pvxslibs/include/pvxs/version.h
CHANGED
|
@@ -77,7 +77,7 @@ unsigned long version_abi_int();
|
|
|
77
77
|
|
|
78
78
|
/** Runtime ABI check.
|
|
79
79
|
*
|
|
80
|
-
* This test is only meaningful if it is
|
|
80
|
+
* This test is only meaningful if it is performed prior to any
|
|
81
81
|
* other library calls.
|
|
82
82
|
*
|
|
83
83
|
* It is guaranteed that the library has no global constructors.
|
pvxslibs/lib/libevent_core.so
CHANGED
|
Binary file
|
|
Binary file
|
pvxslibs/lib/libevent_pthread.so
CHANGED
|
Binary file
|
|
Binary file
|
pvxslibs/lib/libpvxs.so
CHANGED
|
Binary file
|
|
Binary file
|
pvxslibs/lib/libpvxsIoc.so
CHANGED
|
Binary file
|
|
Binary file
|
pvxslibs/lib/pvxsIoc_dsoinfo.py
CHANGED
|
@@ -4,7 +4,7 @@ import os
|
|
|
4
4
|
|
|
5
5
|
dsoname = 'pvxslibs.lib.pvxsIoc'
|
|
6
6
|
libname = 'libpvxsIoc.so'
|
|
7
|
-
soname = 'libpvxsIoc.so.1.
|
|
7
|
+
soname = 'libpvxsIoc.so.1.3'
|
|
8
8
|
depends = ['pvxslibs.lib.pvxs', 'pvxslibs.lib.event_core', 'epicscorelibs.lib.dbRecStd', 'epicscorelibs.lib.dbCore', 'epicscorelibs.lib.Com']
|
|
9
9
|
dir = os.path.dirname(__file__)
|
|
10
10
|
filename = os.path.join(dir, libname)
|
pvxslibs/lib/pvxs_dsoinfo.py
CHANGED
|
@@ -4,7 +4,7 @@ import os
|
|
|
4
4
|
|
|
5
5
|
dsoname = 'pvxslibs.lib.pvxs'
|
|
6
6
|
libname = 'libpvxs.so'
|
|
7
|
-
soname = 'libpvxs.so.1.
|
|
7
|
+
soname = 'libpvxs.so.1.3'
|
|
8
8
|
depends = ['epicscorelibs.lib.Com', 'pvxslibs.lib.event_core', 'pvxslibs.lib.event_pthread']
|
|
9
9
|
dir = os.path.dirname(__file__)
|
|
10
10
|
filename = os.path.join(dir, libname)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pvxslibs
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: PVXS libraries packaged for python
|
|
5
5
|
Home-page: https://mdavidsaver.github.io/pvxs
|
|
6
6
|
Author: Michael Davidsaver
|
|
@@ -24,7 +24,7 @@ Requires-Python: >=2.7
|
|
|
24
24
|
Description-Content-Type: text/markdown
|
|
25
25
|
License-File: LICENSE
|
|
26
26
|
Requires-Dist: setuptools-dso (>=2.7a1)
|
|
27
|
-
Requires-Dist: epicscorelibs (<7.0.7.99.
|
|
27
|
+
Requires-Dist: epicscorelibs (<7.0.7.99.1,>=7.0.7.99.0.2)
|
|
28
28
|
|
|
29
29
|
PVXS - PVAccess protocol library
|
|
30
30
|
================================
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
pvxslibs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
pvxslibs/path.py,sha256=nWn5TT5xkbHakc0UwiET3_NbOZg-jr4yibrGKYZ7IoU,258
|
|
3
|
+
pvxslibs/version.py,sha256=vmbnHFP7nheGuX7r7LAKgJ4c2joFyUd4BPqeM4bpUfQ,984
|
|
4
|
+
pvxslibs/dbd/pvxs3x.dbd,sha256=qswqwbXXuueC8Cp70cuD84ATVbLdIQ9WkD3i4sYEbwo,208
|
|
5
|
+
pvxslibs/dbd/pvxs7x.dbd,sha256=6NCA-v-17WExkr7jktnNw83SxeCxrldm29qkTVlRoMM,231
|
|
6
|
+
pvxslibs/include/pvxs/client.h,sha256=S-5NKislCENkrypDalm4T3ZG9Kn486w-lUQEscj-z6c,36954
|
|
7
|
+
pvxslibs/include/pvxs/data.h,sha256=19NwOI51ZHhDpjYRp0ClO9UJd8BJlP9cd7In7fLoXMs,28570
|
|
8
|
+
pvxslibs/include/pvxs/iochooks.h,sha256=V9kM38AWVZQXb5dFcH_zdWfdjeShis4CzSNZfdC6a4o,4545
|
|
9
|
+
pvxslibs/include/pvxs/log.h,sha256=2hqmFQ300vhl7mtToc4LBAVJqBgs1QMYz92pmLv1ab4,4959
|
|
10
|
+
pvxslibs/include/pvxs/netcommon.h,sha256=yrVn8qVBPCEZoW4eJZjR46axAsQr7pQi4L_MdxWByCU,2124
|
|
11
|
+
pvxslibs/include/pvxs/nt.h,sha256=AiiWlkSyfauthaGTefu0cYLr74B7TVW26yEdByeG1Ao,4761
|
|
12
|
+
pvxslibs/include/pvxs/server.h,sha256=OkAt0E9R13AWMd3to8wN2dufsn6PaGQ35orFEY_b8J4,8006
|
|
13
|
+
pvxslibs/include/pvxs/sharedArray.h,sha256=T42A8BWMYWYv2KLvXDddWWVXhzV20Xlg2q1JjbxhzAs,23838
|
|
14
|
+
pvxslibs/include/pvxs/sharedpv.h,sha256=VPrngwKEOjtGW708clV6rDtn8CarBMSkSM-S6SEmxDM,4143
|
|
15
|
+
pvxslibs/include/pvxs/source.h,sha256=gmUCzMA7IZcXOmJHoVgzRv0L1rSvreLmGC5oea7oUCM,10308
|
|
16
|
+
pvxslibs/include/pvxs/srvcommon.h,sha256=ph_7mVX2fe8dd2eBQyaYUvnDMra4SnzUrMZ99jeORGY,4523
|
|
17
|
+
pvxslibs/include/pvxs/unittest.h,sha256=uTteII0JrLhTK6dGjaInZKOwsuJ9-hockFaPwifvdbA,10182
|
|
18
|
+
pvxslibs/include/pvxs/util.h,sha256=-EcvbTWT6B3mlwgSBBmkkbSo5q7RJYZDw1aoqqN-U_E,8968
|
|
19
|
+
pvxslibs/include/pvxs/version.h,sha256=D9oRkSXI-UMTVmWFxbbpvc35fmfTsdNvqpFz6Xx-fF0,2721
|
|
20
|
+
pvxslibs/include/pvxs/versionNum.h,sha256=BB8Wmy_2A5XNYbR3mXdf-I6qCAOejvIfApzUeDMJuYU,176
|
|
21
|
+
pvxslibs/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
+
pvxslibs/lib/event_core_dsoinfo.py,sha256=ODB3bm08Mq3SrxP8VInAOHWaowhpz0lfoJZNNo1_dtw,347
|
|
23
|
+
pvxslibs/lib/event_pthread_dsoinfo.py,sha256=dgNHgYcTQgKyTvMR09zYPK3XkS4Id29u3kYC919dIUk,356
|
|
24
|
+
pvxslibs/lib/libevent_core.so,sha256=fd3JdgTpv95SAjtPB9ZRRJ_N7PxnZC93o40IhO1n39s,979428
|
|
25
|
+
pvxslibs/lib/libevent_core.so.2.2.0,sha256=fd3JdgTpv95SAjtPB9ZRRJ_N7PxnZC93o40IhO1n39s,979428
|
|
26
|
+
pvxslibs/lib/libevent_pthread.so,sha256=EJ6M9cueBh7e0YT5gLDlc8hvJ2n83FQPB2Nl014UfgM,24252
|
|
27
|
+
pvxslibs/lib/libevent_pthread.so.2.2.0,sha256=EJ6M9cueBh7e0YT5gLDlc8hvJ2n83FQPB2Nl014UfgM,24252
|
|
28
|
+
pvxslibs/lib/libpvxs.so,sha256=2uZgLGguOtxlUicoZsNH9DoXaLrr70K3TJmd_4A3dVE,1782470
|
|
29
|
+
pvxslibs/lib/libpvxs.so.1.3,sha256=2uZgLGguOtxlUicoZsNH9DoXaLrr70K3TJmd_4A3dVE,1782470
|
|
30
|
+
pvxslibs/lib/libpvxsIoc.so,sha256=f4RY2TDasw2coK8HoVFY9seAsufIKzPD76euTvvPH08,574174
|
|
31
|
+
pvxslibs/lib/libpvxsIoc.so.1.3,sha256=f4RY2TDasw2coK8HoVFY9seAsufIKzPD76euTvvPH08,574174
|
|
32
|
+
pvxslibs/lib/pvxsIoc_dsoinfo.py,sha256=yEcaR0JfFHGMQ7q4xWKQxJATIJr2OsVX_-yr9wNQJVo,465
|
|
33
|
+
pvxslibs/lib/pvxs_dsoinfo.py,sha256=ididlCsfWOHRdUPe1Gqii2Sd77dhjLMwp49mQyeSODM,407
|
|
34
|
+
pvxslibs/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
pvxslibs/test/test_load.py,sha256=mueD9wz4IBkCRS0TY76spkOS_nw4IBdkofl_fA9hIfg,995
|
|
36
|
+
pvxslibs-1.3.0.dist-info/LICENSE,sha256=XViOs7FX1SESr-qTXIin_5793B4tlaQsJdO5atkFUAg,1499
|
|
37
|
+
pvxslibs-1.3.0.dist-info/METADATA,sha256=DD2YAXCsQsGLoKdbivnWIii0XJzy7kVdc_m0J9gB0_E,1223
|
|
38
|
+
pvxslibs-1.3.0.dist-info/WHEEL,sha256=IODkjaibdQL4Y0ih2utemBolHCvYTfxEeli_9oQOqGs,109
|
|
39
|
+
pvxslibs-1.3.0.dist-info/top_level.txt,sha256=RixlMjBFoSBZhAgzdvurnG0N681VoNV0ikf00-HgXFM,9
|
|
40
|
+
pvxslibs-1.3.0.dist-info/RECORD,,
|
pvxslibs/lib/libpvxs.so.1.2
DELETED
|
Binary file
|
pvxslibs/lib/libpvxsIoc.so.1.2
DELETED
|
Binary file
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
pvxslibs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
pvxslibs/path.py,sha256=nWn5TT5xkbHakc0UwiET3_NbOZg-jr4yibrGKYZ7IoU,258
|
|
3
|
-
pvxslibs/version.py,sha256=vmbnHFP7nheGuX7r7LAKgJ4c2joFyUd4BPqeM4bpUfQ,984
|
|
4
|
-
pvxslibs/dbd/pvxsIoc.dbd,sha256=qQkW_9r54zXgXpDIcpihHQN9wcmZ9mTn61fatDe-v18,281
|
|
5
|
-
pvxslibs/include/pvxs/client.h,sha256=S-5NKislCENkrypDalm4T3ZG9Kn486w-lUQEscj-z6c,36954
|
|
6
|
-
pvxslibs/include/pvxs/data.h,sha256=19NwOI51ZHhDpjYRp0ClO9UJd8BJlP9cd7In7fLoXMs,28570
|
|
7
|
-
pvxslibs/include/pvxs/iochooks.h,sha256=DmFxY5eI_u2KltNrzP5OVPF50SptJY07Pq3TC36zNvs,3029
|
|
8
|
-
pvxslibs/include/pvxs/log.h,sha256=2hqmFQ300vhl7mtToc4LBAVJqBgs1QMYz92pmLv1ab4,4959
|
|
9
|
-
pvxslibs/include/pvxs/netcommon.h,sha256=yrVn8qVBPCEZoW4eJZjR46axAsQr7pQi4L_MdxWByCU,2124
|
|
10
|
-
pvxslibs/include/pvxs/nt.h,sha256=AiiWlkSyfauthaGTefu0cYLr74B7TVW26yEdByeG1Ao,4761
|
|
11
|
-
pvxslibs/include/pvxs/server.h,sha256=RhdfJRZepFO7kwIzAWdTmJITtg3WCBnKumk5BhkL91o,7838
|
|
12
|
-
pvxslibs/include/pvxs/sharedArray.h,sha256=T42A8BWMYWYv2KLvXDddWWVXhzV20Xlg2q1JjbxhzAs,23838
|
|
13
|
-
pvxslibs/include/pvxs/sharedpv.h,sha256=VPrngwKEOjtGW708clV6rDtn8CarBMSkSM-S6SEmxDM,4143
|
|
14
|
-
pvxslibs/include/pvxs/source.h,sha256=-mt7mQ2LiEknkEs0J9hiB8CoJtxIi_XFb5sfsPxH4rQ,10308
|
|
15
|
-
pvxslibs/include/pvxs/srvcommon.h,sha256=ph_7mVX2fe8dd2eBQyaYUvnDMra4SnzUrMZ99jeORGY,4523
|
|
16
|
-
pvxslibs/include/pvxs/unittest.h,sha256=uTteII0JrLhTK6dGjaInZKOwsuJ9-hockFaPwifvdbA,10182
|
|
17
|
-
pvxslibs/include/pvxs/util.h,sha256=-EcvbTWT6B3mlwgSBBmkkbSo5q7RJYZDw1aoqqN-U_E,8968
|
|
18
|
-
pvxslibs/include/pvxs/version.h,sha256=vJiv3HIHEag2bkTHm-XOThc_KqWV0xWQpWOzFnAbD1g,2721
|
|
19
|
-
pvxslibs/include/pvxs/versionNum.h,sha256=HSR0QJIQ_3RpbWN9BG2U_yd0-9kpXca9kVJC5tcR1ng,176
|
|
20
|
-
pvxslibs/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
pvxslibs/lib/event_core_dsoinfo.py,sha256=ODB3bm08Mq3SrxP8VInAOHWaowhpz0lfoJZNNo1_dtw,347
|
|
22
|
-
pvxslibs/lib/event_pthread_dsoinfo.py,sha256=dgNHgYcTQgKyTvMR09zYPK3XkS4Id29u3kYC919dIUk,356
|
|
23
|
-
pvxslibs/lib/libevent_core.so,sha256=m_PcheBbIk4ykGaRKA5hxdPd7w_kyPg66NxW07CcFTY,979412
|
|
24
|
-
pvxslibs/lib/libevent_core.so.2.2.0,sha256=m_PcheBbIk4ykGaRKA5hxdPd7w_kyPg66NxW07CcFTY,979412
|
|
25
|
-
pvxslibs/lib/libevent_pthread.so,sha256=HT_Cx1amypvf1lA_ZTYeuPsnV775a2KEu_BHGmYpnlg,24252
|
|
26
|
-
pvxslibs/lib/libevent_pthread.so.2.2.0,sha256=HT_Cx1amypvf1lA_ZTYeuPsnV775a2KEu_BHGmYpnlg,24252
|
|
27
|
-
pvxslibs/lib/libpvxs.so,sha256=jz4o7ujaEf8PXGtrXsMcUMf8Dm-w-VRfL7Jz6ee9v5E,1770899
|
|
28
|
-
pvxslibs/lib/libpvxs.so.1.2,sha256=jz4o7ujaEf8PXGtrXsMcUMf8Dm-w-VRfL7Jz6ee9v5E,1770899
|
|
29
|
-
pvxslibs/lib/libpvxsIoc.so,sha256=PPh5o9k5yIw1Q7_BakLIqr-TFD1dodoF2yNIe8F806k,419550
|
|
30
|
-
pvxslibs/lib/libpvxsIoc.so.1.2,sha256=PPh5o9k5yIw1Q7_BakLIqr-TFD1dodoF2yNIe8F806k,419550
|
|
31
|
-
pvxslibs/lib/pvxsIoc_dsoinfo.py,sha256=6u2ah5JWP8WAL_rS80sRU6MMzIUGZMlWRKlBa-Tj0LE,465
|
|
32
|
-
pvxslibs/lib/pvxs_dsoinfo.py,sha256=IsPWloTmzQ7jo22BhEfZd4R9snpNNOtpQ1gScn9N4OE,407
|
|
33
|
-
pvxslibs/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
pvxslibs/test/test_load.py,sha256=mueD9wz4IBkCRS0TY76spkOS_nw4IBdkofl_fA9hIfg,995
|
|
35
|
-
pvxslibs-1.2.4a3.dist-info/LICENSE,sha256=XViOs7FX1SESr-qTXIin_5793B4tlaQsJdO5atkFUAg,1499
|
|
36
|
-
pvxslibs-1.2.4a3.dist-info/METADATA,sha256=KVmD7KshNrQ0ZudOO-g5iRdwGp6WnDKXAXRrIz-8l10,1227
|
|
37
|
-
pvxslibs-1.2.4a3.dist-info/WHEEL,sha256=IODkjaibdQL4Y0ih2utemBolHCvYTfxEeli_9oQOqGs,109
|
|
38
|
-
pvxslibs-1.2.4a3.dist-info/top_level.txt,sha256=RixlMjBFoSBZhAgzdvurnG0N681VoNV0ikf00-HgXFM,9
|
|
39
|
-
pvxslibs-1.2.4a3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|