zeroc-ice 3.7.10.1__cp312-cp312-win_amd64.whl → 3.8.0.post1__cp312-cp312-win_amd64.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.
Files changed (453) hide show
  1. Glacier2/CannotCreateSessionException.py +40 -0
  2. Glacier2/IdentitySet.py +293 -0
  3. Glacier2/IdentitySet_forward.py +10 -0
  4. Glacier2/PermissionDeniedException.py +40 -0
  5. Glacier2/PermissionsVerifier.py +189 -0
  6. Glacier2/PermissionsVerifier_forward.py +10 -0
  7. Glacier2/Router.py +661 -0
  8. Glacier2/Router_forward.py +10 -0
  9. Glacier2/SSLInfo.py +62 -0
  10. Glacier2/SSLPermissionsVerifier.py +186 -0
  11. Glacier2/SSLPermissionsVerifier_forward.py +10 -0
  12. Glacier2/SSLSessionManager.py +192 -0
  13. Glacier2/SSLSessionManager_forward.py +10 -0
  14. Glacier2/Session.py +161 -0
  15. Glacier2/SessionControl.py +407 -0
  16. Glacier2/SessionControl_forward.py +10 -0
  17. Glacier2/SessionManager.py +189 -0
  18. Glacier2/SessionManager_forward.py +10 -0
  19. Glacier2/SessionNotExistException.py +39 -0
  20. Glacier2/Session_forward.py +10 -0
  21. Glacier2/StringSet.py +289 -0
  22. Glacier2/StringSet_forward.py +10 -0
  23. Glacier2/__init__.py +79 -226
  24. Glacier2/py.typed +0 -0
  25. Ice/AdapterAlreadyActiveException.py +35 -0
  26. Ice/AdapterNotFoundException.py +35 -0
  27. Ice/BTEndpointType.py +18 -0
  28. Ice/BTSEndpointType.py +18 -0
  29. Ice/Blobject.py +42 -0
  30. Ice/BoolSeq.py +10 -0
  31. Ice/Builtin.py +11 -0
  32. Ice/ByteSeq.py +10 -0
  33. Ice/Communicator.py +633 -0
  34. Ice/CompressBatch.py +25 -0
  35. Ice/Context.py +10 -0
  36. Ice/Current.py +47 -0
  37. Ice/Dispatch.py +122 -0
  38. Ice/DoubleSeq.py +10 -0
  39. Ice/EncodingVersion.py +41 -0
  40. Ice/EndpointSelectionType.py +22 -0
  41. Ice/EventLoopAdapter.py +52 -0
  42. Ice/Exception.py +27 -0
  43. Ice/FloatSeq.py +10 -0
  44. Ice/FormatType.py +22 -0
  45. Ice/Future.py +375 -0
  46. Ice/IcePyTypes.py +49 -0
  47. Ice/Identity.py +40 -0
  48. Ice/IdentitySeq.py +12 -0
  49. Ice/ImplicitContext.py +119 -0
  50. Ice/InitializationData.py +65 -0
  51. Ice/IntSeq.py +10 -0
  52. Ice/InvalidReplicaGroupIdException.py +34 -0
  53. Ice/InvocationFuture.py +155 -0
  54. Ice/LocalException.py +12 -0
  55. Ice/LocalExceptions.py +534 -0
  56. Ice/Locator.py +332 -0
  57. Ice/LocatorFinder.py +163 -0
  58. Ice/LocatorFinder_forward.py +10 -0
  59. Ice/LocatorRegistry.py +387 -0
  60. Ice/LocatorRegistry_forward.py +10 -0
  61. Ice/Locator_forward.py +10 -0
  62. Ice/LogMessage.py +51 -0
  63. Ice/LogMessageSeq.py +12 -0
  64. Ice/LogMessageType.py +51 -0
  65. Ice/LogMessageTypeSeq.py +12 -0
  66. Ice/Logger.py +100 -0
  67. Ice/LoggerAdmin.py +380 -0
  68. Ice/LoggerAdmin_forward.py +10 -0
  69. Ice/LongSeq.py +10 -0
  70. Ice/Object.py +150 -0
  71. Ice/ObjectAdapter.py +621 -0
  72. Ice/ObjectNotFoundException.py +35 -0
  73. Ice/ObjectProxySeq.py +12 -0
  74. Ice/ObjectPrx.py +934 -0
  75. Ice/ObjectPrx_forward.py +7 -0
  76. Ice/ObjectSeq.py +12 -0
  77. Ice/OperationMode.py +52 -0
  78. Ice/Process.py +217 -0
  79. Ice/ProcessLogger.py +41 -0
  80. Ice/Process_forward.py +10 -0
  81. Ice/Properties.py +371 -0
  82. Ice/PropertiesAdmin.py +302 -0
  83. Ice/PropertiesAdmin_forward.py +10 -0
  84. Ice/PropertyDict.py +10 -0
  85. Ice/ProtocolVersion.py +39 -0
  86. Ice/Proxy.py +126 -0
  87. Ice/RemoteLogger.py +238 -0
  88. Ice/RemoteLoggerAlreadyAttachedException.py +34 -0
  89. Ice/RemoteLogger_forward.py +10 -0
  90. Ice/ReplyStatus.py +91 -0
  91. Ice/Router.py +322 -0
  92. Ice/RouterFinder.py +163 -0
  93. Ice/RouterFinder_forward.py +10 -0
  94. Ice/Router_forward.py +10 -0
  95. Ice/SSLEndpointType.py +18 -0
  96. Ice/ServantLocator.py +88 -0
  97. Ice/ServerNotFoundException.py +34 -0
  98. Ice/ShortSeq.py +10 -0
  99. Ice/SliceChecksumDict.py +10 -0
  100. Ice/SliceInfo.py +22 -0
  101. Ice/SlicedData.py +14 -0
  102. Ice/StringSeq.py +10 -0
  103. Ice/TCPEndpointType.py +18 -0
  104. Ice/ToStringMode.py +34 -0
  105. Ice/UDPEndpointType.py +18 -0
  106. Ice/URIEndpointType.py +18 -0
  107. Ice/UnknownSlicedValue.py +39 -0
  108. Ice/UserException.py +18 -0
  109. Ice/Util.py +171 -0
  110. Ice/Value.py +59 -0
  111. Ice/Value_forward.py +7 -0
  112. Ice/WSEndpointType.py +18 -0
  113. Ice/WSSEndpointType.py +18 -0
  114. Ice/_ArrayUtil.py +51 -0
  115. Ice/_LoggerI.py +32 -0
  116. Ice/__init__.py +369 -2008
  117. Ice/asyncio/EventLoopAdapter.py +31 -0
  118. Ice/asyncio/__init__.py +5 -0
  119. Ice/iAPEndpointType.py +18 -0
  120. Ice/iAPSEndpointType.py +18 -0
  121. Ice/py.typed +0 -0
  122. IceBox/AlreadyStartedException.py +34 -0
  123. IceBox/AlreadyStoppedException.py +34 -0
  124. IceBox/NoSuchServiceException.py +34 -0
  125. IceBox/ServiceManager.py +447 -0
  126. IceBox/ServiceManager_forward.py +10 -0
  127. IceBox/ServiceObserver.py +229 -0
  128. IceBox/ServiceObserver_forward.py +10 -0
  129. IceBox/__init__.py +33 -10
  130. IceBox/py.typed +0 -0
  131. IceGrid/AccessDeniedException.py +40 -0
  132. IceGrid/AdapterDescriptor.py +77 -0
  133. IceGrid/AdapterDescriptorSeq.py +12 -0
  134. IceGrid/AdapterDynamicInfo.py +46 -0
  135. IceGrid/AdapterDynamicInfoSeq.py +12 -0
  136. IceGrid/AdapterInfo.py +50 -0
  137. IceGrid/AdapterInfoSeq.py +12 -0
  138. IceGrid/AdapterNotExistException.py +40 -0
  139. IceGrid/AdapterObserver.py +338 -0
  140. IceGrid/AdapterObserver_forward.py +10 -0
  141. IceGrid/AdaptiveLoadBalancingPolicy.py +48 -0
  142. IceGrid/AdaptiveLoadBalancingPolicy_forward.py +10 -0
  143. IceGrid/Admin.py +3662 -0
  144. IceGrid/AdminSession.py +1406 -0
  145. IceGrid/AdminSession_forward.py +10 -0
  146. IceGrid/Admin_forward.py +10 -0
  147. IceGrid/AllocationException.py +40 -0
  148. IceGrid/AllocationTimeoutException.py +35 -0
  149. IceGrid/ApplicationDescriptor.py +89 -0
  150. IceGrid/ApplicationDescriptorSeq.py +12 -0
  151. IceGrid/ApplicationInfo.py +63 -0
  152. IceGrid/ApplicationInfoSeq.py +12 -0
  153. IceGrid/ApplicationNotExistException.py +40 -0
  154. IceGrid/ApplicationObserver.py +374 -0
  155. IceGrid/ApplicationObserver_forward.py +10 -0
  156. IceGrid/ApplicationUpdateDescriptor.py +118 -0
  157. IceGrid/ApplicationUpdateInfo.py +51 -0
  158. IceGrid/BadSignalException.py +40 -0
  159. IceGrid/BoxedDistributionDescriptor.py +49 -0
  160. IceGrid/BoxedDistributionDescriptor_forward.py +10 -0
  161. IceGrid/BoxedString.py +45 -0
  162. IceGrid/BoxedString_forward.py +10 -0
  163. IceGrid/CommunicatorDescriptor.py +79 -0
  164. IceGrid/CommunicatorDescriptor_forward.py +10 -0
  165. IceGrid/DbEnvDescriptor.py +55 -0
  166. IceGrid/DbEnvDescriptorSeq.py +12 -0
  167. IceGrid/DeploymentException.py +40 -0
  168. IceGrid/DistributionDescriptor.py +42 -0
  169. IceGrid/FileIterator.py +246 -0
  170. IceGrid/FileIterator_forward.py +10 -0
  171. IceGrid/FileNotAvailableException.py +49 -0
  172. IceGrid/FileParser.py +182 -0
  173. IceGrid/FileParser_forward.py +10 -0
  174. IceGrid/IceBoxDescriptor.py +55 -0
  175. IceGrid/IceBoxDescriptor_forward.py +10 -0
  176. IceGrid/LoadBalancingPolicy.py +45 -0
  177. IceGrid/LoadBalancingPolicy_forward.py +10 -0
  178. IceGrid/LoadInfo.py +43 -0
  179. IceGrid/LoadSample.py +45 -0
  180. IceGrid/Locator.py +232 -0
  181. IceGrid/Locator_forward.py +10 -0
  182. IceGrid/NodeDescriptor.py +71 -0
  183. IceGrid/NodeDescriptorDict.py +12 -0
  184. IceGrid/NodeDynamicInfo.py +57 -0
  185. IceGrid/NodeDynamicInfoSeq.py +12 -0
  186. IceGrid/NodeInfo.py +64 -0
  187. IceGrid/NodeNotExistException.py +40 -0
  188. IceGrid/NodeObserver.py +424 -0
  189. IceGrid/NodeObserver_forward.py +10 -0
  190. IceGrid/NodeUnreachableException.py +46 -0
  191. IceGrid/NodeUpdateDescriptor.py +92 -0
  192. IceGrid/NodeUpdateDescriptorSeq.py +12 -0
  193. IceGrid/ObjectDescriptor.py +48 -0
  194. IceGrid/ObjectDescriptorSeq.py +12 -0
  195. IceGrid/ObjectExistsException.py +44 -0
  196. IceGrid/ObjectInfo.py +46 -0
  197. IceGrid/ObjectInfoSeq.py +12 -0
  198. IceGrid/ObjectNotRegisteredException.py +44 -0
  199. IceGrid/ObjectObserver.py +347 -0
  200. IceGrid/ObjectObserver_forward.py +10 -0
  201. IceGrid/ObserverAlreadyRegisteredException.py +49 -0
  202. IceGrid/OrderedLoadBalancingPolicy.py +41 -0
  203. IceGrid/OrderedLoadBalancingPolicy_forward.py +10 -0
  204. IceGrid/ParseException.py +40 -0
  205. IceGrid/PermissionDeniedException.py +40 -0
  206. IceGrid/PropertyDescriptor.py +39 -0
  207. IceGrid/PropertyDescriptorSeq.py +12 -0
  208. IceGrid/PropertySetDescriptor.py +49 -0
  209. IceGrid/PropertySetDescriptorDict.py +12 -0
  210. IceGrid/Query.py +451 -0
  211. IceGrid/Query_forward.py +10 -0
  212. IceGrid/RandomLoadBalancingPolicy.py +41 -0
  213. IceGrid/RandomLoadBalancingPolicy_forward.py +10 -0
  214. IceGrid/Registry.py +477 -0
  215. IceGrid/RegistryInfo.py +39 -0
  216. IceGrid/RegistryInfoSeq.py +12 -0
  217. IceGrid/RegistryNotExistException.py +40 -0
  218. IceGrid/RegistryObserver.py +282 -0
  219. IceGrid/RegistryObserver_forward.py +10 -0
  220. IceGrid/RegistryUnreachableException.py +46 -0
  221. IceGrid/Registry_forward.py +10 -0
  222. IceGrid/ReplicaGroupDescriptor.py +66 -0
  223. IceGrid/ReplicaGroupDescriptorSeq.py +12 -0
  224. IceGrid/RoundRobinLoadBalancingPolicy.py +41 -0
  225. IceGrid/RoundRobinLoadBalancingPolicy_forward.py +10 -0
  226. IceGrid/ServerDescriptor.py +107 -0
  227. IceGrid/ServerDescriptorSeq.py +12 -0
  228. IceGrid/ServerDescriptor_forward.py +10 -0
  229. IceGrid/ServerDynamicInfo.py +50 -0
  230. IceGrid/ServerDynamicInfoSeq.py +12 -0
  231. IceGrid/ServerInfo.py +62 -0
  232. IceGrid/ServerInstanceDescriptor.py +58 -0
  233. IceGrid/ServerInstanceDescriptorSeq.py +12 -0
  234. IceGrid/ServerNotExistException.py +40 -0
  235. IceGrid/ServerStartException.py +46 -0
  236. IceGrid/ServerState.py +70 -0
  237. IceGrid/ServerStopException.py +46 -0
  238. IceGrid/ServiceDescriptor.py +53 -0
  239. IceGrid/ServiceDescriptorSeq.py +12 -0
  240. IceGrid/ServiceDescriptor_forward.py +10 -0
  241. IceGrid/ServiceInstanceDescriptor.py +60 -0
  242. IceGrid/ServiceInstanceDescriptorSeq.py +12 -0
  243. IceGrid/Session.py +498 -0
  244. IceGrid/Session_forward.py +10 -0
  245. IceGrid/StringObjectProxyDict.py +12 -0
  246. IceGrid/StringStringDict.py +10 -0
  247. IceGrid/TemplateDescriptor.py +55 -0
  248. IceGrid/TemplateDescriptorDict.py +12 -0
  249. IceGrid/UserAccountMapper.py +178 -0
  250. IceGrid/UserAccountMapper_forward.py +10 -0
  251. IceGrid/UserAccountNotFoundException.py +34 -0
  252. IceGrid/__init__.py +375 -17
  253. IceGrid/py.typed +0 -0
  254. IceMX/ChildInvocationMetrics.py +56 -0
  255. IceMX/ChildInvocationMetrics_forward.py +10 -0
  256. IceMX/CollocatedMetrics.py +42 -0
  257. IceMX/CollocatedMetrics_forward.py +10 -0
  258. IceMX/ConnectionMetrics.py +53 -0
  259. IceMX/ConnectionMetrics_forward.py +10 -0
  260. IceMX/DispatchMetrics.py +57 -0
  261. IceMX/DispatchMetrics_forward.py +10 -0
  262. IceMX/InvocationMetrics.py +66 -0
  263. IceMX/InvocationMetrics_forward.py +10 -0
  264. IceMX/Metrics.py +66 -0
  265. IceMX/MetricsAdmin.py +586 -0
  266. IceMX/MetricsAdmin_forward.py +10 -0
  267. IceMX/MetricsFailures.py +42 -0
  268. IceMX/MetricsFailuresSeq.py +12 -0
  269. IceMX/MetricsMap.py +12 -0
  270. IceMX/MetricsView.py +12 -0
  271. IceMX/Metrics_forward.py +10 -0
  272. IceMX/RemoteMetrics.py +42 -0
  273. IceMX/RemoteMetrics_forward.py +10 -0
  274. IceMX/SessionMetrics.py +73 -0
  275. IceMX/SessionMetrics_forward.py +10 -0
  276. IceMX/StringIntDict.py +10 -0
  277. IceMX/SubscriberMetrics.py +57 -0
  278. IceMX/SubscriberMetrics_forward.py +10 -0
  279. IceMX/ThreadMetrics.py +59 -0
  280. IceMX/ThreadMetrics_forward.py +10 -0
  281. IceMX/TopicMetrics.py +53 -0
  282. IceMX/TopicMetrics_forward.py +10 -0
  283. IceMX/UnknownMetricsView.py +34 -0
  284. IceMX/__init__.py +75 -12
  285. IceMX/py.typed +0 -0
  286. IcePy-stubs/__init__.pyi +739 -0
  287. IcePy.cp312-win_amd64.pdb +0 -0
  288. IcePy.cp312-win_amd64.pyd +0 -0
  289. IceStorm/AlreadySubscribed.py +34 -0
  290. IceStorm/BadQoS.py +40 -0
  291. IceStorm/Finder.py +163 -0
  292. IceStorm/Finder_forward.py +10 -0
  293. IceStorm/LinkExists.py +40 -0
  294. IceStorm/LinkInfo.py +50 -0
  295. IceStorm/LinkInfoSeq.py +12 -0
  296. IceStorm/NoSuchLink.py +40 -0
  297. IceStorm/NoSuchTopic.py +40 -0
  298. IceStorm/QoS.py +10 -0
  299. IceStorm/Topic.py +825 -0
  300. IceStorm/TopicDict.py +12 -0
  301. IceStorm/TopicExists.py +40 -0
  302. IceStorm/TopicManager.py +394 -0
  303. IceStorm/TopicManager_forward.py +10 -0
  304. IceStorm/Topic_forward.py +10 -0
  305. IceStorm/__init__.py +61 -10
  306. IceStorm/py.typed +0 -0
  307. slice/DataStorm/SampleEvent.ice +29 -0
  308. slice/Glacier2/Metrics.ice +47 -88
  309. slice/Glacier2/PermissionsVerifier.ice +55 -111
  310. slice/Glacier2/Router.ice +93 -186
  311. slice/Glacier2/SSLInfo.ice +42 -59
  312. slice/Glacier2/Session.ice +133 -274
  313. slice/Ice/BuiltinSequences.ice +54 -59
  314. slice/Ice/Context.ice +24 -0
  315. slice/Ice/EndpointTypes.ice +50 -48
  316. slice/Ice/Identity.ice +36 -75
  317. slice/Ice/Locator.ice +74 -239
  318. slice/Ice/LocatorRegistry.ice +77 -0
  319. slice/Ice/Metrics.ice +201 -436
  320. slice/Ice/OperationMode.ice +38 -0
  321. slice/Ice/Process.ice +28 -64
  322. slice/Ice/PropertiesAdmin.ice +37 -87
  323. slice/Ice/PropertyDict.ice +23 -0
  324. slice/Ice/RemoteLogger.ice +126 -226
  325. slice/Ice/ReplyStatus.ice +65 -0
  326. slice/Ice/Router.ice +54 -103
  327. slice/Ice/SliceChecksumDict.ice +18 -36
  328. slice/Ice/Version.ice +43 -51
  329. slice/IceBox/ServiceManager.ice +79 -0
  330. slice/IceGrid/Admin.ice +981 -1957
  331. slice/IceGrid/Descriptor.ice +519 -1094
  332. slice/IceGrid/Exception.ice +98 -396
  333. slice/IceGrid/FileParser.ice +36 -72
  334. slice/IceGrid/Registry.ice +130 -269
  335. slice/IceGrid/Session.ice +64 -128
  336. slice/IceGrid/UserAccountMapper.ice +34 -69
  337. slice/IceStorm/IceStorm.ice +186 -414
  338. slice/IceStorm/Metrics.ice +41 -83
  339. slice2py.py +20 -21
  340. zeroc_ice-3.8.0.post1.dist-info/METADATA +106 -0
  341. zeroc_ice-3.8.0.post1.dist-info/RECORD +344 -0
  342. {zeroc_ice-3.7.10.1.dist-info → zeroc_ice-3.8.0.post1.dist-info}/WHEEL +1 -1
  343. {zeroc_ice-3.7.10.1.dist-info → zeroc_ice-3.8.0.post1.dist-info}/top_level.txt +1 -1
  344. Glacier2/Metrics_ice.py +0 -82
  345. Glacier2/PermissionsVerifierF_ice.py +0 -32
  346. Glacier2/PermissionsVerifier_ice.py +0 -284
  347. Glacier2/RouterF_ice.py +0 -28
  348. Glacier2/Router_ice.py +0 -618
  349. Glacier2/SSLInfo_ice.py +0 -179
  350. Glacier2/Session_ice.py +0 -1103
  351. Ice/BuiltinSequences_ice.py +0 -65
  352. Ice/CommunicatorF_ice.py +0 -27
  353. Ice/Communicator_ice.py +0 -469
  354. Ice/ConnectionF_ice.py +0 -33
  355. Ice/Connection_ice.py +0 -680
  356. Ice/Current_ice.py +0 -175
  357. Ice/EndpointF_ice.py +0 -45
  358. Ice/EndpointTypes_ice.py +0 -54
  359. Ice/Endpoint_ice.py +0 -304
  360. Ice/FacetMap_ice.py +0 -27
  361. Ice/Identity_ice.py +0 -133
  362. Ice/ImplicitContextF_ice.py +0 -27
  363. Ice/ImplicitContext_ice.py +0 -119
  364. Ice/InstrumentationF_ice.py +0 -38
  365. Ice/Instrumentation_ice.py +0 -566
  366. Ice/LocalException_ice.py +0 -1715
  367. Ice/LocatorF_ice.py +0 -32
  368. Ice/Locator_ice.py +0 -728
  369. Ice/LoggerF_ice.py +0 -27
  370. Ice/Logger_ice.py +0 -96
  371. Ice/Metrics_ice.py +0 -864
  372. Ice/ObjectAdapterF_ice.py +0 -27
  373. Ice/ObjectAdapter_ice.py +0 -461
  374. Ice/ObjectFactory_ice.py +0 -68
  375. Ice/PluginF_ice.py +0 -30
  376. Ice/Plugin_ice.py +0 -136
  377. Ice/ProcessF_ice.py +0 -28
  378. Ice/Process_ice.py +0 -175
  379. Ice/PropertiesAdmin_ice.py +0 -247
  380. Ice/PropertiesF_ice.py +0 -31
  381. Ice/Properties_ice.py +0 -199
  382. Ice/Py3/IceFuture.py +0 -52
  383. Ice/Py3/__init__.py +0 -3
  384. Ice/RemoteLogger_ice.py +0 -617
  385. Ice/RouterF_ice.py +0 -28
  386. Ice/Router_ice.py +0 -350
  387. Ice/ServantLocatorF_ice.py +0 -27
  388. Ice/ServantLocator_ice.py +0 -110
  389. Ice/SliceChecksumDict_ice.py +0 -29
  390. Ice/ValueFactory_ice.py +0 -125
  391. Ice/Version_ice.py +0 -217
  392. IceBox/IceBox_ice.py +0 -644
  393. IceGrid/Admin_ice.py +0 -6662
  394. IceGrid/Descriptor_ice.py +0 -1795
  395. IceGrid/Exception_ice.py +0 -592
  396. IceGrid/FileParser_ice.py +0 -171
  397. IceGrid/PluginFacade_ice.py +0 -288
  398. IceGrid/Registry_ice.py +0 -985
  399. IceGrid/Session_ice.py +0 -406
  400. IceGrid/UserAccountMapper_ice.py +0 -166
  401. IcePatch2/FileInfo_ice.py +0 -287
  402. IcePatch2/FileServer_ice.py +0 -555
  403. IcePatch2/__init__.py +0 -11
  404. IceStorm/IceStorm_ice.py +0 -1265
  405. IceStorm/Metrics_ice.py +0 -106
  406. slice/Glacier2/PermissionsVerifierF.ice +0 -30
  407. slice/Glacier2/RouterF.ice +0 -29
  408. slice/Ice/Communicator.ice +0 -676
  409. slice/Ice/CommunicatorF.ice +0 -31
  410. slice/Ice/Connection.ice +0 -516
  411. slice/Ice/ConnectionF.ice +0 -33
  412. slice/Ice/Current.ice +0 -170
  413. slice/Ice/Endpoint.ice +0 -291
  414. slice/Ice/EndpointF.ice +0 -43
  415. slice/Ice/FacetMap.ice +0 -36
  416. slice/Ice/ImplicitContext.ice +0 -119
  417. slice/Ice/ImplicitContextF.ice +0 -30
  418. slice/Ice/Instrumentation.ice +0 -509
  419. slice/Ice/InstrumentationF.ice +0 -38
  420. slice/Ice/LocalException.ice +0 -1040
  421. slice/Ice/LocatorF.ice +0 -32
  422. slice/Ice/Logger.ice +0 -99
  423. slice/Ice/LoggerF.ice +0 -31
  424. slice/Ice/ObjectAdapter.ice +0 -710
  425. slice/Ice/ObjectAdapterF.ice +0 -31
  426. slice/Ice/ObjectFactory.ice +0 -71
  427. slice/Ice/Plugin.ice +0 -131
  428. slice/Ice/PluginF.ice +0 -36
  429. slice/Ice/ProcessF.ice +0 -31
  430. slice/Ice/Properties.ice +0 -244
  431. slice/Ice/PropertiesF.ice +0 -32
  432. slice/Ice/RouterF.ice +0 -31
  433. slice/Ice/ServantLocator.ice +0 -136
  434. slice/Ice/ServantLocatorF.ice +0 -31
  435. slice/Ice/ValueFactory.ice +0 -133
  436. slice/IceBT/ConnectionInfo.ice +0 -59
  437. slice/IceBT/EndpointInfo.ice +0 -57
  438. slice/IceBT/Types.ice +0 -45
  439. slice/IceBox/IceBox.ice +0 -216
  440. slice/IceDiscovery/IceDiscovery.ice +0 -98
  441. slice/IceGrid/PluginFacade.ice +0 -329
  442. slice/IceIAP/ConnectionInfo.ice +0 -74
  443. slice/IceIAP/EndpointInfo.ice +0 -68
  444. slice/IceLocatorDiscovery/IceLocatorDiscovery.ice +0 -83
  445. slice/IcePatch2/FileInfo.ice +0 -85
  446. slice/IcePatch2/FileServer.ice +0 -191
  447. slice/IceSSL/ConnectionInfo.ice +0 -54
  448. slice/IceSSL/ConnectionInfoF.ice +0 -31
  449. slice/IceSSL/EndpointInfo.ice +0 -45
  450. zeroc_ice-3.7.10.1.dist-info/LICENSE +0 -340
  451. zeroc_ice-3.7.10.1.dist-info/METADATA +0 -97
  452. zeroc_ice-3.7.10.1.dist-info/RECORD +0 -145
  453. {zeroc_ice-3.7.10.1.dist-info → zeroc_ice-3.8.0.post1.dist-info}/entry_points.txt +0 -0
@@ -1,340 +0,0 @@
1
- GNU GENERAL PUBLIC LICENSE
2
- Version 2, June 1991
3
-
4
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
5
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6
-
7
- Everyone is permitted to copy and distribute verbatim copies
8
- of this license document, but changing it is not allowed.
9
-
10
- Preamble
11
-
12
- The licenses for most software are designed to take away your
13
- freedom to share and change it. By contrast, the GNU General Public
14
- License is intended to guarantee your freedom to share and change free
15
- software--to make sure the software is free for all its users. This
16
- General Public License applies to most of the Free Software
17
- Foundation's software and to any other program whose authors commit to
18
- using it. (Some other Free Software Foundation software is covered by
19
- the GNU Library General Public License instead.) You can apply it to
20
- your programs, too.
21
-
22
- When we speak of free software, we are referring to freedom, not
23
- price. Our General Public Licenses are designed to make sure that you
24
- have the freedom to distribute copies of free software (and charge for
25
- this service if you wish), that you receive source code or can get it
26
- if you want it, that you can change the software or use pieces of it
27
- in new free programs; and that you know you can do these things.
28
-
29
- To protect your rights, we need to make restrictions that forbid
30
- anyone to deny you these rights or to ask you to surrender the rights.
31
- These restrictions translate to certain responsibilities for you if you
32
- distribute copies of the software, or if you modify it.
33
-
34
- For example, if you distribute copies of such a program, whether
35
- gratis or for a fee, you must give the recipients all the rights that
36
- you have. You must make sure that they, too, receive or can get the
37
- source code. And you must show them these terms so they know their
38
- rights.
39
-
40
- We protect your rights with two steps: (1) copyright the software, and
41
- (2) offer you this license which gives you legal permission to copy,
42
- distribute and/or modify the software.
43
-
44
- Also, for each author's protection and ours, we want to make certain
45
- that everyone understands that there is no warranty for this free
46
- software. If the software is modified by someone else and passed on, we
47
- want its recipients to know that what they have is not the original, so
48
- that any problems introduced by others will not reflect on the original
49
- authors' reputations.
50
-
51
- Finally, any free program is threatened constantly by software
52
- patents. We wish to avoid the danger that redistributors of a free
53
- program will individually obtain patent licenses, in effect making the
54
- program proprietary. To prevent this, we have made it clear that any
55
- patent must be licensed for everyone's free use or not licensed at all.
56
-
57
- The precise terms and conditions for copying, distribution and
58
- modification follow.
59
-
60
- GNU GENERAL PUBLIC LICENSE
61
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
62
-
63
- 0. This License applies to any program or other work which contains
64
- a notice placed by the copyright holder saying it may be distributed
65
- under the terms of this General Public License. The "Program", below,
66
- refers to any such program or work, and a "work based on the Program"
67
- means either the Program or any derivative work under copyright law:
68
- that is to say, a work containing the Program or a portion of it,
69
- either verbatim or with modifications and/or translated into another
70
- language. (Hereinafter, translation is included without limitation in
71
- the term "modification".) Each licensee is addressed as "you".
72
-
73
- Activities other than copying, distribution and modification are not
74
- covered by this License; they are outside its scope. The act of
75
- running the Program is not restricted, and the output from the Program
76
- is covered only if its contents constitute a work based on the
77
- Program (independent of having been made by running the Program).
78
- Whether that is true depends on what the Program does.
79
-
80
- 1. You may copy and distribute verbatim copies of the Program's
81
- source code as you receive it, in any medium, provided that you
82
- conspicuously and appropriately publish on each copy an appropriate
83
- copyright notice and disclaimer of warranty; keep intact all the
84
- notices that refer to this License and to the absence of any warranty;
85
- and give any other recipients of the Program a copy of this License
86
- along with the Program.
87
-
88
- You may charge a fee for the physical act of transferring a copy, and
89
- you may at your option offer warranty protection in exchange for a fee.
90
-
91
- 2. You may modify your copy or copies of the Program or any portion
92
- of it, thus forming a work based on the Program, and copy and
93
- distribute such modifications or work under the terms of Section 1
94
- above, provided that you also meet all of these conditions:
95
-
96
- a) You must cause the modified files to carry prominent notices
97
- stating that you changed the files and the date of any change.
98
-
99
- b) You must cause any work that you distribute or publish, that in
100
- whole or in part contains or is derived from the Program or any
101
- part thereof, to be licensed as a whole at no charge to all third
102
- parties under the terms of this License.
103
-
104
- c) If the modified program normally reads commands interactively
105
- when run, you must cause it, when started running for such
106
- interactive use in the most ordinary way, to print or display an
107
- announcement including an appropriate copyright notice and a
108
- notice that there is no warranty (or else, saying that you provide
109
- a warranty) and that users may redistribute the program under
110
- these conditions, and telling the user how to view a copy of this
111
- License. (Exception: if the Program itself is interactive but
112
- does not normally print such an announcement, your work based on
113
- the Program is not required to print an announcement.)
114
-
115
- These requirements apply to the modified work as a whole. If
116
- identifiable sections of that work are not derived from the Program,
117
- and can be reasonably considered independent and separate works in
118
- themselves, then this License, and its terms, do not apply to those
119
- sections when you distribute them as separate works. But when you
120
- distribute the same sections as part of a whole which is a work based
121
- on the Program, the distribution of the whole must be on the terms of
122
- this License, whose permissions for other licensees extend to the
123
- entire whole, and thus to each and every part regardless of who wrote it.
124
-
125
- Thus, it is not the intent of this section to claim rights or contest
126
- your rights to work written entirely by you; rather, the intent is to
127
- exercise the right to control the distribution of derivative or
128
- collective works based on the Program.
129
-
130
- In addition, mere aggregation of another work not based on the Program
131
- with the Program (or with a work based on the Program) on a volume of
132
- a storage or distribution medium does not bring the other work under
133
- the scope of this License.
134
-
135
- 3. You may copy and distribute the Program (or a work based on it,
136
- under Section 2) in object code or executable form under the terms of
137
- Sections 1 and 2 above provided that you also do one of the following:
138
-
139
- a) Accompany it with the complete corresponding machine-readable
140
- source code, which must be distributed under the terms of Sections
141
- 1 and 2 above on a medium customarily used for software interchange; or,
142
-
143
- b) Accompany it with a written offer, valid for at least three
144
- years, to give any third party, for a charge no more than your
145
- cost of physically performing source distribution, a complete
146
- machine-readable copy of the corresponding source code, to be
147
- distributed under the terms of Sections 1 and 2 above on a medium
148
- customarily used for software interchange; or,
149
-
150
- c) Accompany it with the information you received as to the offer
151
- to distribute corresponding source code. (This alternative is
152
- allowed only for noncommercial distribution and only if you
153
- received the program in object code or executable form with such
154
- an offer, in accord with Subsection b above.)
155
-
156
- The source code for a work means the preferred form of the work for
157
- making modifications to it. For an executable work, complete source
158
- code means all the source code for all modules it contains, plus any
159
- associated interface definition files, plus the scripts used to
160
- control compilation and installation of the executable. However, as a
161
- special exception, the source code distributed need not include
162
- anything that is normally distributed (in either source or binary
163
- form) with the major components (compiler, kernel, and so on) of the
164
- operating system on which the executable runs, unless that component
165
- itself accompanies the executable.
166
-
167
- If distribution of executable or object code is made by offering
168
- access to copy from a designated place, then offering equivalent
169
- access to copy the source code from the same place counts as
170
- distribution of the source code, even though third parties are not
171
- compelled to copy the source along with the object code.
172
-
173
- 4. You may not copy, modify, sublicense, or distribute the Program
174
- except as expressly provided under this License. Any attempt
175
- otherwise to copy, modify, sublicense or distribute the Program is
176
- void, and will automatically terminate your rights under this License.
177
- However, parties who have received copies, or rights, from you under
178
- this License will not have their licenses terminated so long as such
179
- parties remain in full compliance.
180
-
181
- 5. You are not required to accept this License, since you have not
182
- signed it. However, nothing else grants you permission to modify or
183
- distribute the Program or its derivative works. These actions are
184
- prohibited by law if you do not accept this License. Therefore, by
185
- modifying or distributing the Program (or any work based on the
186
- Program), you indicate your acceptance of this License to do so, and
187
- all its terms and conditions for copying, distributing or modifying
188
- the Program or works based on it.
189
-
190
- 6. Each time you redistribute the Program (or any work based on the
191
- Program), the recipient automatically receives a license from the
192
- original licensor to copy, distribute or modify the Program subject to
193
- these terms and conditions. You may not impose any further
194
- restrictions on the recipients' exercise of the rights granted herein.
195
- You are not responsible for enforcing compliance by third parties to
196
- this License.
197
-
198
- 7. If, as a consequence of a court judgment or allegation of patent
199
- infringement or for any other reason (not limited to patent issues),
200
- conditions are imposed on you (whether by court order, agreement or
201
- otherwise) that contradict the conditions of this License, they do not
202
- excuse you from the conditions of this License. If you cannot
203
- distribute so as to satisfy simultaneously your obligations under this
204
- License and any other pertinent obligations, then as a consequence you
205
- may not distribute the Program at all. For example, if a patent
206
- license would not permit royalty-free redistribution of the Program by
207
- all those who receive copies directly or indirectly through you, then
208
- the only way you could satisfy both it and this License would be to
209
- refrain entirely from distribution of the Program.
210
-
211
- If any portion of this section is held invalid or unenforceable under
212
- any particular circumstance, the balance of the section is intended to
213
- apply and the section as a whole is intended to apply in other
214
- circumstances.
215
-
216
- It is not the purpose of this section to induce you to infringe any
217
- patents or other property right claims or to contest validity of any
218
- such claims; this section has the sole purpose of protecting the
219
- integrity of the free software distribution system, which is
220
- implemented by public license practices. Many people have made
221
- generous contributions to the wide range of software distributed
222
- through that system in reliance on consistent application of that
223
- system; it is up to the author/donor to decide if he or she is willing
224
- to distribute software through any other system and a licensee cannot
225
- impose that choice.
226
-
227
- This section is intended to make thoroughly clear what is believed to
228
- be a consequence of the rest of this License.
229
-
230
- 8. If the distribution and/or use of the Program is restricted in
231
- certain countries either by patents or by copyrighted interfaces, the
232
- original copyright holder who places the Program under this License
233
- may add an explicit geographical distribution limitation excluding
234
- those countries, so that distribution is permitted only in or among
235
- countries not thus excluded. In such case, this License incorporates
236
- the limitation as if written in the body of this License.
237
-
238
- 9. The Free Software Foundation may publish revised and/or new versions
239
- of the General Public License from time to time. Such new versions will
240
- be similar in spirit to the present version, but may differ in detail to
241
- address new problems or concerns.
242
-
243
- Each version is given a distinguishing version number. If the Program
244
- specifies a version number of this License which applies to it and "any
245
- later version", you have the option of following the terms and conditions
246
- either of that version or of any later version published by the Free
247
- Software Foundation. If the Program does not specify a version number of
248
- this License, you may choose any version ever published by the Free Software
249
- Foundation.
250
-
251
- 10. If you wish to incorporate parts of the Program into other free
252
- programs whose distribution conditions are different, write to the author
253
- to ask for permission. For software which is copyrighted by the Free
254
- Software Foundation, write to the Free Software Foundation; we sometimes
255
- make exceptions for this. Our decision will be guided by the two goals
256
- of preserving the free status of all derivatives of our free software and
257
- of promoting the sharing and reuse of software generally.
258
-
259
- NO WARRANTY
260
-
261
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
262
- FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
263
- OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
264
- PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
265
- OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
266
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
267
- TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
268
- PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
269
- REPAIR OR CORRECTION.
270
-
271
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
272
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
273
- REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
274
- INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
275
- OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
276
- TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
277
- YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
278
- PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
279
- POSSIBILITY OF SUCH DAMAGES.
280
-
281
- END OF TERMS AND CONDITIONS
282
-
283
- How to Apply These Terms to Your New Programs
284
-
285
- If you develop a new program, and you want it to be of the greatest
286
- possible use to the public, the best way to achieve this is to make it
287
- free software which everyone can redistribute and change under these terms.
288
-
289
- To do so, attach the following notices to the program. It is safest
290
- to attach them to the start of each source file to most effectively
291
- convey the exclusion of warranty; and each file should have at least
292
- the "copyright" line and a pointer to where the full notice is found.
293
-
294
- <one line to give the program's name and a brief idea of what it does.>
295
- Copyright (C) <year> <name of author>
296
-
297
- This program is free software; you can redistribute it and/or modify
298
- it under the terms of the GNU General Public License as published by
299
- the Free Software Foundation; either version 2 of the License, or
300
- (at your option) any later version.
301
-
302
- This program is distributed in the hope that it will be useful,
303
- but WITHOUT ANY WARRANTY; without even the implied warranty of
304
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
305
- GNU General Public License for more details.
306
-
307
- You should have received a copy of the GNU General Public License
308
- along with this program; if not, write to the Free Software
309
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
310
-
311
- Also add information on how to contact you by electronic and paper mail.
312
-
313
- If the program is interactive, make it output a short notice like this
314
- when it starts in an interactive mode:
315
-
316
- Gnomovision version 69, Copyright (C) year name of author
317
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
318
- This is free software, and you are welcome to redistribute it
319
- under certain conditions; type `show c' for details.
320
-
321
- The hypothetical commands `show w' and `show c' should show the appropriate
322
- parts of the General Public License. Of course, the commands you use may
323
- be called something other than `show w' and `show c'; they could even be
324
- mouse-clicks or menu items--whatever suits your program.
325
-
326
- You should also get your employer (if you work as a programmer) or your
327
- school, if any, to sign a "copyright disclaimer" for the program, if
328
- necessary. Here is a sample; alter the names:
329
-
330
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
331
- `Gnomovision' (which makes passes at compilers) written by James Hacker.
332
-
333
- <signature of Ty Coon>, 1 April 1989
334
- Ty Coon, President of Vice
335
-
336
- This General Public License does not permit incorporating your program into
337
- proprietary programs. If your program is a subroutine library, you may
338
- consider it more useful to permit linking proprietary applications with the
339
- library. If this is what you want to do, use the GNU Library General
340
- Public License instead of this License.
@@ -1,97 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: zeroc-ice
3
- Version: 3.7.10.1
4
- Summary: Ice is a comprehensive RPC framework with support for Python, C++, .NET, Java, JavaScript and more.
5
- Home-page: https://zeroc.com
6
- Author: ZeroC, Inc.
7
- Author-email: info@zeroc.com
8
- License: GPL v2 with exceptions
9
- Keywords: RPC distributed systems development
10
- Classifier: Development Status :: 5 - Production/Stable
11
- Classifier: Intended Audience :: Developers
12
- Classifier: Topic :: Software Development :: Build Tools
13
- Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
14
- Classifier: Programming Language :: Python :: 2
15
- Classifier: Programming Language :: Python :: 2.7
16
- Classifier: Programming Language :: Python :: 3
17
- Classifier: Programming Language :: Python :: 3.0
18
- Classifier: Programming Language :: Python :: 3.1
19
- Classifier: Programming Language :: Python :: 3.2
20
- Classifier: Programming Language :: Python :: 3.3
21
- Classifier: Programming Language :: Python :: 3.4
22
- Classifier: Programming Language :: Python :: 3.5
23
- Classifier: Programming Language :: Python :: 3.6
24
- Classifier: Programming Language :: Python :: 3.7
25
- Classifier: Programming Language :: Python :: 3.8
26
- Classifier: Programming Language :: Python :: 3.9
27
- Classifier: Programming Language :: Python :: 3.10
28
- Classifier: Programming Language :: Python :: 3.11
29
- License-File: LICENSE
30
-
31
- The Internet Communications Engine (Ice) provides a robust, proven platform for
32
- developing mission-critical networked applications. Let Ice handle all of the
33
- low-level details such as network connections, serialization, and concurrency so
34
- that you can focus on your application logic.
35
-
36
- The Ice Python extension makes the full Ice feature set available to Python
37
- developers, including:
38
-
39
- * Client and server support
40
- * Synchronous and asynchronous invocations
41
- * Communicate via TCP, SSL, UDP, multicast, and WebSocket transports
42
- * Supports IPv4 and IPv6
43
- * Intuitive mapping from Slice to Python
44
-
45
- To give you an idea of what it's like to use Ice in Python, here's a complete
46
- program that tests whether a remote Ice object is available:
47
-
48
- ::
49
-
50
- import sys, Ice
51
- with Ice.initialize(sys.argv) as communicator:
52
- obj = communicator.stringToProxy("hello:tcp -h myhost.mydomain.com -p 10000")
53
- obj.ice_ping()
54
-
55
- With support for Python2 and Python3, you can easily add Ice to your existing
56
- Python infrastructure and discover how easy it is to build distributed
57
- applications with Ice.
58
-
59
- Package Contents
60
- ----------------
61
-
62
- This package includes the Ice extension for Python, the standard Slice
63
- definition files, and the Slice-to-Python compiler. You will need to install a
64
- full Ice distribution if you want to use other Ice language mappings, or Ice
65
- services such as IceGrid, IceStorm and Glacier2.
66
-
67
- Installation
68
- ------------
69
-
70
- We recommend using ``pip`` or ``easy_install`` to install this package. If you
71
- install using ``python setup.py install`` instead, be aware that the Slice-to-
72
- Python compiler (``slice2py``) will not be available.
73
-
74
- By default, Ice is built statically with the package. On Linux and macOS, you
75
- can instead build the package with the system-installed Ice shared libraries.
76
- To do so, you can provide the ```--with-installed-ice``` option to
77
- ```setup.py``` install. With ```pip```, you should pass the
78
- ```--install-option="--with-installed-ice"``` option to pip install.
79
-
80
- Home Page
81
- ---------
82
-
83
- Visit `ZeroC's home page <https://zeroc.com>`_ for the latest news and
84
- information about Ice.
85
-
86
- Documentation
87
- -------------
88
-
89
- We provide extensive `online documentation
90
- <https://doc.zeroc.com/ice/3.7>`_ for Ice, the Python extension, and the
91
- other Ice language mappings and services.
92
-
93
- Support
94
- -------
95
-
96
- Join us on our `user forums <https://zeroc.com/forums/forum.php>`_ if you have
97
- questions about Ice.
@@ -1,145 +0,0 @@
1
- IcePy.cp312-win_amd64.pyd,sha256=Zq1j9I7lrz-Q0Tstlm69oAFFgmuRtCOsUZYyrCKGphw,6384640
2
- slice2py.py,sha256=-GgKtET_hEmUCLj_QBsBAFoUU_yV7uLIb73G__SQhG8,375
3
- Glacier2/Metrics_ice.py,sha256=wHwWkhBHAg-4HM6Hzu1Z8PYKV33AtErf6OG1D-VWWrA,2856
4
- Glacier2/PermissionsVerifierF_ice.py,sha256=0Kb2UeonGqVW-5S4xuk7rex2f2aalACydu7LigxsjCs,934
5
- Glacier2/PermissionsVerifier_ice.py,sha256=T4-SjobBQq9pkV2QVVEMoUTA3fqYYDGGIOvAzS0C0s4,12789
6
- Glacier2/RouterF_ice.py,sha256=YGf0gI54wfNA2eib1eabqo3s39X963sNWVfrIKne1HQ,589
7
- Glacier2/Router_ice.py,sha256=v5CGvvbTMKt2HBFSr_5LbxQdhLWHSfk4jJzF70_Audc,30522
8
- Glacier2/SSLInfo_ice.py,sha256=c77Nk1Q-eJ0_PyldSGKJ1_TmnD2P-nEmS29x3FqqDIw,6070
9
- Glacier2/Session_ice.py,sha256=ud9qCW3jEq3WL1jF1GEUDCjN_0AcEDMotjWykyChb6Q,46089
10
- Glacier2/__init__.py,sha256=fba2O-gz29oKSDnbYrl1rs3uhFbaCt-mFOzrf0RQsg8,8184
11
- Ice/BuiltinSequences_ice.py,sha256=NA5mozmLW4aQeihJ2afddPLDuotyhz53Ka4RPpn14NM,2415
12
- Ice/CommunicatorF_ice.py,sha256=ZyJ7RR2PoI7Z7Aj2Klsmze2nd7NMoRHR45JSaGixcQY,497
13
- Ice/Communicator_ice.py,sha256=g-kccsIYKprAPaI06QROBjbKesoH932PkYUeZcpBtg4,21620
14
- Ice/ConnectionF_ice.py,sha256=eFUfyhniqn1UB6PLWgfn1aIiqV7huhflanv6M7l1g9Y,735
15
- Ice/Connection_ice.py,sha256=FWWECiDmpD8e_fwli3NrHDVuqcrsAYIuBV91oZPTRYk,27714
16
- Ice/Current_ice.py,sha256=E3DqVWxs_Qg617bcJq_DEoIRGFusFNjBj_soev1UQp4,6664
17
- Ice/EndpointF_ice.py,sha256=HQCJMzyJTtDCwXeX8S7l-afgA63JqYcfRrV5U5jG2Ng,1221
18
- Ice/EndpointTypes_ice.py,sha256=MXivQnm-9BCINnUZ-sZtgdLUuNGdh07TxUSDBdiozgA,1666
19
- Ice/Endpoint_ice.py,sha256=QU0TBkK1CYrToS6vVc07ThmmGZtePhCTfLYwc8Lo4SY,11476
20
- Ice/FacetMap_ice.py,sha256=DIlMSe0N8pnUcyCl802HtdjMkwI01nNEKhVNUN3m7wg,524
21
- Ice/Identity_ice.py,sha256=fhTXCJjEjv_mmsCIWgaf7XZh5z4wGxB62R47Oye62ks,4033
22
- Ice/ImplicitContextF_ice.py,sha256=mMzu2dORenUuBAfV_-I4UshVGwUAgeLtumtFuCfgwTM,509
23
- Ice/ImplicitContext_ice.py,sha256=Tlwse4dcKf6AkHGL5VgrokFpkkOVXRdm2eemiWkp8Ao,4240
24
- Ice/InstrumentationF_ice.py,sha256=4cSg6R159nGq02xBmzXVxxpbfZbKIScVhzqq9GmH4YI,914
25
- Ice/Instrumentation_ice.py,sha256=7LGsKOAIaSZ4ssEraDkG8SiixHZNECzvmg7_kflrZBY,25059
26
- Ice/LocalException_ice.py,sha256=4pEzo0CCFdsXCW4iydAi1ulx2UULvlsg5C-OO72K_qU,67730
27
- Ice/LocatorF_ice.py,sha256=-Wq5fya7DidWO0CxelvyQc-pcfBpgFsfdvsqRAMGDYc,752
28
- Ice/Locator_ice.py,sha256=gaychFHzBT1n3cQbwrsjp2_Wi0U_pST6JCc6lW0x1Jo,32481
29
- Ice/LoggerF_ice.py,sha256=h7mqfBXGrklGsXNZAKKNVV3uZBss_WnsYqUqEw7DBzk,473
30
- Ice/Logger_ice.py,sha256=Q5vt78Vg7-LdUSy3hmQ9w5JSR3uuv6Mio3lHPNghbn0,2788
31
- Ice/Metrics_ice.py,sha256=i3Xf7GX2-vaNtPZosWMQY23A6iX_zuSMYs7DXuKUkVs,37354
32
- Ice/ObjectAdapterF_ice.py,sha256=sKiVh1l5DMR_kvfZyGGZweaVWR1j667omUcc83H_V0g,501
33
- Ice/ObjectAdapter_ice.py,sha256=PkrxQVtkvdD-TGEFUKjbJWqEo4nlrGg7SOk4IkT47Bk,21893
34
- Ice/ObjectFactory_ice.py,sha256=hGEjg9iMySalOEzY9juTbCgpgjpqcUaHarXPpoEU8UM,2180
35
- Ice/PluginF_ice.py,sha256=c9PfdPlqh1Ons3WlxN-jMVz26ioRXj0MiBFBchT2dzk,590
36
- Ice/Plugin_ice.py,sha256=Z8qTtXtIQDYziCGBS7NOBXxez9Avup81SuZ3j-uPqV8,4555
37
- Ice/ProcessF_ice.py,sha256=bckLBHdJ7n_KKMHLvfzv7Bkhc0GZjRr4eHS5qoAR5R8,545
38
- Ice/Process_ice.py,sha256=A-qSMXtp-UcDxRh5nTdUIHAX1D4CnN_u-efmWPdj048,6119
39
- Ice/PropertiesAdmin_ice.py,sha256=IOtIeLghwMGC8brjogCoNF9varsO26tbQG86cGw2ORA,12053
40
- Ice/PropertiesF_ice.py,sha256=iA3RxtEOgu7lbNzJoXg8jejx997lguKX_WGYt3OrqCY,696
41
- Ice/Properties_ice.py,sha256=c_C6tRS6amxBbJWzUbahjIRgqiGrW1Y5KgBa2IKBLC0,8066
42
- Ice/RemoteLogger_ice.py,sha256=Hopw8DK1VJJHljrNcPE4g4o4TZQbmlv6OuFjsuEKxoA,30370
43
- Ice/RouterF_ice.py,sha256=8odok5IMYkNhegfpZZ-z3p3dvfqTPmrBjbekvo4R2c0,539
44
- Ice/Router_ice.py,sha256=GXS1YkfE4dE3Cha1SB5DTtYXYmqwTGDw027lLXk6Yr8,14479
45
- Ice/ServantLocatorF_ice.py,sha256=oA1Bn4mNwxSEOrThsmMUfXWmitlLlKd_0YzRCh8c6s4,505
46
- Ice/ServantLocator_ice.py,sha256=G0zKaeWYscCExEFS7W2dVedEcebig133smSh_7Sl5XI,4728
47
- Ice/SliceChecksumDict_ice.py,sha256=Toc9SAnqz6DMe7nCeqC7v4rYwbrl3r3VdyKzw7nmr0c,644
48
- Ice/ValueFactory_ice.py,sha256=oj7It-2amvTPiCHDtBiCptVS-A7ccyoL1G22OpAsgQA,5288
49
- Ice/Version_ice.py,sha256=CVSZ1kjGismtPdsO4rEAkwHByNPuMNwuH3KthsOTAHU,6402
50
- Ice/__init__.py,sha256=R1QHjR-EincaHKmD1Q1VDCyEh_9FBfdOFwjA5LDuQQQ,63018
51
- Ice/Py3/IceFuture.py,sha256=mycMS54vyS0bJtUemaTckLvlxdOpa3pFtholDqPQZtA,1697
52
- Ice/Py3/__init__.py,sha256=6fCkf683KZxRL3g4S2GQE5taBW1CjDCqjMobmFhutrk,53
53
- IceBox/IceBox_ice.py,sha256=HbyCC3PwzpLlsiEFXv1EpE6nVjBIplrNxGiFVH-kks4,26668
54
- IceBox/__init__.py,sha256=1aYdh4qjohygeJddUZk0GUGBCcByprtjxoUPfzXKeBs,132
55
- IceGrid/Admin_ice.py,sha256=eJr0YMmNmqySP_kmlAvYr1EX8PWTqTzBw-T-aEVHE0w,318049
56
- IceGrid/Descriptor_ice.py,sha256=53HVaK2UmYROIvOp6o-VAxKuShbGGDRxRVd7Pgz1bQQ,74737
57
- IceGrid/Exception_ice.py,sha256=Ohr76IQzAvesNeBp3mXbnX5P5xU59teHM1JePum2cuw,23285
58
- IceGrid/FileParser_ice.py,sha256=qHNqv3gMMIMNSXLTJssjNv-EHoz7le1dg3Oyg2wh3tc,6257
59
- IceGrid/PluginFacade_ice.py,sha256=cM1pbWIPTDTOtWQdGLI50NKe54FusjMFKHAOxzXBwpc,11954
60
- IceGrid/Registry_ice.py,sha256=FPJmwuehpqoM1W9GufF_DMdHUGYY-5_kDdqEVsdoBz4,44195
61
- IceGrid/Session_ice.py,sha256=trfqLpu3S8v45pbCrqZ0k4L-q1uWtyZCTEbfmTNV6hs,18489
62
- IceGrid/UserAccountMapper_ice.py,sha256=Bdd68zFTtCNuAgEW0NeB6HSiPpAccU_c_L9XtygghyM,7398
63
- IceGrid/__init__.py,sha256=tKxtn1zFdqZI_eZ-ljM2bVLLH_N0Uafu70q0gTs-rdE,346
64
- IceMX/__init__.py,sha256=ONAJ8fB62P7bcHtOOoVh_lnnUGs_nbczv5W1gvTgNHY,185
65
- IcePatch2/FileInfo_ice.py,sha256=g7VekJKLDyP1Ckqczehc8OySypj2o2Kxs_gmUpU8P6k,9741
66
- IcePatch2/FileServer_ice.py,sha256=yh9Iy0qqo8wBCxdSyk2FMRxkAdq9BzkBapCzPB2Vyyc,27322
67
- IcePatch2/__init__.py,sha256=NY8GRlwDR-wlpe96VW3FskKNxhnO5motWJ0bKWXutSw,172
68
- IceStorm/IceStorm_ice.py,sha256=4T6LAtDBhrEUrWiPHl1-ExztmFVGWteXKsWcJfl3fTk,52798
69
- IceStorm/Metrics_ice.py,sha256=otSrxl4G1wXjagRojPFx10j8RcbXFal8wN5IaFlihpA,3438
70
- IceStorm/__init__.py,sha256=0n0m3iM5tyAFt203nQfsfG-7wlYO81AEFXlZZvNXYUI,138
71
- slice/Glacier2/Metrics.ice,sha256=WjSLqMlLIK10ChJXm1DFPPkSXK6DpKRAEyQG0ab1hRM,1328
72
- slice/Glacier2/PermissionsVerifier.ice,sha256=hxO4jfUCbFDMGwbpCqPsNJJn2FVD8pWwtgejyBgFqSU,2483
73
- slice/Glacier2/PermissionsVerifierF.ice,sha256=9MteADWlfVouqaQXNOXzH_WmiHABL2zgUeW8S-afpwY,488
74
- slice/Glacier2/Router.ice,sha256=93mCiOQItgJVGYseMnat4nahDuJAdtHXSq0KouGi5zU,5674
75
- slice/Glacier2/RouterF.ice,sha256=u89V1Dfhz9ucLtOMClcEDN8IL6rigk6h1MfxDW9FhBc,441
76
- slice/Glacier2/SSLInfo.ice,sha256=rwIlhUEy4blKnQgmSFLCzl5mS0CtNAtvxwwhCjeE770,966
77
- slice/Glacier2/Session.ice,sha256=Elx9bVJHGlIiuirmu05fjumBCOScVddmc3zuONIZQsc,5877
78
- slice/Ice/BuiltinSequences.ice,sha256=_OygWfJWlxFuyv-1A0N9TC0dcv4HBBg6zwWRUswg8Uo,985
79
- slice/Ice/Communicator.ice,sha256=lKPWh8hnqRHUZpF-BeoQEcRr-UAkR-_AyKFQPUEeefI,21425
80
- slice/Ice/CommunicatorF.ice,sha256=WEuivslA8tKOwuNcB9TXjNO0cy0-fCl7Ng-IqFzUMWU,436
81
- slice/Ice/Connection.ice,sha256=4qn_ygcW97OTYc4BoOXhecw7lJzfDpm0KYsNapjZaSk,12592
82
- slice/Ice/ConnectionF.ice,sha256=hiHCb3ru5pV89OBDNMbz6x6iy9E7B94wywxQxG-y9GQ,492
83
- slice/Ice/Current.ice,sha256=7mAlDCeckGR0ME_kM1AYX2Z6s7YNoXjJTtDHA-cgquQ,4076
84
- slice/Ice/Endpoint.ice,sha256=R1KDsJdU5PojHbUdrj5CWPl49YaXaBMq4FRbaqY9P7w,4687
85
- slice/Ice/EndpointF.ice,sha256=ibIhyqUdNi5GlpBZ1q1ru26OG9-n3bXf_Y0zC8UK9vQ,672
86
- slice/Ice/EndpointTypes.ice,sha256=j1yO_c4W5qphwhOybdQ2l7WC0c9mmyIDLlQa23NJsNU,832
87
- slice/Ice/FacetMap.ice,sha256=WXO_Z_7-_r__dUw94XchjNXRmDykBJgrAbhL5pOTXss,523
88
- slice/Ice/Identity.ice,sha256=CTsD1RNBu19mdwzt5uAWr878mKyduEKcx3lSUX87Bt8,1220
89
- slice/Ice/ImplicitContext.ice,sha256=Q_Dtr1eBKGvFkIJ--SrPej9jFpalNelE1qvpXwj1D-w,3270
90
- slice/Ice/ImplicitContextF.ice,sha256=5dhnrtO4TSL31V3JMwLvCRs-EwJ5qD1My90m9tRYbCo,438
91
- slice/Ice/Instrumentation.ice,sha256=zaMvgKHKQdYM6au5GvkY0S2DF7Go3HlSuNUyOfWQNGs,12362
92
- slice/Ice/InstrumentationF.ice,sha256=sdHu_SFwCBPruQkMxZHm6jJrFom_gfjAzvxVxBglqqc,534
93
- slice/Ice/LocalException.ice,sha256=mD40K9sYkxMzd__NQm2nOz1pglefqCecRevD3V41tjk,21122
94
- slice/Ice/Locator.ice,sha256=bBkhOS3D29dsGVUgN9NWkQ-xBk2DckbXOfSN8YUF4QU,5933
95
- slice/Ice/LocatorF.ice,sha256=A_dQQnBsuNh906MxQ1EcprMULHmFJAKSzlnknC5K05k,452
96
- slice/Ice/Logger.ice,sha256=8C4c77mZ_flc_82wm2MGg59_doYQL2bdfp1EveA2pR4,1871
97
- slice/Ice/LoggerF.ice,sha256=FZphQM5fnLFAkPONef7K2lWO9iEwj3yQ21H7dc1DGiQ,430
98
- slice/Ice/Metrics.ice,sha256=xCyXGFUYe-JzqHHj0pZ4mJVo06DYPNn1gXv4yHSfjYI,9039
99
- slice/Ice/ObjectAdapter.ice,sha256=CG8QT8UJEBYt-dUbLMFjUpaYqgjvPyoRLpvjN5wGvFE,22658
100
- slice/Ice/ObjectAdapterF.ice,sha256=uO3G0doM0uJLbHWzgA_pRdhfKkf77i0AMIRsD1UdbYo,437
101
- slice/Ice/ObjectFactory.ice,sha256=qPbnxyBob7iozF__NgfFi0MCc5QDLPPPIfEnKzETmVE,1613
102
- slice/Ice/Plugin.ice,sha256=B3cpxhGpWnW8jjk6Gd-tt6svwRzo4pS7SoUlt5ypDHw,2850
103
- slice/Ice/PluginF.ice,sha256=fGmY7O18ljQBi5KqwajGKPtkYmrhoCrhMhaUHIzoUpg,498
104
- slice/Ice/Process.ice,sha256=YoDoQB-DnHdbfq083G271hB9cq0FHPPIXCMwG5h-AOs,1231
105
- slice/Ice/ProcessF.ice,sha256=rHhR3zmrHGKIBM37qtmrjwFjvi34tIoHTjd3v6FmMzE,425
106
- slice/Ice/Properties.ice,sha256=tPK2hBzqMCVgSq7nf9HHcwaS6mYSJ_cHSd2nHjhGIiM,6944
107
- slice/Ice/PropertiesAdmin.ice,sha256=pBSeIObA1-TUIg5ijVszty_FQqRZi7LF3DqncIzO4xk,2050
108
- slice/Ice/PropertiesF.ice,sha256=5yIwGGXu1DRfP5XjAx2vmcK5x1gsVYdFfq7rEw3NL8I,461
109
- slice/Ice/RemoteLogger.ice,sha256=JGdgFDmw5cPePDG1ROKc_ZKBT4riqqW-bmO5JW1Qy7g,5277
110
- slice/Ice/Router.ice,sha256=SNHCfC3FUL2w5gjgSBIIUnDUoJgQPWckz-B2l0HkPzE,2523
111
- slice/Ice/RouterF.ice,sha256=IlY46rv1_eQKqYEPI2088oinosCNbLyk16u8GyWIUfo,424
112
- slice/Ice/ServantLocator.ice,sha256=NbHZQn6qgmt89yEGeDXpeN7GXKBm1hMuBu-5gnkc4W4,4465
113
- slice/Ice/ServantLocatorF.ice,sha256=QLfzrGdbYf4ygqwXihDR5o6gpEYm7ns9zczwLy16I_Y,438
114
- slice/Ice/SliceChecksumDict.ice,sha256=D9Eikxuo2ZNxxZQznaqNI56FCu825ps77Dz0HzRN4sg,616
115
- slice/Ice/ValueFactory.ice,sha256=cGdxWaFoScDDnSmcNGyfDndgFjTNc44ed2MZVee_HXA,3969
116
- slice/Ice/Version.ice,sha256=Fnox2JQSqZXmV9d5CXXj9_uMrRvaFlqpS8oCW5b0rsM,653
117
- slice/IceBT/ConnectionInfo.ice,sha256=HWIQPAJAC9pQPetmQIteW8JSiMdTqPfMut6p3Vc_y1Y,1079
118
- slice/IceBT/EndpointInfo.ice,sha256=pyQx-iqvoE_NRbbgaLbI-t7wdz8GzMA-B7ztDRWoDO0,821
119
- slice/IceBT/Types.ice,sha256=3OPDo5Nvc2oS9tHBn1QaRS5eBBBKQEGrXh9Bn6ChwVU,648
120
- slice/IceBox/IceBox.ice,sha256=nyfOYpBTi9blMn1lH7uBoSyA355K37fD2-67-CiT0zw,4560
121
- slice/IceDiscovery/IceDiscovery.ice,sha256=vLHbAj1MkxLe08qysUXZpfXZINXx2D42Nphem9n8Rjs,2326
122
- slice/IceGrid/Admin.ice,sha256=Tt-LYOAoasOINyNJNaHDYuyqob5ZV8CRCiq1Hs2N3NM,51347
123
- slice/IceGrid/Descriptor.ice,sha256=XSkX8GsbC5V0fiopzMnzWeivIDdPjFL5RbpvVmvmSC4,18163
124
- slice/IceGrid/Exception.ice,sha256=EprDTRdWhEKEmkslCttyzarVrniDKPPXnBNUvaXGDcw,5690
125
- slice/IceGrid/FileParser.ice,sha256=yZo5xA30YdB6iCOorohU0xHASmfCjx8fcBIWdFMP6X4,1315
126
- slice/IceGrid/PluginFacade.ice,sha256=axqXl8_x76LGi-KnEljpZWpxSmuCRyOEqceWPeJ79j8,9369
127
- slice/IceGrid/Registry.ice,sha256=9DxJvsMQAL6zY836AWtx4Yf2YnGhuDpBwg5wLzGMjIo,6584
128
- slice/IceGrid/Session.ice,sha256=pZXHmKHOL5x0InVec_JqHRtLJlxa5g3yLe65py0E940,3429
129
- slice/IceGrid/UserAccountMapper.ice,sha256=d8TuElSFSRffFQ9uiOnrSlavB4PQNSgrgfrqVBJaaE8,1478
130
- slice/IceIAP/ConnectionInfo.ice,sha256=oe51hb0_m96DNd3IOWUzpqqyw3IOCYMcu7PYVRsYakk,1049
131
- slice/IceIAP/EndpointInfo.ice,sha256=r1_xrHLNpkuR2QRoNlOdrXtc4sO_enslZQ6VhBd8BO4,1054
132
- slice/IceLocatorDiscovery/IceLocatorDiscovery.ice,sha256=0EcXUHiT-Q4BsY6A7sKevXd1pCm_AIxWUG9tTH2UmxA,1872
133
- slice/IcePatch2/FileInfo.ice,sha256=OngfNZ4VaCf-DzV3g8d5-GoJKvcbIOqV943jlYKXnuY,1347
134
- slice/IcePatch2/FileServer.ice,sha256=DO-u-d2M9B8rjooLY6Oeq5k8P3pjWfH6g69EB50pBHQ,5364
135
- slice/IceSSL/ConnectionInfo.ice,sha256=NS55dPABis9j1mdo4OvbdhDASgmIso8W8roKLnqalUU,1064
136
- slice/IceSSL/ConnectionInfoF.ice,sha256=mOAAah79ywC4bV-wIjd66Yinczvtzp99ssOsGeQ0gx4,479
137
- slice/IceSSL/EndpointInfo.ice,sha256=XyIaCT8542PqTFd0RhEsPDe5wkXNgSrEKpQ5aEEI2y4,663
138
- slice/IceStorm/IceStorm.ice,sha256=dR4revRL_tRxeVxlaHcv_AlYqp_W-tKZFTU7VtOEmxk,8330
139
- slice/IceStorm/Metrics.ice,sha256=nbeurex5uP3ZG-ugeDrYyfUVbqqOl2AedmS2oGP_Pdw,1247
140
- zeroc_ice-3.7.10.1.dist-info/LICENSE,sha256=skpsukGfldSeK7Lk3o_puxByfKu68V_1oqmh7eHf2MU,18093
141
- zeroc_ice-3.7.10.1.dist-info/METADATA,sha256=pc0Z4h72g7-r_5PeH_UKfBxx8E17LXvAxdmRXzlPTBw,3832
142
- zeroc_ice-3.7.10.1.dist-info/WHEEL,sha256=fZWyj_84lK0cA-ZNCsdwhbJl0OTrpWkxInEn424qrSs,102
143
- zeroc_ice-3.7.10.1.dist-info/entry_points.txt,sha256=-srammJsYzmJ52dOCPPnzN7uA_gdyQjGmwhkwMRoo1c,43
144
- zeroc_ice-3.7.10.1.dist-info/top_level.txt,sha256=UQzppToI2eVCY3SlI29C6wOWH4HBkK8rBCe1PWlTizg,74
145
- zeroc_ice-3.7.10.1.dist-info/RECORD,,