com.googler.python 1.0.0

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 (2352) hide show
  1. package/package.json +7 -0
  2. package/python3 +6 -0
  3. package/python3.4.2/bin/2to3 +5 -0
  4. package/python3.4.2/bin/2to3-3.4 +5 -0
  5. package/python3.4.2/bin/android-debian-builder +10 -0
  6. package/python3.4.2/bin/easy_install-3.4 +11 -0
  7. package/python3.4.2/bin/idle3 +5 -0
  8. package/python3.4.2/bin/idle3.4 +5 -0
  9. package/python3.4.2/bin/pip3 +11 -0
  10. package/python3.4.2/bin/pip3.4 +11 -0
  11. package/python3.4.2/bin/pydoc3 +5 -0
  12. package/python3.4.2/bin/pydoc3.4 +5 -0
  13. package/python3.4.2/bin/python3-config +111 -0
  14. package/python3.4.2/bin/python3.4 +0 -0
  15. package/python3.4.2/bin/python3.4-config +111 -0
  16. package/python3.4.2/bin/python3.4m-config +111 -0
  17. package/python3.4.2/bin/pyvenv +11 -0
  18. package/python3.4.2/bin/pyvenv-3.4 +11 -0
  19. package/python3.4.2/include/python3.4m/Python-ast.h +569 -0
  20. package/python3.4.2/include/python3.4m/Python.h +133 -0
  21. package/python3.4.2/include/python3.4m/abstract.h +1267 -0
  22. package/python3.4.2/include/python3.4m/accu.h +37 -0
  23. package/python3.4.2/include/python3.4m/asdl.h +45 -0
  24. package/python3.4.2/include/python3.4m/ast.h +22 -0
  25. package/python3.4.2/include/python3.4m/bitset.h +32 -0
  26. package/python3.4.2/include/python3.4m/bltinmodule.h +14 -0
  27. package/python3.4.2/include/python3.4m/boolobject.h +34 -0
  28. package/python3.4.2/include/python3.4m/bytearrayobject.h +62 -0
  29. package/python3.4.2/include/python3.4m/bytes_methods.h +46 -0
  30. package/python3.4.2/include/python3.4m/bytesobject.h +128 -0
  31. package/python3.4.2/include/python3.4m/cellobject.h +29 -0
  32. package/python3.4.2/include/python3.4m/ceval.h +205 -0
  33. package/python3.4.2/include/python3.4m/classobject.h +58 -0
  34. package/python3.4.2/include/python3.4m/code.h +115 -0
  35. package/python3.4.2/include/python3.4m/codecs.h +233 -0
  36. package/python3.4.2/include/python3.4m/compile.h +72 -0
  37. package/python3.4.2/include/python3.4m/complexobject.h +77 -0
  38. package/python3.4.2/include/python3.4m/datetime.h +243 -0
  39. package/python3.4.2/include/python3.4m/descrobject.h +105 -0
  40. package/python3.4.2/include/python3.4m/dictobject.h +126 -0
  41. package/python3.4.2/include/python3.4m/dtoa.h +19 -0
  42. package/python3.4.2/include/python3.4m/dynamic_annotations.h +499 -0
  43. package/python3.4.2/include/python3.4m/enumobject.h +17 -0
  44. package/python3.4.2/include/python3.4m/errcode.h +38 -0
  45. package/python3.4.2/include/python3.4m/eval.h +27 -0
  46. package/python3.4.2/include/python3.4m/fileobject.h +58 -0
  47. package/python3.4.2/include/python3.4m/fileutils.h +79 -0
  48. package/python3.4.2/include/python3.4m/floatobject.h +128 -0
  49. package/python3.4.2/include/python3.4m/frameobject.h +95 -0
  50. package/python3.4.2/include/python3.4m/funcobject.h +89 -0
  51. package/python3.4.2/include/python3.4m/genobject.h +46 -0
  52. package/python3.4.2/include/python3.4m/graminit.h +84 -0
  53. package/python3.4.2/include/python3.4m/grammar.h +93 -0
  54. package/python3.4.2/include/python3.4m/import.h +130 -0
  55. package/python3.4.2/include/python3.4m/intrcheck.h +21 -0
  56. package/python3.4.2/include/python3.4m/iterobject.h +25 -0
  57. package/python3.4.2/include/python3.4m/listobject.h +80 -0
  58. package/python3.4.2/include/python3.4m/longintrepr.h +103 -0
  59. package/python3.4.2/include/python3.4m/longobject.h +204 -0
  60. package/python3.4.2/include/python3.4m/marshal.h +28 -0
  61. package/python3.4.2/include/python3.4m/memoryobject.h +74 -0
  62. package/python3.4.2/include/python3.4m/metagrammar.h +18 -0
  63. package/python3.4.2/include/python3.4m/methodobject.h +93 -0
  64. package/python3.4.2/include/python3.4m/modsupport.h +132 -0
  65. package/python3.4.2/include/python3.4m/moduleobject.h +63 -0
  66. package/python3.4.2/include/python3.4m/namespaceobject.h +17 -0
  67. package/python3.4.2/include/python3.4m/node.h +44 -0
  68. package/python3.4.2/include/python3.4m/object.h +1015 -0
  69. package/python3.4.2/include/python3.4m/objimpl.h +361 -0
  70. package/python3.4.2/include/python3.4m/opcode.h +159 -0
  71. package/python3.4.2/include/python3.4m/osdefs.h +50 -0
  72. package/python3.4.2/include/python3.4m/parsetok.h +108 -0
  73. package/python3.4.2/include/python3.4m/patchlevel.h +35 -0
  74. package/python3.4.2/include/python3.4m/pgen.h +18 -0
  75. package/python3.4.2/include/python3.4m/pgenheaders.h +42 -0
  76. package/python3.4.2/include/python3.4m/py_curses.h +177 -0
  77. package/python3.4.2/include/python3.4m/pyarena.h +64 -0
  78. package/python3.4.2/include/python3.4m/pyatomic.h +184 -0
  79. package/python3.4.2/include/python3.4m/pycapsule.h +59 -0
  80. package/python3.4.2/include/python3.4m/pyconfig.h +1503 -0
  81. package/python3.4.2/include/python3.4m/pyctype.h +33 -0
  82. package/python3.4.2/include/python3.4m/pydebug.h +34 -0
  83. package/python3.4.2/include/python3.4m/pyerrors.h +464 -0
  84. package/python3.4.2/include/python3.4m/pyexpat.h +53 -0
  85. package/python3.4.2/include/python3.4m/pyfpe.h +176 -0
  86. package/python3.4.2/include/python3.4m/pygetopt.h +21 -0
  87. package/python3.4.2/include/python3.4m/pyhash.h +149 -0
  88. package/python3.4.2/include/python3.4m/pymacconfig.h +102 -0
  89. package/python3.4.2/include/python3.4m/pymacro.h +78 -0
  90. package/python3.4.2/include/python3.4m/pymath.h +190 -0
  91. package/python3.4.2/include/python3.4m/pymem.h +183 -0
  92. package/python3.4.2/include/python3.4m/pyport.h +883 -0
  93. package/python3.4.2/include/python3.4m/pystate.h +271 -0
  94. package/python3.4.2/include/python3.4m/pystrcmp.h +23 -0
  95. package/python3.4.2/include/python3.4m/pystrtod.h +41 -0
  96. package/python3.4.2/include/python3.4m/pythonrun.h +304 -0
  97. package/python3.4.2/include/python3.4m/pythread.h +93 -0
  98. package/python3.4.2/include/python3.4m/pytime.h +105 -0
  99. package/python3.4.2/include/python3.4m/rangeobject.h +27 -0
  100. package/python3.4.2/include/python3.4m/setobject.h +113 -0
  101. package/python3.4.2/include/python3.4m/sliceobject.h +50 -0
  102. package/python3.4.2/include/python3.4m/structmember.h +76 -0
  103. package/python3.4.2/include/python3.4m/structseq.h +49 -0
  104. package/python3.4.2/include/python3.4m/symtable.h +122 -0
  105. package/python3.4.2/include/python3.4m/sysmodule.h +43 -0
  106. package/python3.4.2/include/python3.4m/token.h +87 -0
  107. package/python3.4.2/include/python3.4m/traceback.h +72 -0
  108. package/python3.4.2/include/python3.4m/tupleobject.h +73 -0
  109. package/python3.4.2/include/python3.4m/typeslots.h +76 -0
  110. package/python3.4.2/include/python3.4m/ucnhash.h +36 -0
  111. package/python3.4.2/include/python3.4m/unicodeobject.h +2271 -0
  112. package/python3.4.2/include/python3.4m/warnings.h +54 -0
  113. package/python3.4.2/include/python3.4m/weakrefobject.h +86 -0
  114. package/python3.4.2/lib/pkgconfig/python-3.4.pc +13 -0
  115. package/python3.4.2/lib/pkgconfig/python-3.4m.pc +13 -0
  116. package/python3.4.2/lib/pkgconfig/python3.pc +13 -0
  117. package/python3.4.2/lib/python3.4/LICENSE.txt +254 -0
  118. package/python3.4.2/lib/python3.4/__future__.py +134 -0
  119. package/python3.4.2/lib/python3.4/__phello__.foo.py +1 -0
  120. package/python3.4.2/lib/python3.4/__pycache__/_bootlocale.cpython-34.pyc +0 -0
  121. package/python3.4.2/lib/python3.4/__pycache__/_collections_abc.cpython-34.pyc +0 -0
  122. package/python3.4.2/lib/python3.4/__pycache__/_sitebuiltins.cpython-34.pyc +0 -0
  123. package/python3.4.2/lib/python3.4/__pycache__/_sysconfigdata.cpython-34.pyc +0 -0
  124. package/python3.4.2/lib/python3.4/__pycache__/_weakrefset.cpython-34.pyc +0 -0
  125. package/python3.4.2/lib/python3.4/__pycache__/abc.cpython-34.pyc +0 -0
  126. package/python3.4.2/lib/python3.4/__pycache__/codecs.cpython-34.pyc +0 -0
  127. package/python3.4.2/lib/python3.4/__pycache__/genericpath.cpython-34.pyc +0 -0
  128. package/python3.4.2/lib/python3.4/__pycache__/io.cpython-34.pyc +0 -0
  129. package/python3.4.2/lib/python3.4/__pycache__/os.cpython-34.pyc +0 -0
  130. package/python3.4.2/lib/python3.4/__pycache__/posixpath.cpython-34.pyc +0 -0
  131. package/python3.4.2/lib/python3.4/__pycache__/rlcompleter.cpython-34.pyc +0 -0
  132. package/python3.4.2/lib/python3.4/__pycache__/site.cpython-34.pyc +0 -0
  133. package/python3.4.2/lib/python3.4/__pycache__/stat.cpython-34.pyc +0 -0
  134. package/python3.4.2/lib/python3.4/__pycache__/sysconfig.cpython-34.pyc +0 -0
  135. package/python3.4.2/lib/python3.4/_bootlocale.py +34 -0
  136. package/python3.4.2/lib/python3.4/_collections_abc.py +753 -0
  137. package/python3.4.2/lib/python3.4/_compat_pickle.py +137 -0
  138. package/python3.4.2/lib/python3.4/_dummy_thread.py +155 -0
  139. package/python3.4.2/lib/python3.4/_markupbase.py +395 -0
  140. package/python3.4.2/lib/python3.4/_osx_support.py +502 -0
  141. package/python3.4.2/lib/python3.4/_pyio.py +2105 -0
  142. package/python3.4.2/lib/python3.4/_sitebuiltins.py +103 -0
  143. package/python3.4.2/lib/python3.4/_strptime.py +511 -0
  144. package/python3.4.2/lib/python3.4/_sysconfigdata.py +710 -0
  145. package/python3.4.2/lib/python3.4/_threading_local.py +246 -0
  146. package/python3.4.2/lib/python3.4/_weakrefset.py +196 -0
  147. package/python3.4.2/lib/python3.4/abc.py +248 -0
  148. package/python3.4.2/lib/python3.4/aifc.py +918 -0
  149. package/python3.4.2/lib/python3.4/antigravity.py +17 -0
  150. package/python3.4.2/lib/python3.4/argparse.py +2379 -0
  151. package/python3.4.2/lib/python3.4/ast.py +315 -0
  152. package/python3.4.2/lib/python3.4/asynchat.py +333 -0
  153. package/python3.4.2/lib/python3.4/asyncio/__init__.py +48 -0
  154. package/python3.4.2/lib/python3.4/asyncio/base_events.py +1055 -0
  155. package/python3.4.2/lib/python3.4/asyncio/base_subprocess.py +197 -0
  156. package/python3.4.2/lib/python3.4/asyncio/constants.py +7 -0
  157. package/python3.4.2/lib/python3.4/asyncio/coroutines.py +195 -0
  158. package/python3.4.2/lib/python3.4/asyncio/events.py +586 -0
  159. package/python3.4.2/lib/python3.4/asyncio/futures.py +411 -0
  160. package/python3.4.2/lib/python3.4/asyncio/locks.py +469 -0
  161. package/python3.4.2/lib/python3.4/asyncio/log.py +7 -0
  162. package/python3.4.2/lib/python3.4/asyncio/proactor_events.py +499 -0
  163. package/python3.4.2/lib/python3.4/asyncio/protocols.py +129 -0
  164. package/python3.4.2/lib/python3.4/asyncio/queues.py +288 -0
  165. package/python3.4.2/lib/python3.4/asyncio/selector_events.py +996 -0
  166. package/python3.4.2/lib/python3.4/asyncio/streams.py +485 -0
  167. package/python3.4.2/lib/python3.4/asyncio/subprocess.py +228 -0
  168. package/python3.4.2/lib/python3.4/asyncio/tasks.py +658 -0
  169. package/python3.4.2/lib/python3.4/asyncio/test_utils.py +425 -0
  170. package/python3.4.2/lib/python3.4/asyncio/transports.py +298 -0
  171. package/python3.4.2/lib/python3.4/asyncio/unix_events.py +922 -0
  172. package/python3.4.2/lib/python3.4/asyncio/windows_events.py +634 -0
  173. package/python3.4.2/lib/python3.4/asyncio/windows_utils.py +207 -0
  174. package/python3.4.2/lib/python3.4/asyncore.py +666 -0
  175. package/python3.4.2/lib/python3.4/base64.py +602 -0
  176. package/python3.4.2/lib/python3.4/bdb.py +673 -0
  177. package/python3.4.2/lib/python3.4/binhex.py +471 -0
  178. package/python3.4.2/lib/python3.4/bisect.py +92 -0
  179. package/python3.4.2/lib/python3.4/bz2.py +521 -0
  180. package/python3.4.2/lib/python3.4/cProfile.py +160 -0
  181. package/python3.4.2/lib/python3.4/calendar.py +703 -0
  182. package/python3.4.2/lib/python3.4/cgi.py +1061 -0
  183. package/python3.4.2/lib/python3.4/cgitb.py +320 -0
  184. package/python3.4.2/lib/python3.4/chunk.py +167 -0
  185. package/python3.4.2/lib/python3.4/cmd.py +401 -0
  186. package/python3.4.2/lib/python3.4/code.py +302 -0
  187. package/python3.4.2/lib/python3.4/codecs.py +1110 -0
  188. package/python3.4.2/lib/python3.4/codeop.py +168 -0
  189. package/python3.4.2/lib/python3.4/collections/__init__.py +1132 -0
  190. package/python3.4.2/lib/python3.4/collections/__main__.py +38 -0
  191. package/python3.4.2/lib/python3.4/collections/abc.py +2 -0
  192. package/python3.4.2/lib/python3.4/colorsys.py +164 -0
  193. package/python3.4.2/lib/python3.4/compileall.py +241 -0
  194. package/python3.4.2/lib/python3.4/concurrent/__init__.py +1 -0
  195. package/python3.4.2/lib/python3.4/concurrent/futures/__init__.py +18 -0
  196. package/python3.4.2/lib/python3.4/concurrent/futures/_base.py +575 -0
  197. package/python3.4.2/lib/python3.4/concurrent/futures/process.py +427 -0
  198. package/python3.4.2/lib/python3.4/concurrent/futures/thread.py +132 -0
  199. package/python3.4.2/lib/python3.4/config-3.4m/Makefile +1835 -0
  200. package/python3.4.2/lib/python3.4/config-3.4m/Setup +466 -0
  201. package/python3.4.2/lib/python3.4/config-3.4m/Setup.config +13 -0
  202. package/python3.4.2/lib/python3.4/config-3.4m/Setup.local +1 -0
  203. package/python3.4.2/lib/python3.4/config-3.4m/config.c +234 -0
  204. package/python3.4.2/lib/python3.4/config-3.4m/config.c.in +67 -0
  205. package/python3.4.2/lib/python3.4/config-3.4m/install-sh +294 -0
  206. package/python3.4.2/lib/python3.4/config-3.4m/makesetup +293 -0
  207. package/python3.4.2/lib/python3.4/config-3.4m/python-config.py +68 -0
  208. package/python3.4.2/lib/python3.4/configparser.py +1254 -0
  209. package/python3.4.2/lib/python3.4/contextlib.py +340 -0
  210. package/python3.4.2/lib/python3.4/copy.py +333 -0
  211. package/python3.4.2/lib/python3.4/copyreg.py +202 -0
  212. package/python3.4.2/lib/python3.4/crypt.py +62 -0
  213. package/python3.4.2/lib/python3.4/csv.py +449 -0
  214. package/python3.4.2/lib/python3.4/ctypes/__init__.py +541 -0
  215. package/python3.4.2/lib/python3.4/ctypes/_endian.py +59 -0
  216. package/python3.4.2/lib/python3.4/ctypes/macholib/README.ctypes +7 -0
  217. package/python3.4.2/lib/python3.4/ctypes/macholib/__init__.py +9 -0
  218. package/python3.4.2/lib/python3.4/ctypes/macholib/dyld.py +158 -0
  219. package/python3.4.2/lib/python3.4/ctypes/macholib/dylib.py +63 -0
  220. package/python3.4.2/lib/python3.4/ctypes/macholib/fetch_macholib +2 -0
  221. package/python3.4.2/lib/python3.4/ctypes/macholib/fetch_macholib.bat +1 -0
  222. package/python3.4.2/lib/python3.4/ctypes/macholib/framework.py +65 -0
  223. package/python3.4.2/lib/python3.4/ctypes/test/__init__.py +14 -0
  224. package/python3.4.2/lib/python3.4/ctypes/test/__main__.py +4 -0
  225. package/python3.4.2/lib/python3.4/ctypes/test/test_anon.py +60 -0
  226. package/python3.4.2/lib/python3.4/ctypes/test/test_array_in_pointer.py +64 -0
  227. package/python3.4.2/lib/python3.4/ctypes/test/test_arrays.py +181 -0
  228. package/python3.4.2/lib/python3.4/ctypes/test/test_as_parameter.py +226 -0
  229. package/python3.4.2/lib/python3.4/ctypes/test/test_bitfields.py +263 -0
  230. package/python3.4.2/lib/python3.4/ctypes/test/test_buffers.py +64 -0
  231. package/python3.4.2/lib/python3.4/ctypes/test/test_bytes.py +65 -0
  232. package/python3.4.2/lib/python3.4/ctypes/test/test_byteswap.py +295 -0
  233. package/python3.4.2/lib/python3.4/ctypes/test/test_callbacks.py +247 -0
  234. package/python3.4.2/lib/python3.4/ctypes/test/test_cast.py +86 -0
  235. package/python3.4.2/lib/python3.4/ctypes/test/test_cfuncs.py +212 -0
  236. package/python3.4.2/lib/python3.4/ctypes/test/test_checkretval.py +36 -0
  237. package/python3.4.2/lib/python3.4/ctypes/test/test_delattr.py +21 -0
  238. package/python3.4.2/lib/python3.4/ctypes/test/test_errno.py +79 -0
  239. package/python3.4.2/lib/python3.4/ctypes/test/test_find.py +81 -0
  240. package/python3.4.2/lib/python3.4/ctypes/test/test_frombuffer.py +81 -0
  241. package/python3.4.2/lib/python3.4/ctypes/test/test_funcptr.py +127 -0
  242. package/python3.4.2/lib/python3.4/ctypes/test/test_functions.py +402 -0
  243. package/python3.4.2/lib/python3.4/ctypes/test/test_incomplete.py +42 -0
  244. package/python3.4.2/lib/python3.4/ctypes/test/test_init.py +40 -0
  245. package/python3.4.2/lib/python3.4/ctypes/test/test_internals.py +100 -0
  246. package/python3.4.2/lib/python3.4/ctypes/test/test_keeprefs.py +153 -0
  247. package/python3.4.2/lib/python3.4/ctypes/test/test_libc.py +33 -0
  248. package/python3.4.2/lib/python3.4/ctypes/test/test_loading.py +119 -0
  249. package/python3.4.2/lib/python3.4/ctypes/test/test_macholib.py +63 -0
  250. package/python3.4.2/lib/python3.4/ctypes/test/test_memfunctions.py +79 -0
  251. package/python3.4.2/lib/python3.4/ctypes/test/test_numbers.py +290 -0
  252. package/python3.4.2/lib/python3.4/ctypes/test/test_objects.py +67 -0
  253. package/python3.4.2/lib/python3.4/ctypes/test/test_parameters.py +176 -0
  254. package/python3.4.2/lib/python3.4/ctypes/test/test_pep3118.py +206 -0
  255. package/python3.4.2/lib/python3.4/ctypes/test/test_pickling.py +83 -0
  256. package/python3.4.2/lib/python3.4/ctypes/test/test_pointers.py +192 -0
  257. package/python3.4.2/lib/python3.4/ctypes/test/test_prototypes.py +219 -0
  258. package/python3.4.2/lib/python3.4/ctypes/test/test_python_api.py +89 -0
  259. package/python3.4.2/lib/python3.4/ctypes/test/test_random_things.py +74 -0
  260. package/python3.4.2/lib/python3.4/ctypes/test/test_refcounts.py +101 -0
  261. package/python3.4.2/lib/python3.4/ctypes/test/test_repr.py +29 -0
  262. package/python3.4.2/lib/python3.4/ctypes/test/test_returnfuncptrs.py +67 -0
  263. package/python3.4.2/lib/python3.4/ctypes/test/test_simplesubclasses.py +55 -0
  264. package/python3.4.2/lib/python3.4/ctypes/test/test_sizes.py +34 -0
  265. package/python3.4.2/lib/python3.4/ctypes/test/test_slicing.py +167 -0
  266. package/python3.4.2/lib/python3.4/ctypes/test/test_stringptr.py +77 -0
  267. package/python3.4.2/lib/python3.4/ctypes/test/test_strings.py +225 -0
  268. package/python3.4.2/lib/python3.4/ctypes/test/test_struct_fields.py +50 -0
  269. package/python3.4.2/lib/python3.4/ctypes/test/test_structures.py +468 -0
  270. package/python3.4.2/lib/python3.4/ctypes/test/test_unaligned_structures.py +45 -0
  271. package/python3.4.2/lib/python3.4/ctypes/test/test_unicode.py +56 -0
  272. package/python3.4.2/lib/python3.4/ctypes/test/test_values.py +95 -0
  273. package/python3.4.2/lib/python3.4/ctypes/test/test_varsize_struct.py +50 -0
  274. package/python3.4.2/lib/python3.4/ctypes/test/test_win32.py +119 -0
  275. package/python3.4.2/lib/python3.4/ctypes/test/test_wintypes.py +41 -0
  276. package/python3.4.2/lib/python3.4/ctypes/util.py +267 -0
  277. package/python3.4.2/lib/python3.4/ctypes/wintypes.py +202 -0
  278. package/python3.4.2/lib/python3.4/curses/__init__.py +101 -0
  279. package/python3.4.2/lib/python3.4/curses/ascii.py +99 -0
  280. package/python3.4.2/lib/python3.4/curses/has_key.py +192 -0
  281. package/python3.4.2/lib/python3.4/curses/panel.py +6 -0
  282. package/python3.4.2/lib/python3.4/curses/textpad.py +188 -0
  283. package/python3.4.2/lib/python3.4/datetime.py +2136 -0
  284. package/python3.4.2/lib/python3.4/dbm/__init__.py +188 -0
  285. package/python3.4.2/lib/python3.4/dbm/dumb.py +291 -0
  286. package/python3.4.2/lib/python3.4/dbm/gnu.py +3 -0
  287. package/python3.4.2/lib/python3.4/dbm/ndbm.py +3 -0
  288. package/python3.4.2/lib/python3.4/decimal.py +6414 -0
  289. package/python3.4.2/lib/python3.4/difflib.py +2039 -0
  290. package/python3.4.2/lib/python3.4/dis.py +475 -0
  291. package/python3.4.2/lib/python3.4/distutils/README +13 -0
  292. package/python3.4.2/lib/python3.4/distutils/__init__.py +17 -0
  293. package/python3.4.2/lib/python3.4/distutils/archive_util.py +245 -0
  294. package/python3.4.2/lib/python3.4/distutils/bcppcompiler.py +393 -0
  295. package/python3.4.2/lib/python3.4/distutils/ccompiler.py +1115 -0
  296. package/python3.4.2/lib/python3.4/distutils/cmd.py +435 -0
  297. package/python3.4.2/lib/python3.4/distutils/command/__init__.py +31 -0
  298. package/python3.4.2/lib/python3.4/distutils/command/bdist.py +142 -0
  299. package/python3.4.2/lib/python3.4/distutils/command/bdist_dumb.py +122 -0
  300. package/python3.4.2/lib/python3.4/distutils/command/bdist_msi.py +741 -0
  301. package/python3.4.2/lib/python3.4/distutils/command/bdist_rpm.py +582 -0
  302. package/python3.4.2/lib/python3.4/distutils/command/bdist_wininst.py +349 -0
  303. package/python3.4.2/lib/python3.4/distutils/command/build.py +148 -0
  304. package/python3.4.2/lib/python3.4/distutils/command/build_clib.py +209 -0
  305. package/python3.4.2/lib/python3.4/distutils/command/build_ext.py +735 -0
  306. package/python3.4.2/lib/python3.4/distutils/command/build_py.py +416 -0
  307. package/python3.4.2/lib/python3.4/distutils/command/build_scripts.py +160 -0
  308. package/python3.4.2/lib/python3.4/distutils/command/check.py +145 -0
  309. package/python3.4.2/lib/python3.4/distutils/command/clean.py +76 -0
  310. package/python3.4.2/lib/python3.4/distutils/command/command_template +33 -0
  311. package/python3.4.2/lib/python3.4/distutils/command/config.py +347 -0
  312. package/python3.4.2/lib/python3.4/distutils/command/install.py +650 -0
  313. package/python3.4.2/lib/python3.4/distutils/command/install_data.py +79 -0
  314. package/python3.4.2/lib/python3.4/distutils/command/install_egg_info.py +77 -0
  315. package/python3.4.2/lib/python3.4/distutils/command/install_headers.py +47 -0
  316. package/python3.4.2/lib/python3.4/distutils/command/install_lib.py +217 -0
  317. package/python3.4.2/lib/python3.4/distutils/command/install_scripts.py +60 -0
  318. package/python3.4.2/lib/python3.4/distutils/command/register.py +304 -0
  319. package/python3.4.2/lib/python3.4/distutils/command/sdist.py +467 -0
  320. package/python3.4.2/lib/python3.4/distutils/command/upload.py +202 -0
  321. package/python3.4.2/lib/python3.4/distutils/command/wininst-10.0-amd64.exe +0 -0
  322. package/python3.4.2/lib/python3.4/distutils/command/wininst-10.0.exe +0 -0
  323. package/python3.4.2/lib/python3.4/distutils/command/wininst-6.0.exe +0 -0
  324. package/python3.4.2/lib/python3.4/distutils/command/wininst-7.1.exe +0 -0
  325. package/python3.4.2/lib/python3.4/distutils/command/wininst-8.0.exe +0 -0
  326. package/python3.4.2/lib/python3.4/distutils/command/wininst-9.0-amd64.exe +0 -0
  327. package/python3.4.2/lib/python3.4/distutils/command/wininst-9.0.exe +0 -0
  328. package/python3.4.2/lib/python3.4/distutils/config.py +131 -0
  329. package/python3.4.2/lib/python3.4/distutils/core.py +237 -0
  330. package/python3.4.2/lib/python3.4/distutils/cygwinccompiler.py +405 -0
  331. package/python3.4.2/lib/python3.4/distutils/debug.py +5 -0
  332. package/python3.4.2/lib/python3.4/distutils/dep_util.py +92 -0
  333. package/python3.4.2/lib/python3.4/distutils/dir_util.py +210 -0
  334. package/python3.4.2/lib/python3.4/distutils/dist.py +1238 -0
  335. package/python3.4.2/lib/python3.4/distutils/errors.py +97 -0
  336. package/python3.4.2/lib/python3.4/distutils/extension.py +233 -0
  337. package/python3.4.2/lib/python3.4/distutils/fancy_getopt.py +457 -0
  338. package/python3.4.2/lib/python3.4/distutils/file_util.py +230 -0
  339. package/python3.4.2/lib/python3.4/distutils/filelist.py +328 -0
  340. package/python3.4.2/lib/python3.4/distutils/log.py +75 -0
  341. package/python3.4.2/lib/python3.4/distutils/msvc9compiler.py +788 -0
  342. package/python3.4.2/lib/python3.4/distutils/msvccompiler.py +640 -0
  343. package/python3.4.2/lib/python3.4/distutils/spawn.py +195 -0
  344. package/python3.4.2/lib/python3.4/distutils/sysconfig.py +562 -0
  345. package/python3.4.2/lib/python3.4/distutils/tests/Setup.sample +67 -0
  346. package/python3.4.2/lib/python3.4/distutils/tests/__init__.py +36 -0
  347. package/python3.4.2/lib/python3.4/distutils/tests/support.py +210 -0
  348. package/python3.4.2/lib/python3.4/distutils/tests/test_archive_util.py +341 -0
  349. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist.py +50 -0
  350. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_dumb.py +97 -0
  351. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_msi.py +25 -0
  352. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_rpm.py +134 -0
  353. package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_wininst.py +31 -0
  354. package/python3.4.2/lib/python3.4/distutils/tests/test_build.py +55 -0
  355. package/python3.4.2/lib/python3.4/distutils/tests/test_build_clib.py +143 -0
  356. package/python3.4.2/lib/python3.4/distutils/tests/test_build_ext.py +488 -0
  357. package/python3.4.2/lib/python3.4/distutils/tests/test_build_py.py +178 -0
  358. package/python3.4.2/lib/python3.4/distutils/tests/test_build_scripts.py +112 -0
  359. package/python3.4.2/lib/python3.4/distutils/tests/test_check.py +106 -0
  360. package/python3.4.2/lib/python3.4/distutils/tests/test_clean.py +51 -0
  361. package/python3.4.2/lib/python3.4/distutils/tests/test_cmd.py +126 -0
  362. package/python3.4.2/lib/python3.4/distutils/tests/test_config.py +120 -0
  363. package/python3.4.2/lib/python3.4/distutils/tests/test_config_cmd.py +89 -0
  364. package/python3.4.2/lib/python3.4/distutils/tests/test_core.py +108 -0
  365. package/python3.4.2/lib/python3.4/distutils/tests/test_cygwinccompiler.py +155 -0
  366. package/python3.4.2/lib/python3.4/distutils/tests/test_dep_util.py +81 -0
  367. package/python3.4.2/lib/python3.4/distutils/tests/test_dir_util.py +139 -0
  368. package/python3.4.2/lib/python3.4/distutils/tests/test_dist.py +454 -0
  369. package/python3.4.2/lib/python3.4/distutils/tests/test_extension.py +69 -0
  370. package/python3.4.2/lib/python3.4/distutils/tests/test_file_util.py +85 -0
  371. package/python3.4.2/lib/python3.4/distutils/tests/test_filelist.py +299 -0
  372. package/python3.4.2/lib/python3.4/distutils/tests/test_install.py +246 -0
  373. package/python3.4.2/lib/python3.4/distutils/tests/test_install_data.py +77 -0
  374. package/python3.4.2/lib/python3.4/distutils/tests/test_install_headers.py +41 -0
  375. package/python3.4.2/lib/python3.4/distutils/tests/test_install_lib.py +115 -0
  376. package/python3.4.2/lib/python3.4/distutils/tests/test_install_scripts.py +82 -0
  377. package/python3.4.2/lib/python3.4/distutils/tests/test_log.py +37 -0
  378. package/python3.4.2/lib/python3.4/distutils/tests/test_msvc9compiler.py +184 -0
  379. package/python3.4.2/lib/python3.4/distutils/tests/test_register.py +309 -0
  380. package/python3.4.2/lib/python3.4/distutils/tests/test_sdist.py +484 -0
  381. package/python3.4.2/lib/python3.4/distutils/tests/test_spawn.py +58 -0
  382. package/python3.4.2/lib/python3.4/distutils/tests/test_sysconfig.py +207 -0
  383. package/python3.4.2/lib/python3.4/distutils/tests/test_text_file.py +107 -0
  384. package/python3.4.2/lib/python3.4/distutils/tests/test_unixccompiler.py +150 -0
  385. package/python3.4.2/lib/python3.4/distutils/tests/test_upload.py +151 -0
  386. package/python3.4.2/lib/python3.4/distutils/tests/test_util.py +300 -0
  387. package/python3.4.2/lib/python3.4/distutils/tests/test_version.py +71 -0
  388. package/python3.4.2/lib/python3.4/distutils/tests/test_versionpredicate.py +13 -0
  389. package/python3.4.2/lib/python3.4/distutils/tests/xxmodule.c +396 -0
  390. package/python3.4.2/lib/python3.4/distutils/text_file.py +285 -0
  391. package/python3.4.2/lib/python3.4/distutils/unixccompiler.py +298 -0
  392. package/python3.4.2/lib/python3.4/distutils/util.py +553 -0
  393. package/python3.4.2/lib/python3.4/distutils/version.py +349 -0
  394. package/python3.4.2/lib/python3.4/distutils/versionpredicate.py +166 -0
  395. package/python3.4.2/lib/python3.4/doctest.py +2793 -0
  396. package/python3.4.2/lib/python3.4/dummy_threading.py +78 -0
  397. package/python3.4.2/lib/python3.4/email/__init__.py +64 -0
  398. package/python3.4.2/lib/python3.4/email/_encoded_words.py +221 -0
  399. package/python3.4.2/lib/python3.4/email/_header_value_parser.py +2947 -0
  400. package/python3.4.2/lib/python3.4/email/_parseaddr.py +540 -0
  401. package/python3.4.2/lib/python3.4/email/_policybase.py +358 -0
  402. package/python3.4.2/lib/python3.4/email/architecture.rst +216 -0
  403. package/python3.4.2/lib/python3.4/email/base64mime.py +119 -0
  404. package/python3.4.2/lib/python3.4/email/charset.py +409 -0
  405. package/python3.4.2/lib/python3.4/email/contentmanager.py +249 -0
  406. package/python3.4.2/lib/python3.4/email/encoders.py +69 -0
  407. package/python3.4.2/lib/python3.4/email/errors.py +107 -0
  408. package/python3.4.2/lib/python3.4/email/feedparser.py +526 -0
  409. package/python3.4.2/lib/python3.4/email/generator.py +507 -0
  410. package/python3.4.2/lib/python3.4/email/header.py +581 -0
  411. package/python3.4.2/lib/python3.4/email/headerregistry.py +583 -0
  412. package/python3.4.2/lib/python3.4/email/iterators.py +71 -0
  413. package/python3.4.2/lib/python3.4/email/message.py +1147 -0
  414. package/python3.4.2/lib/python3.4/email/mime/__init__.py +0 -0
  415. package/python3.4.2/lib/python3.4/email/mime/application.py +36 -0
  416. package/python3.4.2/lib/python3.4/email/mime/audio.py +73 -0
  417. package/python3.4.2/lib/python3.4/email/mime/base.py +26 -0
  418. package/python3.4.2/lib/python3.4/email/mime/image.py +46 -0
  419. package/python3.4.2/lib/python3.4/email/mime/message.py +34 -0
  420. package/python3.4.2/lib/python3.4/email/mime/multipart.py +47 -0
  421. package/python3.4.2/lib/python3.4/email/mime/nonmultipart.py +22 -0
  422. package/python3.4.2/lib/python3.4/email/mime/text.py +41 -0
  423. package/python3.4.2/lib/python3.4/email/parser.py +132 -0
  424. package/python3.4.2/lib/python3.4/email/policy.py +201 -0
  425. package/python3.4.2/lib/python3.4/email/quoprimime.py +299 -0
  426. package/python3.4.2/lib/python3.4/email/utils.py +399 -0
  427. package/python3.4.2/lib/python3.4/encodings/__init__.py +152 -0
  428. package/python3.4.2/lib/python3.4/encodings/__pycache__/__init__.cpython-34.pyc +0 -0
  429. package/python3.4.2/lib/python3.4/encodings/__pycache__/aliases.cpython-34.pyc +0 -0
  430. package/python3.4.2/lib/python3.4/encodings/__pycache__/ascii.cpython-34.pyc +0 -0
  431. package/python3.4.2/lib/python3.4/encodings/__pycache__/latin_1.cpython-34.pyc +0 -0
  432. package/python3.4.2/lib/python3.4/encodings/__pycache__/utf_8.cpython-34.pyc +0 -0
  433. package/python3.4.2/lib/python3.4/encodings/aliases.py +544 -0
  434. package/python3.4.2/lib/python3.4/encodings/ascii.py +50 -0
  435. package/python3.4.2/lib/python3.4/encodings/base64_codec.py +55 -0
  436. package/python3.4.2/lib/python3.4/encodings/big5.py +39 -0
  437. package/python3.4.2/lib/python3.4/encodings/big5hkscs.py +39 -0
  438. package/python3.4.2/lib/python3.4/encodings/bz2_codec.py +78 -0
  439. package/python3.4.2/lib/python3.4/encodings/charmap.py +69 -0
  440. package/python3.4.2/lib/python3.4/encodings/cp037.py +307 -0
  441. package/python3.4.2/lib/python3.4/encodings/cp1006.py +307 -0
  442. package/python3.4.2/lib/python3.4/encodings/cp1026.py +307 -0
  443. package/python3.4.2/lib/python3.4/encodings/cp1125.py +698 -0
  444. package/python3.4.2/lib/python3.4/encodings/cp1140.py +307 -0
  445. package/python3.4.2/lib/python3.4/encodings/cp1250.py +307 -0
  446. package/python3.4.2/lib/python3.4/encodings/cp1251.py +307 -0
  447. package/python3.4.2/lib/python3.4/encodings/cp1252.py +307 -0
  448. package/python3.4.2/lib/python3.4/encodings/cp1253.py +307 -0
  449. package/python3.4.2/lib/python3.4/encodings/cp1254.py +307 -0
  450. package/python3.4.2/lib/python3.4/encodings/cp1255.py +307 -0
  451. package/python3.4.2/lib/python3.4/encodings/cp1256.py +307 -0
  452. package/python3.4.2/lib/python3.4/encodings/cp1257.py +307 -0
  453. package/python3.4.2/lib/python3.4/encodings/cp1258.py +307 -0
  454. package/python3.4.2/lib/python3.4/encodings/cp273.py +307 -0
  455. package/python3.4.2/lib/python3.4/encodings/cp424.py +307 -0
  456. package/python3.4.2/lib/python3.4/encodings/cp437.py +698 -0
  457. package/python3.4.2/lib/python3.4/encodings/cp500.py +307 -0
  458. package/python3.4.2/lib/python3.4/encodings/cp65001.py +40 -0
  459. package/python3.4.2/lib/python3.4/encodings/cp720.py +309 -0
  460. package/python3.4.2/lib/python3.4/encodings/cp737.py +698 -0
  461. package/python3.4.2/lib/python3.4/encodings/cp775.py +697 -0
  462. package/python3.4.2/lib/python3.4/encodings/cp850.py +698 -0
  463. package/python3.4.2/lib/python3.4/encodings/cp852.py +698 -0
  464. package/python3.4.2/lib/python3.4/encodings/cp855.py +698 -0
  465. package/python3.4.2/lib/python3.4/encodings/cp856.py +307 -0
  466. package/python3.4.2/lib/python3.4/encodings/cp857.py +694 -0
  467. package/python3.4.2/lib/python3.4/encodings/cp858.py +698 -0
  468. package/python3.4.2/lib/python3.4/encodings/cp860.py +698 -0
  469. package/python3.4.2/lib/python3.4/encodings/cp861.py +698 -0
  470. package/python3.4.2/lib/python3.4/encodings/cp862.py +698 -0
  471. package/python3.4.2/lib/python3.4/encodings/cp863.py +698 -0
  472. package/python3.4.2/lib/python3.4/encodings/cp864.py +690 -0
  473. package/python3.4.2/lib/python3.4/encodings/cp865.py +698 -0
  474. package/python3.4.2/lib/python3.4/encodings/cp866.py +698 -0
  475. package/python3.4.2/lib/python3.4/encodings/cp869.py +689 -0
  476. package/python3.4.2/lib/python3.4/encodings/cp874.py +307 -0
  477. package/python3.4.2/lib/python3.4/encodings/cp875.py +307 -0
  478. package/python3.4.2/lib/python3.4/encodings/cp932.py +39 -0
  479. package/python3.4.2/lib/python3.4/encodings/cp949.py +39 -0
  480. package/python3.4.2/lib/python3.4/encodings/cp950.py +39 -0
  481. package/python3.4.2/lib/python3.4/encodings/euc_jis_2004.py +39 -0
  482. package/python3.4.2/lib/python3.4/encodings/euc_jisx0213.py +39 -0
  483. package/python3.4.2/lib/python3.4/encodings/euc_jp.py +39 -0
  484. package/python3.4.2/lib/python3.4/encodings/euc_kr.py +39 -0
  485. package/python3.4.2/lib/python3.4/encodings/gb18030.py +39 -0
  486. package/python3.4.2/lib/python3.4/encodings/gb2312.py +39 -0
  487. package/python3.4.2/lib/python3.4/encodings/gbk.py +39 -0
  488. package/python3.4.2/lib/python3.4/encodings/hex_codec.py +55 -0
  489. package/python3.4.2/lib/python3.4/encodings/hp_roman8.py +312 -0
  490. package/python3.4.2/lib/python3.4/encodings/hz.py +39 -0
  491. package/python3.4.2/lib/python3.4/encodings/idna.py +309 -0
  492. package/python3.4.2/lib/python3.4/encodings/iso2022_jp.py +39 -0
  493. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_1.py +39 -0
  494. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_2.py +39 -0
  495. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_2004.py +39 -0
  496. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_3.py +39 -0
  497. package/python3.4.2/lib/python3.4/encodings/iso2022_jp_ext.py +39 -0
  498. package/python3.4.2/lib/python3.4/encodings/iso2022_kr.py +39 -0
  499. package/python3.4.2/lib/python3.4/encodings/iso8859_1.py +307 -0
  500. package/python3.4.2/lib/python3.4/encodings/iso8859_10.py +307 -0
  501. package/python3.4.2/lib/python3.4/encodings/iso8859_11.py +307 -0
  502. package/python3.4.2/lib/python3.4/encodings/iso8859_13.py +307 -0
  503. package/python3.4.2/lib/python3.4/encodings/iso8859_14.py +307 -0
  504. package/python3.4.2/lib/python3.4/encodings/iso8859_15.py +307 -0
  505. package/python3.4.2/lib/python3.4/encodings/iso8859_16.py +307 -0
  506. package/python3.4.2/lib/python3.4/encodings/iso8859_2.py +307 -0
  507. package/python3.4.2/lib/python3.4/encodings/iso8859_3.py +307 -0
  508. package/python3.4.2/lib/python3.4/encodings/iso8859_4.py +307 -0
  509. package/python3.4.2/lib/python3.4/encodings/iso8859_5.py +307 -0
  510. package/python3.4.2/lib/python3.4/encodings/iso8859_6.py +307 -0
  511. package/python3.4.2/lib/python3.4/encodings/iso8859_7.py +307 -0
  512. package/python3.4.2/lib/python3.4/encodings/iso8859_8.py +307 -0
  513. package/python3.4.2/lib/python3.4/encodings/iso8859_9.py +307 -0
  514. package/python3.4.2/lib/python3.4/encodings/johab.py +39 -0
  515. package/python3.4.2/lib/python3.4/encodings/koi8_r.py +307 -0
  516. package/python3.4.2/lib/python3.4/encodings/koi8_u.py +307 -0
  517. package/python3.4.2/lib/python3.4/encodings/latin_1.py +50 -0
  518. package/python3.4.2/lib/python3.4/encodings/mac_arabic.py +698 -0
  519. package/python3.4.2/lib/python3.4/encodings/mac_centeuro.py +307 -0
  520. package/python3.4.2/lib/python3.4/encodings/mac_croatian.py +307 -0
  521. package/python3.4.2/lib/python3.4/encodings/mac_cyrillic.py +307 -0
  522. package/python3.4.2/lib/python3.4/encodings/mac_farsi.py +307 -0
  523. package/python3.4.2/lib/python3.4/encodings/mac_greek.py +307 -0
  524. package/python3.4.2/lib/python3.4/encodings/mac_iceland.py +307 -0
  525. package/python3.4.2/lib/python3.4/encodings/mac_latin2.py +312 -0
  526. package/python3.4.2/lib/python3.4/encodings/mac_roman.py +307 -0
  527. package/python3.4.2/lib/python3.4/encodings/mac_romanian.py +307 -0
  528. package/python3.4.2/lib/python3.4/encodings/mac_turkish.py +307 -0
  529. package/python3.4.2/lib/python3.4/encodings/mbcs.py +47 -0
  530. package/python3.4.2/lib/python3.4/encodings/palmos.py +308 -0
  531. package/python3.4.2/lib/python3.4/encodings/ptcp154.py +312 -0
  532. package/python3.4.2/lib/python3.4/encodings/punycode.py +237 -0
  533. package/python3.4.2/lib/python3.4/encodings/quopri_codec.py +56 -0
  534. package/python3.4.2/lib/python3.4/encodings/raw_unicode_escape.py +45 -0
  535. package/python3.4.2/lib/python3.4/encodings/rot_13.py +113 -0
  536. package/python3.4.2/lib/python3.4/encodings/shift_jis.py +39 -0
  537. package/python3.4.2/lib/python3.4/encodings/shift_jis_2004.py +39 -0
  538. package/python3.4.2/lib/python3.4/encodings/shift_jisx0213.py +39 -0
  539. package/python3.4.2/lib/python3.4/encodings/tis_620.py +307 -0
  540. package/python3.4.2/lib/python3.4/encodings/undefined.py +49 -0
  541. package/python3.4.2/lib/python3.4/encodings/unicode_escape.py +45 -0
  542. package/python3.4.2/lib/python3.4/encodings/unicode_internal.py +45 -0
  543. package/python3.4.2/lib/python3.4/encodings/utf_16.py +155 -0
  544. package/python3.4.2/lib/python3.4/encodings/utf_16_be.py +42 -0
  545. package/python3.4.2/lib/python3.4/encodings/utf_16_le.py +42 -0
  546. package/python3.4.2/lib/python3.4/encodings/utf_32.py +150 -0
  547. package/python3.4.2/lib/python3.4/encodings/utf_32_be.py +37 -0
  548. package/python3.4.2/lib/python3.4/encodings/utf_32_le.py +37 -0
  549. package/python3.4.2/lib/python3.4/encodings/utf_7.py +38 -0
  550. package/python3.4.2/lib/python3.4/encodings/utf_8.py +42 -0
  551. package/python3.4.2/lib/python3.4/encodings/utf_8_sig.py +130 -0
  552. package/python3.4.2/lib/python3.4/encodings/uu_codec.py +99 -0
  553. package/python3.4.2/lib/python3.4/encodings/zlib_codec.py +77 -0
  554. package/python3.4.2/lib/python3.4/ensurepip/__init__.py +210 -0
  555. package/python3.4.2/lib/python3.4/ensurepip/__main__.py +4 -0
  556. package/python3.4.2/lib/python3.4/ensurepip/_bundled/pip-1.5.6-py2.py3-none-any.whl +0 -0
  557. package/python3.4.2/lib/python3.4/ensurepip/_bundled/setuptools-2.1-py2.py3-none-any.whl +0 -0
  558. package/python3.4.2/lib/python3.4/ensurepip/_uninstall.py +30 -0
  559. package/python3.4.2/lib/python3.4/enum.py +525 -0
  560. package/python3.4.2/lib/python3.4/filecmp.py +305 -0
  561. package/python3.4.2/lib/python3.4/fileinput.py +429 -0
  562. package/python3.4.2/lib/python3.4/fnmatch.py +109 -0
  563. package/python3.4.2/lib/python3.4/formatter.py +448 -0
  564. package/python3.4.2/lib/python3.4/fractions.py +630 -0
  565. package/python3.4.2/lib/python3.4/ftplib.py +1088 -0
  566. package/python3.4.2/lib/python3.4/functools.py +721 -0
  567. package/python3.4.2/lib/python3.4/genericpath.py +132 -0
  568. package/python3.4.2/lib/python3.4/getopt.py +215 -0
  569. package/python3.4.2/lib/python3.4/getpass.py +186 -0
  570. package/python3.4.2/lib/python3.4/gettext.py +523 -0
  571. package/python3.4.2/lib/python3.4/glob.py +110 -0
  572. package/python3.4.2/lib/python3.4/gzip.py +674 -0
  573. package/python3.4.2/lib/python3.4/hashlib.py +217 -0
  574. package/python3.4.2/lib/python3.4/heapq.py +476 -0
  575. package/python3.4.2/lib/python3.4/hmac.py +144 -0
  576. package/python3.4.2/lib/python3.4/html/__init__.py +132 -0
  577. package/python3.4.2/lib/python3.4/html/entities.py +2506 -0
  578. package/python3.4.2/lib/python3.4/html/parser.py +550 -0
  579. package/python3.4.2/lib/python3.4/http/__init__.py +1 -0
  580. package/python3.4.2/lib/python3.4/http/client.py +1302 -0
  581. package/python3.4.2/lib/python3.4/http/cookiejar.py +2080 -0
  582. package/python3.4.2/lib/python3.4/http/cookies.py +578 -0
  583. package/python3.4.2/lib/python3.4/http/server.py +1241 -0
  584. package/python3.4.2/lib/python3.4/idlelib/AutoComplete.py +233 -0
  585. package/python3.4.2/lib/python3.4/idlelib/AutoCompleteWindow.py +415 -0
  586. package/python3.4.2/lib/python3.4/idlelib/AutoExpand.py +104 -0
  587. package/python3.4.2/lib/python3.4/idlelib/Bindings.py +94 -0
  588. package/python3.4.2/lib/python3.4/idlelib/CREDITS.txt +37 -0
  589. package/python3.4.2/lib/python3.4/idlelib/CallTipWindow.py +170 -0
  590. package/python3.4.2/lib/python3.4/idlelib/CallTips.py +175 -0
  591. package/python3.4.2/lib/python3.4/idlelib/ChangeLog +1591 -0
  592. package/python3.4.2/lib/python3.4/idlelib/ClassBrowser.py +229 -0
  593. package/python3.4.2/lib/python3.4/idlelib/CodeContext.py +176 -0
  594. package/python3.4.2/lib/python3.4/idlelib/ColorDelegator.py +254 -0
  595. package/python3.4.2/lib/python3.4/idlelib/Debugger.py +490 -0
  596. package/python3.4.2/lib/python3.4/idlelib/Delegator.py +25 -0
  597. package/python3.4.2/lib/python3.4/idlelib/EditorWindow.py +1729 -0
  598. package/python3.4.2/lib/python3.4/idlelib/FileList.py +129 -0
  599. package/python3.4.2/lib/python3.4/idlelib/FormatParagraph.py +193 -0
  600. package/python3.4.2/lib/python3.4/idlelib/GrepDialog.py +159 -0
  601. package/python3.4.2/lib/python3.4/idlelib/HISTORY.txt +296 -0
  602. package/python3.4.2/lib/python3.4/idlelib/HyperParser.py +313 -0
  603. package/python3.4.2/lib/python3.4/idlelib/IOBinding.py +555 -0
  604. package/python3.4.2/lib/python3.4/idlelib/Icons/folder.gif +0 -0
  605. package/python3.4.2/lib/python3.4/idlelib/Icons/idle.icns +0 -0
  606. package/python3.4.2/lib/python3.4/idlelib/Icons/idle.ico +0 -0
  607. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_16.gif +0 -0
  608. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_16.png +0 -0
  609. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_32.gif +0 -0
  610. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_32.png +0 -0
  611. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_48.gif +0 -0
  612. package/python3.4.2/lib/python3.4/idlelib/Icons/idle_48.png +0 -0
  613. package/python3.4.2/lib/python3.4/idlelib/Icons/minusnode.gif +0 -0
  614. package/python3.4.2/lib/python3.4/idlelib/Icons/openfolder.gif +0 -0
  615. package/python3.4.2/lib/python3.4/idlelib/Icons/plusnode.gif +0 -0
  616. package/python3.4.2/lib/python3.4/idlelib/Icons/python.gif +0 -0
  617. package/python3.4.2/lib/python3.4/idlelib/Icons/tk.gif +0 -0
  618. package/python3.4.2/lib/python3.4/idlelib/IdleHistory.py +104 -0
  619. package/python3.4.2/lib/python3.4/idlelib/MultiCall.py +453 -0
  620. package/python3.4.2/lib/python3.4/idlelib/MultiStatusBar.py +45 -0
  621. package/python3.4.2/lib/python3.4/idlelib/NEWS.txt +877 -0
  622. package/python3.4.2/lib/python3.4/idlelib/ObjectBrowser.py +143 -0
  623. package/python3.4.2/lib/python3.4/idlelib/OutputWindow.py +144 -0
  624. package/python3.4.2/lib/python3.4/idlelib/ParenMatch.py +178 -0
  625. package/python3.4.2/lib/python3.4/idlelib/PathBrowser.py +106 -0
  626. package/python3.4.2/lib/python3.4/idlelib/Percolator.py +104 -0
  627. package/python3.4.2/lib/python3.4/idlelib/PyParse.py +618 -0
  628. package/python3.4.2/lib/python3.4/idlelib/PyShell.py +1619 -0
  629. package/python3.4.2/lib/python3.4/idlelib/README.txt +60 -0
  630. package/python3.4.2/lib/python3.4/idlelib/RemoteDebugger.py +389 -0
  631. package/python3.4.2/lib/python3.4/idlelib/RemoteObjectBrowser.py +36 -0
  632. package/python3.4.2/lib/python3.4/idlelib/ReplaceDialog.py +221 -0
  633. package/python3.4.2/lib/python3.4/idlelib/RstripExtension.py +33 -0
  634. package/python3.4.2/lib/python3.4/idlelib/ScriptBinding.py +207 -0
  635. package/python3.4.2/lib/python3.4/idlelib/ScrolledList.py +140 -0
  636. package/python3.4.2/lib/python3.4/idlelib/SearchDialog.py +89 -0
  637. package/python3.4.2/lib/python3.4/idlelib/SearchDialogBase.py +184 -0
  638. package/python3.4.2/lib/python3.4/idlelib/SearchEngine.py +233 -0
  639. package/python3.4.2/lib/python3.4/idlelib/StackViewer.py +152 -0
  640. package/python3.4.2/lib/python3.4/idlelib/TODO.txt +210 -0
  641. package/python3.4.2/lib/python3.4/idlelib/ToolTip.py +97 -0
  642. package/python3.4.2/lib/python3.4/idlelib/TreeWidget.py +465 -0
  643. package/python3.4.2/lib/python3.4/idlelib/UndoDelegator.py +365 -0
  644. package/python3.4.2/lib/python3.4/idlelib/WidgetRedirector.py +174 -0
  645. package/python3.4.2/lib/python3.4/idlelib/WindowList.py +90 -0
  646. package/python3.4.2/lib/python3.4/idlelib/ZoomHeight.py +51 -0
  647. package/python3.4.2/lib/python3.4/idlelib/__init__.py +1 -0
  648. package/python3.4.2/lib/python3.4/idlelib/__main__.py +9 -0
  649. package/python3.4.2/lib/python3.4/idlelib/aboutDialog.py +145 -0
  650. package/python3.4.2/lib/python3.4/idlelib/config-extensions.def +96 -0
  651. package/python3.4.2/lib/python3.4/idlelib/config-highlight.def +64 -0
  652. package/python3.4.2/lib/python3.4/idlelib/config-keys.def +214 -0
  653. package/python3.4.2/lib/python3.4/idlelib/config-main.def +79 -0
  654. package/python3.4.2/lib/python3.4/idlelib/configDialog.py +1195 -0
  655. package/python3.4.2/lib/python3.4/idlelib/configHandler.py +722 -0
  656. package/python3.4.2/lib/python3.4/idlelib/configHelpSourceEdit.py +166 -0
  657. package/python3.4.2/lib/python3.4/idlelib/configSectionNameDialog.py +98 -0
  658. package/python3.4.2/lib/python3.4/idlelib/dynOptionMenuWidget.py +57 -0
  659. package/python3.4.2/lib/python3.4/idlelib/extend.txt +83 -0
  660. package/python3.4.2/lib/python3.4/idlelib/help.txt +368 -0
  661. package/python3.4.2/lib/python3.4/idlelib/idle.bat +4 -0
  662. package/python3.4.2/lib/python3.4/idlelib/idle.py +11 -0
  663. package/python3.4.2/lib/python3.4/idlelib/idle.pyw +21 -0
  664. package/python3.4.2/lib/python3.4/idlelib/idle_test/README.txt +115 -0
  665. package/python3.4.2/lib/python3.4/idlelib/idle_test/__init__.py +9 -0
  666. package/python3.4.2/lib/python3.4/idlelib/idle_test/htest.py +369 -0
  667. package/python3.4.2/lib/python3.4/idlelib/idle_test/mock_idle.py +55 -0
  668. package/python3.4.2/lib/python3.4/idlelib/idle_test/mock_tk.py +298 -0
  669. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_autocomplete.py +143 -0
  670. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_autoexpand.py +141 -0
  671. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_calltips.py +172 -0
  672. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_config_name.py +75 -0
  673. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_configdialog.py +32 -0
  674. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_delegator.py +37 -0
  675. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_formatparagraph.py +377 -0
  676. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_grep.py +80 -0
  677. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_hyperparser.py +273 -0
  678. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_idlehistory.py +167 -0
  679. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_parenmatch.py +109 -0
  680. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_pathbrowser.py +12 -0
  681. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_rstrip.py +49 -0
  682. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_searchdialogbase.py +165 -0
  683. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_searchengine.py +329 -0
  684. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_text.py +228 -0
  685. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_textview.py +97 -0
  686. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_warning.py +73 -0
  687. package/python3.4.2/lib/python3.4/idlelib/idle_test/test_widgetredir.py +122 -0
  688. package/python3.4.2/lib/python3.4/idlelib/idlever.py +1 -0
  689. package/python3.4.2/lib/python3.4/idlelib/keybindingDialog.py +266 -0
  690. package/python3.4.2/lib/python3.4/idlelib/macosxSupport.py +239 -0
  691. package/python3.4.2/lib/python3.4/idlelib/rpc.py +624 -0
  692. package/python3.4.2/lib/python3.4/idlelib/run.py +404 -0
  693. package/python3.4.2/lib/python3.4/idlelib/tabbedpages.py +498 -0
  694. package/python3.4.2/lib/python3.4/idlelib/testcode.py +31 -0
  695. package/python3.4.2/lib/python3.4/idlelib/textView.py +86 -0
  696. package/python3.4.2/lib/python3.4/imaplib.py +1549 -0
  697. package/python3.4.2/lib/python3.4/imghdr.py +154 -0
  698. package/python3.4.2/lib/python3.4/imp.py +315 -0
  699. package/python3.4.2/lib/python3.4/importlib/__init__.py +156 -0
  700. package/python3.4.2/lib/python3.4/importlib/_bootstrap.py +2461 -0
  701. package/python3.4.2/lib/python3.4/importlib/abc.py +323 -0
  702. package/python3.4.2/lib/python3.4/importlib/machinery.py +21 -0
  703. package/python3.4.2/lib/python3.4/importlib/util.py +202 -0
  704. package/python3.4.2/lib/python3.4/inspect.py +2759 -0
  705. package/python3.4.2/lib/python3.4/io.py +92 -0
  706. package/python3.4.2/lib/python3.4/ipaddress.py +2183 -0
  707. package/python3.4.2/lib/python3.4/json/__init__.py +331 -0
  708. package/python3.4.2/lib/python3.4/json/decoder.py +362 -0
  709. package/python3.4.2/lib/python3.4/json/encoder.py +433 -0
  710. package/python3.4.2/lib/python3.4/json/scanner.py +73 -0
  711. package/python3.4.2/lib/python3.4/json/tool.py +39 -0
  712. package/python3.4.2/lib/python3.4/keyword.py +94 -0
  713. package/python3.4.2/lib/python3.4/lib2to3/Grammar.txt +159 -0
  714. package/python3.4.2/lib/python3.4/lib2to3/Grammar3.4.2.final.0.pickle +0 -0
  715. package/python3.4.2/lib/python3.4/lib2to3/PatternGrammar.txt +28 -0
  716. package/python3.4.2/lib/python3.4/lib2to3/PatternGrammar3.4.2.final.0.pickle +0 -0
  717. package/python3.4.2/lib/python3.4/lib2to3/__init__.py +1 -0
  718. package/python3.4.2/lib/python3.4/lib2to3/__main__.py +4 -0
  719. package/python3.4.2/lib/python3.4/lib2to3/btm_matcher.py +168 -0
  720. package/python3.4.2/lib/python3.4/lib2to3/btm_utils.py +281 -0
  721. package/python3.4.2/lib/python3.4/lib2to3/fixer_base.py +187 -0
  722. package/python3.4.2/lib/python3.4/lib2to3/fixer_util.py +455 -0
  723. package/python3.4.2/lib/python3.4/lib2to3/fixes/__init__.py +1 -0
  724. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_apply.py +59 -0
  725. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_asserts.py +34 -0
  726. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_basestring.py +14 -0
  727. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_buffer.py +22 -0
  728. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_callable.py +37 -0
  729. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_dict.py +107 -0
  730. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_except.py +93 -0
  731. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_exec.py +40 -0
  732. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_execfile.py +52 -0
  733. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_exitfunc.py +72 -0
  734. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_filter.py +76 -0
  735. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_funcattrs.py +21 -0
  736. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_future.py +22 -0
  737. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_getcwdu.py +19 -0
  738. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_has_key.py +110 -0
  739. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_idioms.py +152 -0
  740. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_import.py +99 -0
  741. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_imports.py +145 -0
  742. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_imports2.py +16 -0
  743. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_input.py +26 -0
  744. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_intern.py +31 -0
  745. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_isinstance.py +52 -0
  746. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_itertools.py +43 -0
  747. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_itertools_imports.py +57 -0
  748. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_long.py +19 -0
  749. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_map.py +91 -0
  750. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_metaclass.py +228 -0
  751. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_methodattrs.py +24 -0
  752. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_ne.py +23 -0
  753. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_next.py +103 -0
  754. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_nonzero.py +21 -0
  755. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_numliterals.py +28 -0
  756. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_operator.py +98 -0
  757. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_paren.py +44 -0
  758. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_print.py +87 -0
  759. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_raise.py +90 -0
  760. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_raw_input.py +17 -0
  761. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_reduce.py +35 -0
  762. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_reload.py +28 -0
  763. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_renames.py +70 -0
  764. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_repr.py +23 -0
  765. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_set_literal.py +53 -0
  766. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_standarderror.py +18 -0
  767. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_sys_exc.py +30 -0
  768. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_throw.py +56 -0
  769. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_tuple_params.py +175 -0
  770. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_types.py +62 -0
  771. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_unicode.py +42 -0
  772. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_urllib.py +197 -0
  773. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_ws_comma.py +39 -0
  774. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_xrange.py +73 -0
  775. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_xreadlines.py +25 -0
  776. package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_zip.py +35 -0
  777. package/python3.4.2/lib/python3.4/lib2to3/main.py +268 -0
  778. package/python3.4.2/lib/python3.4/lib2to3/patcomp.py +205 -0
  779. package/python3.4.2/lib/python3.4/lib2to3/pgen2/__init__.py +4 -0
  780. package/python3.4.2/lib/python3.4/lib2to3/pgen2/conv.py +257 -0
  781. package/python3.4.2/lib/python3.4/lib2to3/pgen2/driver.py +157 -0
  782. package/python3.4.2/lib/python3.4/lib2to3/pgen2/grammar.py +183 -0
  783. package/python3.4.2/lib/python3.4/lib2to3/pgen2/literals.py +60 -0
  784. package/python3.4.2/lib/python3.4/lib2to3/pgen2/parse.py +201 -0
  785. package/python3.4.2/lib/python3.4/lib2to3/pgen2/pgen.py +386 -0
  786. package/python3.4.2/lib/python3.4/lib2to3/pgen2/token.py +83 -0
  787. package/python3.4.2/lib/python3.4/lib2to3/pgen2/tokenize.py +502 -0
  788. package/python3.4.2/lib/python3.4/lib2to3/pygram.py +40 -0
  789. package/python3.4.2/lib/python3.4/lib2to3/pytree.py +864 -0
  790. package/python3.4.2/lib/python3.4/lib2to3/refactor.py +747 -0
  791. package/python3.4.2/lib/python3.4/lib2to3/tests/__init__.py +24 -0
  792. package/python3.4.2/lib/python3.4/lib2to3/tests/data/README +6 -0
  793. package/python3.4.2/lib/python3.4/lib2to3/tests/data/bom.py +2 -0
  794. package/python3.4.2/lib/python3.4/lib2to3/tests/data/crlf.py +3 -0
  795. package/python3.4.2/lib/python3.4/lib2to3/tests/data/different_encoding.py +6 -0
  796. package/python3.4.2/lib/python3.4/lib2to3/tests/data/false_encoding.py +2 -0
  797. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/bad_order.py +5 -0
  798. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/__init__.py +0 -0
  799. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_explicit.py +6 -0
  800. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_first.py +6 -0
  801. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_last.py +7 -0
  802. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_parrot.py +13 -0
  803. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_preorder.py +6 -0
  804. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/no_fixer_cls.py +1 -0
  805. package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/parrot_example.py +2 -0
  806. package/python3.4.2/lib/python3.4/lib2to3/tests/data/infinite_recursion.py +2669 -0
  807. package/python3.4.2/lib/python3.4/lib2to3/tests/data/py2_test_grammar.py +974 -0
  808. package/python3.4.2/lib/python3.4/lib2to3/tests/data/py3_test_grammar.py +923 -0
  809. package/python3.4.2/lib/python3.4/lib2to3/tests/pytree_idempotency.py +92 -0
  810. package/python3.4.2/lib/python3.4/lib2to3/tests/support.py +54 -0
  811. package/python3.4.2/lib/python3.4/lib2to3/tests/test_all_fixers.py +23 -0
  812. package/python3.4.2/lib/python3.4/lib2to3/tests/test_fixers.py +4687 -0
  813. package/python3.4.2/lib/python3.4/lib2to3/tests/test_main.py +139 -0
  814. package/python3.4.2/lib/python3.4/lib2to3/tests/test_parser.py +249 -0
  815. package/python3.4.2/lib/python3.4/lib2to3/tests/test_pytree.py +477 -0
  816. package/python3.4.2/lib/python3.4/lib2to3/tests/test_refactor.py +321 -0
  817. package/python3.4.2/lib/python3.4/lib2to3/tests/test_util.py +594 -0
  818. package/python3.4.2/lib/python3.4/linecache.py +134 -0
  819. package/python3.4.2/lib/python3.4/locale.py +1559 -0
  820. package/python3.4.2/lib/python3.4/logging/__init__.py +1950 -0
  821. package/python3.4.2/lib/python3.4/logging/config.py +927 -0
  822. package/python3.4.2/lib/python3.4/logging/handlers.py +1452 -0
  823. package/python3.4.2/lib/python3.4/lzma.py +511 -0
  824. package/python3.4.2/lib/python3.4/macpath.py +205 -0
  825. package/python3.4.2/lib/python3.4/macurl2path.py +77 -0
  826. package/python3.4.2/lib/python3.4/mailbox.py +2136 -0
  827. package/python3.4.2/lib/python3.4/mailcap.py +253 -0
  828. package/python3.4.2/lib/python3.4/mimetypes.py +592 -0
  829. package/python3.4.2/lib/python3.4/modulefinder.py +642 -0
  830. package/python3.4.2/lib/python3.4/multiprocessing/__init__.py +38 -0
  831. package/python3.4.2/lib/python3.4/multiprocessing/connection.py +954 -0
  832. package/python3.4.2/lib/python3.4/multiprocessing/context.py +348 -0
  833. package/python3.4.2/lib/python3.4/multiprocessing/dummy/__init__.py +119 -0
  834. package/python3.4.2/lib/python3.4/multiprocessing/dummy/connection.py +74 -0
  835. package/python3.4.2/lib/python3.4/multiprocessing/forkserver.py +267 -0
  836. package/python3.4.2/lib/python3.4/multiprocessing/heap.py +249 -0
  837. package/python3.4.2/lib/python3.4/multiprocessing/managers.py +1131 -0
  838. package/python3.4.2/lib/python3.4/multiprocessing/pool.py +769 -0
  839. package/python3.4.2/lib/python3.4/multiprocessing/popen_fork.py +83 -0
  840. package/python3.4.2/lib/python3.4/multiprocessing/popen_forkserver.py +69 -0
  841. package/python3.4.2/lib/python3.4/multiprocessing/popen_spawn_posix.py +69 -0
  842. package/python3.4.2/lib/python3.4/multiprocessing/popen_spawn_win32.py +99 -0
  843. package/python3.4.2/lib/python3.4/multiprocessing/process.py +332 -0
  844. package/python3.4.2/lib/python3.4/multiprocessing/queues.py +367 -0
  845. package/python3.4.2/lib/python3.4/multiprocessing/reduction.py +240 -0
  846. package/python3.4.2/lib/python3.4/multiprocessing/resource_sharer.py +158 -0
  847. package/python3.4.2/lib/python3.4/multiprocessing/semaphore_tracker.py +143 -0
  848. package/python3.4.2/lib/python3.4/multiprocessing/sharedctypes.py +245 -0
  849. package/python3.4.2/lib/python3.4/multiprocessing/spawn.py +287 -0
  850. package/python3.4.2/lib/python3.4/multiprocessing/synchronize.py +418 -0
  851. package/python3.4.2/lib/python3.4/multiprocessing/util.py +367 -0
  852. package/python3.4.2/lib/python3.4/netrc.py +142 -0
  853. package/python3.4.2/lib/python3.4/nntplib.py +1134 -0
  854. package/python3.4.2/lib/python3.4/ntpath.py +625 -0
  855. package/python3.4.2/lib/python3.4/nturl2path.py +66 -0
  856. package/python3.4.2/lib/python3.4/numbers.py +394 -0
  857. package/python3.4.2/lib/python3.4/opcode.py +200 -0
  858. package/python3.4.2/lib/python3.4/operator.py +411 -0
  859. package/python3.4.2/lib/python3.4/optparse.py +1680 -0
  860. package/python3.4.2/lib/python3.4/os.py +980 -0
  861. package/python3.4.2/lib/python3.4/pathlib.py +1291 -0
  862. package/python3.4.2/lib/python3.4/pdb.py +1685 -0
  863. package/python3.4.2/lib/python3.4/pickle.py +1599 -0
  864. package/python3.4.2/lib/python3.4/pickletools.py +2818 -0
  865. package/python3.4.2/lib/python3.4/pipes.py +247 -0
  866. package/python3.4.2/lib/python3.4/pkgutil.py +629 -0
  867. package/python3.4.2/lib/python3.4/plat-linux/CDROM.py +207 -0
  868. package/python3.4.2/lib/python3.4/plat-linux/DLFCN.py +83 -0
  869. package/python3.4.2/lib/python3.4/plat-linux/IN.py +615 -0
  870. package/python3.4.2/lib/python3.4/plat-linux/TYPES.py +170 -0
  871. package/python3.4.2/lib/python3.4/plat-linux/regen +8 -0
  872. package/python3.4.2/lib/python3.4/platform.py +1476 -0
  873. package/python3.4.2/lib/python3.4/plistlib.py +1025 -0
  874. package/python3.4.2/lib/python3.4/poplib.py +461 -0
  875. package/python3.4.2/lib/python3.4/posixpath.py +457 -0
  876. package/python3.4.2/lib/python3.4/pprint.py +416 -0
  877. package/python3.4.2/lib/python3.4/profile.py +589 -0
  878. package/python3.4.2/lib/python3.4/pstats.py +691 -0
  879. package/python3.4.2/lib/python3.4/pty.py +170 -0
  880. package/python3.4.2/lib/python3.4/py_compile.py +185 -0
  881. package/python3.4.2/lib/python3.4/pyclbr.py +351 -0
  882. package/python3.4.2/lib/python3.4/pydoc.py +2622 -0
  883. package/python3.4.2/lib/python3.4/pydoc_data/__init__.py +0 -0
  884. package/python3.4.2/lib/python3.4/pydoc_data/_pydoc.css +6 -0
  885. package/python3.4.2/lib/python3.4/pydoc_data/topics.py +79 -0
  886. package/python3.4.2/lib/python3.4/queue.py +249 -0
  887. package/python3.4.2/lib/python3.4/quopri.py +242 -0
  888. package/python3.4.2/lib/python3.4/random.py +742 -0
  889. package/python3.4.2/lib/python3.4/re.py +368 -0
  890. package/python3.4.2/lib/python3.4/reprlib.py +157 -0
  891. package/python3.4.2/lib/python3.4/rlcompleter.py +165 -0
  892. package/python3.4.2/lib/python3.4/runpy.py +271 -0
  893. package/python3.4.2/lib/python3.4/sched.py +167 -0
  894. package/python3.4.2/lib/python3.4/selectors.py +525 -0
  895. package/python3.4.2/lib/python3.4/shelve.py +239 -0
  896. package/python3.4.2/lib/python3.4/shlex.py +304 -0
  897. package/python3.4.2/lib/python3.4/shutil.py +1127 -0
  898. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/PKG-INFO +55 -0
  899. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/SOURCES.txt +126 -0
  900. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/dependency_links.txt +1 -0
  901. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/entry_points.txt +4 -0
  902. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/not-zip-safe +1 -0
  903. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/requires.txt +4 -0
  904. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/top_level.txt +1 -0
  905. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/__init__.py +69 -0
  906. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/_compat.py +150 -0
  907. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/_stringdefs.py +132 -0
  908. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/bccache.py +344 -0
  909. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/compiler.py +1640 -0
  910. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/constants.py +32 -0
  911. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/debug.py +337 -0
  912. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/defaults.py +43 -0
  913. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/environment.py +1191 -0
  914. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/exceptions.py +146 -0
  915. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/ext.py +636 -0
  916. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/filters.py +987 -0
  917. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/lexer.py +733 -0
  918. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/loaders.py +471 -0
  919. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/meta.py +103 -0
  920. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/nodes.py +914 -0
  921. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/optimizer.py +68 -0
  922. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/parser.py +895 -0
  923. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/runtime.py +581 -0
  924. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/sandbox.py +368 -0
  925. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/tests.py +149 -0
  926. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/__init__.py +156 -0
  927. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/api.py +261 -0
  928. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/bytecode_cache.py +37 -0
  929. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/core_tags.py +305 -0
  930. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/debug.py +58 -0
  931. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/doctests.py +29 -0
  932. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/ext.py +459 -0
  933. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/filters.py +515 -0
  934. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/imports.py +141 -0
  935. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/inheritance.py +250 -0
  936. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/lexnparse.py +593 -0
  937. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/loader.py +226 -0
  938. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/regression.py +279 -0
  939. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/__init__.py +0 -0
  940. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/broken.html +3 -0
  941. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/foo/test.html +1 -0
  942. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/syntaxerror.html +4 -0
  943. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/test.html +1 -0
  944. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/security.py +166 -0
  945. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/tests.py +93 -0
  946. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/utils.py +82 -0
  947. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/utils.py +520 -0
  948. package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/visitor.py +87 -0
  949. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/PKG-INFO +119 -0
  950. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/SOURCES.txt +17 -0
  951. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/dependency_links.txt +1 -0
  952. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/not-zip-safe +1 -0
  953. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/top_level.txt +1 -0
  954. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/__init__.py +298 -0
  955. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_compat.py +26 -0
  956. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_constants.py +267 -0
  957. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_native.py +46 -0
  958. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_speedups.c +239 -0
  959. package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/tests.py +179 -0
  960. package/python3.4.2/lib/python3.4/site-packages/README +2 -0
  961. package/python3.4.2/lib/python3.4/site-packages/_markerlib/__init__.py +16 -0
  962. package/python3.4.2/lib/python3.4/site-packages/_markerlib/markers.py +119 -0
  963. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/PKG-INFO +68 -0
  964. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/SOURCES.txt +23 -0
  965. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/dependency_links.txt +1 -0
  966. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/entry_points.txt +3 -0
  967. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/not-zip-safe +1 -0
  968. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/requires.txt +1 -0
  969. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/scripts/android-debian-builder +6 -0
  970. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/top_level.txt +1 -0
  971. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/__init__.py +0 -0
  972. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/__main__.py +26 -0
  973. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/build.py +63 -0
  974. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/config.py +82 -0
  975. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/deb.sh +106 -0
  976. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/default-config +42 -0
  977. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/first-time-setup.sh +94 -0
  978. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/init.sh +27 -0
  979. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/examples/jessie-armhf.cfg +26 -0
  980. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/run_tests.py +38 -0
  981. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/script.py +110 -0
  982. package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/util.py +177 -0
  983. package/python3.4.2/lib/python3.4/site-packages/easy-install.pth +4 -0
  984. package/python3.4.2/lib/python3.4/site-packages/easy_install.py +5 -0
  985. package/python3.4.2/lib/python3.4/site-packages/pip/__init__.py +277 -0
  986. package/python3.4.2/lib/python3.4/site-packages/pip/__main__.py +7 -0
  987. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/__init__.py +8 -0
  988. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/_markerlib/__init__.py +16 -0
  989. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/_markerlib/markers.py +119 -0
  990. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/__init__.py +7 -0
  991. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/ansi.py +50 -0
  992. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/ansitowin32.py +190 -0
  993. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/initialise.py +56 -0
  994. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/win32.py +137 -0
  995. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/winterm.py +120 -0
  996. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/__init__.py +23 -0
  997. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/__init__.py +6 -0
  998. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/misc.py +41 -0
  999. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/shutil.py +761 -0
  1000. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg +84 -0
  1001. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/sysconfig.py +788 -0
  1002. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/tarfile.py +2607 -0
  1003. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/compat.py +1064 -0
  1004. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/database.py +1301 -0
  1005. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/index.py +488 -0
  1006. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/locators.py +1194 -0
  1007. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/manifest.py +364 -0
  1008. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/markers.py +190 -0
  1009. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/metadata.py +1026 -0
  1010. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/resources.py +317 -0
  1011. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/scripts.py +323 -0
  1012. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  1013. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  1014. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/util.py +1575 -0
  1015. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/version.py +721 -0
  1016. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  1017. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  1018. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/wheel.py +958 -0
  1019. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/__init__.py +23 -0
  1020. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/constants.py +3104 -0
  1021. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/__init__.py +0 -0
  1022. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/_base.py +12 -0
  1023. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py +20 -0
  1024. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py +65 -0
  1025. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/lint.py +93 -0
  1026. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/optionaltags.py +205 -0
  1027. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/sanitizer.py +12 -0
  1028. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/whitespace.py +38 -0
  1029. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/html5parser.py +2713 -0
  1030. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/ihatexml.py +285 -0
  1031. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/inputstream.py +881 -0
  1032. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/sanitizer.py +271 -0
  1033. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/serializer/__init__.py +16 -0
  1034. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/serializer/htmlserializer.py +320 -0
  1035. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/tokenizer.py +1731 -0
  1036. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py +0 -0
  1037. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treeadapters/sax.py +44 -0
  1038. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py +76 -0
  1039. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/_base.py +377 -0
  1040. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/dom.py +227 -0
  1041. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/etree.py +337 -0
  1042. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py +369 -0
  1043. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py +57 -0
  1044. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/_base.py +200 -0
  1045. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/dom.py +46 -0
  1046. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/etree.py +138 -0
  1047. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/genshistream.py +69 -0
  1048. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/lxmletree.py +208 -0
  1049. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/pulldom.py +63 -0
  1050. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/__init__.py +12 -0
  1051. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/_base.py +37 -0
  1052. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/datrie.py +44 -0
  1053. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/py.py +67 -0
  1054. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/utils.py +82 -0
  1055. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/pkg_resources.py +2762 -0
  1056. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/re-vendor.py +34 -0
  1057. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/__init__.py +77 -0
  1058. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/adapters.py +388 -0
  1059. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/api.py +120 -0
  1060. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/auth.py +193 -0
  1061. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/cacert.pem +5026 -0
  1062. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/certs.py +24 -0
  1063. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/compat.py +115 -0
  1064. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/cookies.py +454 -0
  1065. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/exceptions.py +75 -0
  1066. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/hooks.py +45 -0
  1067. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/models.py +803 -0
  1068. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/__init__.py +3 -0
  1069. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/__init__.py +32 -0
  1070. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/big5freq.py +925 -0
  1071. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/big5prober.py +42 -0
  1072. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/chardetect.py +46 -0
  1073. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/chardistribution.py +231 -0
  1074. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/charsetgroupprober.py +106 -0
  1075. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/charsetprober.py +62 -0
  1076. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/codingstatemachine.py +61 -0
  1077. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/compat.py +34 -0
  1078. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/constants.py +39 -0
  1079. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/cp949prober.py +44 -0
  1080. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/escprober.py +86 -0
  1081. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/escsm.py +242 -0
  1082. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/eucjpprober.py +90 -0
  1083. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euckrfreq.py +596 -0
  1084. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euckrprober.py +42 -0
  1085. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euctwfreq.py +428 -0
  1086. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euctwprober.py +41 -0
  1087. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/gb2312freq.py +472 -0
  1088. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/gb2312prober.py +41 -0
  1089. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/hebrewprober.py +283 -0
  1090. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/jisfreq.py +569 -0
  1091. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/jpcntx.py +219 -0
  1092. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py +229 -0
  1093. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py +329 -0
  1094. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langgreekmodel.py +225 -0
  1095. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langhebrewmodel.py +201 -0
  1096. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langhungarianmodel.py +225 -0
  1097. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langthaimodel.py +200 -0
  1098. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/latin1prober.py +139 -0
  1099. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/mbcharsetprober.py +86 -0
  1100. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py +54 -0
  1101. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/mbcssm.py +575 -0
  1102. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/sbcharsetprober.py +120 -0
  1103. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py +69 -0
  1104. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/sjisprober.py +91 -0
  1105. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/universaldetector.py +170 -0
  1106. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/utf8prober.py +76 -0
  1107. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/__init__.py +58 -0
  1108. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/_collections.py +205 -0
  1109. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/connection.py +204 -0
  1110. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/connectionpool.py +710 -0
  1111. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py +0 -0
  1112. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py +120 -0
  1113. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py +422 -0
  1114. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/exceptions.py +126 -0
  1115. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/fields.py +177 -0
  1116. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/filepost.py +100 -0
  1117. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/__init__.py +4 -0
  1118. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py +260 -0
  1119. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/six.py +385 -0
  1120. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py +13 -0
  1121. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py +105 -0
  1122. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/poolmanager.py +258 -0
  1123. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/request.py +141 -0
  1124. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/response.py +308 -0
  1125. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/__init__.py +27 -0
  1126. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/connection.py +45 -0
  1127. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/request.py +68 -0
  1128. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/response.py +13 -0
  1129. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py +133 -0
  1130. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/timeout.py +234 -0
  1131. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/url.py +162 -0
  1132. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/sessions.py +637 -0
  1133. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/status_codes.py +88 -0
  1134. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/structures.py +127 -0
  1135. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/utils.py +673 -0
  1136. package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/six.py +646 -0
  1137. package/python3.4.2/lib/python3.4/site-packages/pip/backwardcompat/__init__.py +138 -0
  1138. package/python3.4.2/lib/python3.4/site-packages/pip/basecommand.py +201 -0
  1139. package/python3.4.2/lib/python3.4/site-packages/pip/baseparser.py +224 -0
  1140. package/python3.4.2/lib/python3.4/site-packages/pip/cmdoptions.py +371 -0
  1141. package/python3.4.2/lib/python3.4/site-packages/pip/commands/__init__.py +88 -0
  1142. package/python3.4.2/lib/python3.4/site-packages/pip/commands/bundle.py +42 -0
  1143. package/python3.4.2/lib/python3.4/site-packages/pip/commands/completion.py +59 -0
  1144. package/python3.4.2/lib/python3.4/site-packages/pip/commands/freeze.py +114 -0
  1145. package/python3.4.2/lib/python3.4/site-packages/pip/commands/help.py +33 -0
  1146. package/python3.4.2/lib/python3.4/site-packages/pip/commands/install.py +314 -0
  1147. package/python3.4.2/lib/python3.4/site-packages/pip/commands/list.py +162 -0
  1148. package/python3.4.2/lib/python3.4/site-packages/pip/commands/search.py +132 -0
  1149. package/python3.4.2/lib/python3.4/site-packages/pip/commands/show.py +80 -0
  1150. package/python3.4.2/lib/python3.4/site-packages/pip/commands/uninstall.py +59 -0
  1151. package/python3.4.2/lib/python3.4/site-packages/pip/commands/unzip.py +7 -0
  1152. package/python3.4.2/lib/python3.4/site-packages/pip/commands/wheel.py +195 -0
  1153. package/python3.4.2/lib/python3.4/site-packages/pip/commands/zip.py +351 -0
  1154. package/python3.4.2/lib/python3.4/site-packages/pip/download.py +644 -0
  1155. package/python3.4.2/lib/python3.4/site-packages/pip/exceptions.py +46 -0
  1156. package/python3.4.2/lib/python3.4/site-packages/pip/index.py +990 -0
  1157. package/python3.4.2/lib/python3.4/site-packages/pip/locations.py +172 -0
  1158. package/python3.4.2/lib/python3.4/site-packages/pip/log.py +276 -0
  1159. package/python3.4.2/lib/python3.4/site-packages/pip/pep425tags.py +102 -0
  1160. package/python3.4.2/lib/python3.4/site-packages/pip/req.py +1931 -0
  1161. package/python3.4.2/lib/python3.4/site-packages/pip/runner.py +18 -0
  1162. package/python3.4.2/lib/python3.4/site-packages/pip/status_codes.py +6 -0
  1163. package/python3.4.2/lib/python3.4/site-packages/pip/util.py +720 -0
  1164. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/__init__.py +251 -0
  1165. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/bazaar.py +131 -0
  1166. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/git.py +194 -0
  1167. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/mercurial.py +151 -0
  1168. package/python3.4.2/lib/python3.4/site-packages/pip/vcs/subversion.py +273 -0
  1169. package/python3.4.2/lib/python3.4/site-packages/pip/wheel.py +560 -0
  1170. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/DESCRIPTION.rst +71 -0
  1171. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/METADATA +98 -0
  1172. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/RECORD +373 -0
  1173. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/WHEEL +6 -0
  1174. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/entry_points.txt +5 -0
  1175. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/metadata.json +1 -0
  1176. package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/top_level.txt +1 -0
  1177. package/python3.4.2/lib/python3.4/site-packages/pkg_resources.py +2719 -0
  1178. package/python3.4.2/lib/python3.4/site-packages/setuptools/__init__.py +98 -0
  1179. package/python3.4.2/lib/python3.4/site-packages/setuptools/archive_util.py +210 -0
  1180. package/python3.4.2/lib/python3.4/site-packages/setuptools/cli-32.exe +0 -0
  1181. package/python3.4.2/lib/python3.4/site-packages/setuptools/cli-64.exe +0 -0
  1182. package/python3.4.2/lib/python3.4/site-packages/setuptools/cli-arm-32.exe +0 -0
  1183. package/python3.4.2/lib/python3.4/site-packages/setuptools/cli.exe +0 -0
  1184. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/__init__.py +17 -0
  1185. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/alias.py +82 -0
  1186. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/bdist_egg.py +553 -0
  1187. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/bdist_rpm.py +82 -0
  1188. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/bdist_wininst.py +82 -0
  1189. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/build_ext.py +298 -0
  1190. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/build_py.py +221 -0
  1191. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/develop.py +167 -0
  1192. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/easy_install.py +1915 -0
  1193. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/egg_info.py +392 -0
  1194. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install.py +103 -0
  1195. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install_egg_info.py +125 -0
  1196. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install_lib.py +82 -0
  1197. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install_scripts.py +54 -0
  1198. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/launcher manifest.xml +15 -0
  1199. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/register.py +10 -0
  1200. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/rotate.py +83 -0
  1201. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/saveopts.py +24 -0
  1202. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/sdist.py +238 -0
  1203. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/setopt.py +164 -0
  1204. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/test.py +198 -0
  1205. package/python3.4.2/lib/python3.4/site-packages/setuptools/command/upload_docs.py +193 -0
  1206. package/python3.4.2/lib/python3.4/site-packages/setuptools/compat.py +83 -0
  1207. package/python3.4.2/lib/python3.4/site-packages/setuptools/depends.py +246 -0
  1208. package/python3.4.2/lib/python3.4/site-packages/setuptools/dist.py +796 -0
  1209. package/python3.4.2/lib/python3.4/site-packages/setuptools/extension.py +46 -0
  1210. package/python3.4.2/lib/python3.4/site-packages/setuptools/gui-32.exe +0 -0
  1211. package/python3.4.2/lib/python3.4/site-packages/setuptools/gui-64.exe +0 -0
  1212. package/python3.4.2/lib/python3.4/site-packages/setuptools/gui-arm-32.exe +0 -0
  1213. package/python3.4.2/lib/python3.4/site-packages/setuptools/gui.exe +0 -0
  1214. package/python3.4.2/lib/python3.4/site-packages/setuptools/lib2to3_ex.py +58 -0
  1215. package/python3.4.2/lib/python3.4/site-packages/setuptools/package_index.py +1057 -0
  1216. package/python3.4.2/lib/python3.4/site-packages/setuptools/py26compat.py +19 -0
  1217. package/python3.4.2/lib/python3.4/site-packages/setuptools/py27compat.py +15 -0
  1218. package/python3.4.2/lib/python3.4/site-packages/setuptools/py31compat.py +11 -0
  1219. package/python3.4.2/lib/python3.4/site-packages/setuptools/sandbox.py +322 -0
  1220. package/python3.4.2/lib/python3.4/site-packages/setuptools/script template (dev).py +11 -0
  1221. package/python3.4.2/lib/python3.4/site-packages/setuptools/script template.py +4 -0
  1222. package/python3.4.2/lib/python3.4/site-packages/setuptools/site-patch.py +83 -0
  1223. package/python3.4.2/lib/python3.4/site-packages/setuptools/ssl_support.py +234 -0
  1224. package/python3.4.2/lib/python3.4/site-packages/setuptools/svn_utils.py +564 -0
  1225. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/__init__.py +352 -0
  1226. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/doctest.py +2683 -0
  1227. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/environment.py +165 -0
  1228. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/py26compat.py +14 -0
  1229. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/script-with-bom.py +3 -0
  1230. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/server.py +82 -0
  1231. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_bdist_egg.py +69 -0
  1232. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_build_ext.py +20 -0
  1233. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_develop.py +122 -0
  1234. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_dist_info.py +83 -0
  1235. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_easy_install.py +394 -0
  1236. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_egg_info.py +173 -0
  1237. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_markerlib.py +68 -0
  1238. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_packageindex.py +203 -0
  1239. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_resources.py +620 -0
  1240. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_sandbox.py +79 -0
  1241. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_sdist.py +535 -0
  1242. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_svn.py +246 -0
  1243. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_test.py +124 -0
  1244. package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_upload_docs.py +72 -0
  1245. package/python3.4.2/lib/python3.4/site-packages/setuptools/version.py +1 -0
  1246. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/DESCRIPTION.rst +1742 -0
  1247. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/METADATA +1772 -0
  1248. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/RECORD +149 -0
  1249. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/WHEEL +6 -0
  1250. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/dependency_links.txt +2 -0
  1251. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/entry_points.txt +62 -0
  1252. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/entry_points.txt.orig +62 -0
  1253. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/pydist.json +1 -0
  1254. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/requires.txt.orig +7 -0
  1255. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/top_level.txt +4 -0
  1256. package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/zip-safe +1 -0
  1257. package/python3.4.2/lib/python3.4/site.py +616 -0
  1258. package/python3.4.2/lib/python3.4/smtpd.py +861 -0
  1259. package/python3.4.2/lib/python3.4/smtplib.py +999 -0
  1260. package/python3.4.2/lib/python3.4/sndhdr.py +240 -0
  1261. package/python3.4.2/lib/python3.4/socket.py +535 -0
  1262. package/python3.4.2/lib/python3.4/socketserver.py +748 -0
  1263. package/python3.4.2/lib/python3.4/sqlite3/__init__.py +23 -0
  1264. package/python3.4.2/lib/python3.4/sqlite3/dbapi2.py +89 -0
  1265. package/python3.4.2/lib/python3.4/sqlite3/dump.py +70 -0
  1266. package/python3.4.2/lib/python3.4/sqlite3/test/__init__.py +0 -0
  1267. package/python3.4.2/lib/python3.4/sqlite3/test/dbapi.py +911 -0
  1268. package/python3.4.2/lib/python3.4/sqlite3/test/dump.py +81 -0
  1269. package/python3.4.2/lib/python3.4/sqlite3/test/factory.py +253 -0
  1270. package/python3.4.2/lib/python3.4/sqlite3/test/hooks.py +258 -0
  1271. package/python3.4.2/lib/python3.4/sqlite3/test/regression.py +358 -0
  1272. package/python3.4.2/lib/python3.4/sqlite3/test/transactions.py +204 -0
  1273. package/python3.4.2/lib/python3.4/sqlite3/test/types.py +403 -0
  1274. package/python3.4.2/lib/python3.4/sqlite3/test/userfunctions.py +468 -0
  1275. package/python3.4.2/lib/python3.4/sre_compile.py +489 -0
  1276. package/python3.4.2/lib/python3.4/sre_constants.py +261 -0
  1277. package/python3.4.2/lib/python3.4/sre_parse.py +859 -0
  1278. package/python3.4.2/lib/python3.4/ssl.py +945 -0
  1279. package/python3.4.2/lib/python3.4/stat.py +155 -0
  1280. package/python3.4.2/lib/python3.4/statistics.py +595 -0
  1281. package/python3.4.2/lib/python3.4/string.py +282 -0
  1282. package/python3.4.2/lib/python3.4/stringprep.py +272 -0
  1283. package/python3.4.2/lib/python3.4/struct.py +15 -0
  1284. package/python3.4.2/lib/python3.4/subprocess.py +1690 -0
  1285. package/python3.4.2/lib/python3.4/sunau.py +525 -0
  1286. package/python3.4.2/lib/python3.4/symbol.py +111 -0
  1287. package/python3.4.2/lib/python3.4/symtable.py +240 -0
  1288. package/python3.4.2/lib/python3.4/sysconfig.py +709 -0
  1289. package/python3.4.2/lib/python3.4/tabnanny.py +332 -0
  1290. package/python3.4.2/lib/python3.4/tarfile.py +2519 -0
  1291. package/python3.4.2/lib/python3.4/telnetlib.py +672 -0
  1292. package/python3.4.2/lib/python3.4/tempfile.py +698 -0
  1293. package/python3.4.2/lib/python3.4/test/185test.db +0 -0
  1294. package/python3.4.2/lib/python3.4/test/Sine-1000Hz-300ms.aif +0 -0
  1295. package/python3.4.2/lib/python3.4/test/__init__.py +1 -0
  1296. package/python3.4.2/lib/python3.4/test/__main__.py +3 -0
  1297. package/python3.4.2/lib/python3.4/test/_test_multiprocessing.py +3841 -0
  1298. package/python3.4.2/lib/python3.4/test/audiodata/pluck-alaw.aifc +0 -0
  1299. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm16.aiff +0 -0
  1300. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm16.au +0 -0
  1301. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm16.wav +0 -0
  1302. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm24.aiff +0 -0
  1303. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm24.au +0 -0
  1304. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm24.wav +0 -0
  1305. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm32.aiff +0 -0
  1306. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm32.au +0 -0
  1307. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm32.wav +0 -0
  1308. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm8.aiff +0 -0
  1309. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm8.au +0 -0
  1310. package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm8.wav +0 -0
  1311. package/python3.4.2/lib/python3.4/test/audiodata/pluck-ulaw.aifc +0 -0
  1312. package/python3.4.2/lib/python3.4/test/audiodata/pluck-ulaw.au +0 -0
  1313. package/python3.4.2/lib/python3.4/test/audiotest.au +0 -0
  1314. package/python3.4.2/lib/python3.4/test/audiotests.py +329 -0
  1315. package/python3.4.2/lib/python3.4/test/autotest.py +6 -0
  1316. package/python3.4.2/lib/python3.4/test/bad_coding.py +1 -0
  1317. package/python3.4.2/lib/python3.4/test/bad_coding2.py +2 -0
  1318. package/python3.4.2/lib/python3.4/test/badcert.pem +36 -0
  1319. package/python3.4.2/lib/python3.4/test/badkey.pem +40 -0
  1320. package/python3.4.2/lib/python3.4/test/badsyntax_3131.py +2 -0
  1321. package/python3.4.2/lib/python3.4/test/badsyntax_future10.py +3 -0
  1322. package/python3.4.2/lib/python3.4/test/badsyntax_future3.py +10 -0
  1323. package/python3.4.2/lib/python3.4/test/badsyntax_future4.py +10 -0
  1324. package/python3.4.2/lib/python3.4/test/badsyntax_future5.py +12 -0
  1325. package/python3.4.2/lib/python3.4/test/badsyntax_future6.py +10 -0
  1326. package/python3.4.2/lib/python3.4/test/badsyntax_future7.py +11 -0
  1327. package/python3.4.2/lib/python3.4/test/badsyntax_future8.py +10 -0
  1328. package/python3.4.2/lib/python3.4/test/badsyntax_future9.py +10 -0
  1329. package/python3.4.2/lib/python3.4/test/badsyntax_pep3120.py +1 -0
  1330. package/python3.4.2/lib/python3.4/test/buffer_tests.py +218 -0
  1331. package/python3.4.2/lib/python3.4/test/bytecode_helper.py +41 -0
  1332. package/python3.4.2/lib/python3.4/test/capath/4e1295a3.0 +14 -0
  1333. package/python3.4.2/lib/python3.4/test/capath/5ed36f99.0 +41 -0
  1334. package/python3.4.2/lib/python3.4/test/capath/6e88d7b8.0 +14 -0
  1335. package/python3.4.2/lib/python3.4/test/capath/99d0fa06.0 +41 -0
  1336. package/python3.4.2/lib/python3.4/test/cfgparser.1 +2 -0
  1337. package/python3.4.2/lib/python3.4/test/cfgparser.2 +537 -0
  1338. package/python3.4.2/lib/python3.4/test/cfgparser.3 +69 -0
  1339. package/python3.4.2/lib/python3.4/test/check_soundcard.vbs +13 -0
  1340. package/python3.4.2/lib/python3.4/test/cjkencodings/big5-utf8.txt +9 -0
  1341. package/python3.4.2/lib/python3.4/test/cjkencodings/big5.txt +9 -0
  1342. package/python3.4.2/lib/python3.4/test/cjkencodings/big5hkscs-utf8.txt +2 -0
  1343. package/python3.4.2/lib/python3.4/test/cjkencodings/big5hkscs.txt +2 -0
  1344. package/python3.4.2/lib/python3.4/test/cjkencodings/cp949-utf8.txt +9 -0
  1345. package/python3.4.2/lib/python3.4/test/cjkencodings/cp949.txt +9 -0
  1346. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jisx0213-utf8.txt +8 -0
  1347. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jisx0213.txt +8 -0
  1348. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jp-utf8.txt +7 -0
  1349. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jp.txt +7 -0
  1350. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_kr-utf8.txt +7 -0
  1351. package/python3.4.2/lib/python3.4/test/cjkencodings/euc_kr.txt +7 -0
  1352. package/python3.4.2/lib/python3.4/test/cjkencodings/gb18030-utf8.txt +15 -0
  1353. package/python3.4.2/lib/python3.4/test/cjkencodings/gb18030.txt +15 -0
  1354. package/python3.4.2/lib/python3.4/test/cjkencodings/gb2312-utf8.txt +6 -0
  1355. package/python3.4.2/lib/python3.4/test/cjkencodings/gb2312.txt +6 -0
  1356. package/python3.4.2/lib/python3.4/test/cjkencodings/gbk-utf8.txt +14 -0
  1357. package/python3.4.2/lib/python3.4/test/cjkencodings/gbk.txt +14 -0
  1358. package/python3.4.2/lib/python3.4/test/cjkencodings/hz-utf8.txt +2 -0
  1359. package/python3.4.2/lib/python3.4/test/cjkencodings/hz.txt +2 -0
  1360. package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_jp-utf8.txt +7 -0
  1361. package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_jp.txt +7 -0
  1362. package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_kr-utf8.txt +7 -0
  1363. package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_kr.txt +7 -0
  1364. package/python3.4.2/lib/python3.4/test/cjkencodings/johab-utf8.txt +9 -0
  1365. package/python3.4.2/lib/python3.4/test/cjkencodings/johab.txt +9 -0
  1366. package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jis-utf8.txt +7 -0
  1367. package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jis.txt +7 -0
  1368. package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jisx0213-utf8.txt +8 -0
  1369. package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jisx0213.txt +8 -0
  1370. package/python3.4.2/lib/python3.4/test/cmath_testcases.txt +2370 -0
  1371. package/python3.4.2/lib/python3.4/test/coding20731.py +4 -0
  1372. package/python3.4.2/lib/python3.4/test/curses_tests.py +46 -0
  1373. package/python3.4.2/lib/python3.4/test/data/README +2 -0
  1374. package/python3.4.2/lib/python3.4/test/datetimetester.py +3786 -0
  1375. package/python3.4.2/lib/python3.4/test/decimaltestdata/abs.decTest +161 -0
  1376. package/python3.4.2/lib/python3.4/test/decimaltestdata/add.decTest +2716 -0
  1377. package/python3.4.2/lib/python3.4/test/decimaltestdata/and.decTest +338 -0
  1378. package/python3.4.2/lib/python3.4/test/decimaltestdata/base.decTest +1411 -0
  1379. package/python3.4.2/lib/python3.4/test/decimaltestdata/clamp.decTest +211 -0
  1380. package/python3.4.2/lib/python3.4/test/decimaltestdata/class.decTest +131 -0
  1381. package/python3.4.2/lib/python3.4/test/decimaltestdata/compare.decTest +758 -0
  1382. package/python3.4.2/lib/python3.4/test/decimaltestdata/comparetotal.decTest +798 -0
  1383. package/python3.4.2/lib/python3.4/test/decimaltestdata/comparetotmag.decTest +790 -0
  1384. package/python3.4.2/lib/python3.4/test/decimaltestdata/copy.decTest +86 -0
  1385. package/python3.4.2/lib/python3.4/test/decimaltestdata/copyabs.decTest +86 -0
  1386. package/python3.4.2/lib/python3.4/test/decimaltestdata/copynegate.decTest +86 -0
  1387. package/python3.4.2/lib/python3.4/test/decimaltestdata/copysign.decTest +177 -0
  1388. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddAbs.decTest +126 -0
  1389. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddAdd.decTest +1328 -0
  1390. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddAnd.decTest +347 -0
  1391. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddBase.decTest +1104 -0
  1392. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCanonical.decTest +357 -0
  1393. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddClass.decTest +76 -0
  1394. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompare.decTest +744 -0
  1395. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompareSig.decTest +647 -0
  1396. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompareTotal.decTest +706 -0
  1397. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompareTotalMag.decTest +706 -0
  1398. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopy.decTest +88 -0
  1399. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopyAbs.decTest +88 -0
  1400. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopyNegate.decTest +88 -0
  1401. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopySign.decTest +175 -0
  1402. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddDivide.decTest +863 -0
  1403. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddDivideInt.decTest +449 -0
  1404. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddEncode.decTest +495 -0
  1405. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddFMA.decTest +1698 -0
  1406. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddInvert.decTest +202 -0
  1407. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddLogB.decTest +159 -0
  1408. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMax.decTest +322 -0
  1409. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMaxMag.decTest +304 -0
  1410. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMin.decTest +309 -0
  1411. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMinMag.decTest +293 -0
  1412. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMinus.decTest +88 -0
  1413. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMultiply.decTest +553 -0
  1414. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddNextMinus.decTest +126 -0
  1415. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddNextPlus.decTest +124 -0
  1416. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddNextToward.decTest +374 -0
  1417. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddOr.decTest +292 -0
  1418. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddPlus.decTest +88 -0
  1419. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddQuantize.decTest +833 -0
  1420. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddReduce.decTest +182 -0
  1421. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddRemainder.decTest +600 -0
  1422. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddRemainderNear.decTest +629 -0
  1423. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddRotate.decTest +262 -0
  1424. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddSameQuantum.decTest +389 -0
  1425. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddScaleB.decTest +243 -0
  1426. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddShift.decTest +262 -0
  1427. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddSubtract.decTest +629 -0
  1428. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddToIntegral.decTest +257 -0
  1429. package/python3.4.2/lib/python3.4/test/decimaltestdata/ddXor.decTest +337 -0
  1430. package/python3.4.2/lib/python3.4/test/decimaltestdata/decDouble.decTest +65 -0
  1431. package/python3.4.2/lib/python3.4/test/decimaltestdata/decQuad.decTest +65 -0
  1432. package/python3.4.2/lib/python3.4/test/decimaltestdata/decSingle.decTest +25 -0
  1433. package/python3.4.2/lib/python3.4/test/decimaltestdata/divide.decTest +854 -0
  1434. package/python3.4.2/lib/python3.4/test/decimaltestdata/divideint.decTest +486 -0
  1435. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqAbs.decTest +126 -0
  1436. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqAdd.decTest +1215 -0
  1437. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqAnd.decTest +420 -0
  1438. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqBase.decTest +1081 -0
  1439. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCanonical.decTest +372 -0
  1440. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqClass.decTest +77 -0
  1441. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompare.decTest +753 -0
  1442. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompareSig.decTest +647 -0
  1443. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompareTotal.decTest +706 -0
  1444. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompareTotalMag.decTest +706 -0
  1445. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopy.decTest +88 -0
  1446. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopyAbs.decTest +88 -0
  1447. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopyNegate.decTest +88 -0
  1448. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopySign.decTest +175 -0
  1449. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqDivide.decTest +808 -0
  1450. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqDivideInt.decTest +453 -0
  1451. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqEncode.decTest +477 -0
  1452. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqFMA.decTest +1786 -0
  1453. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqInvert.decTest +245 -0
  1454. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqLogB.decTest +160 -0
  1455. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMax.decTest +322 -0
  1456. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMaxMag.decTest +304 -0
  1457. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMin.decTest +309 -0
  1458. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMinMag.decTest +293 -0
  1459. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMinus.decTest +88 -0
  1460. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMultiply.decTest +589 -0
  1461. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqNextMinus.decTest +126 -0
  1462. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqNextPlus.decTest +124 -0
  1463. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqNextToward.decTest +375 -0
  1464. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqOr.decTest +401 -0
  1465. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqPlus.decTest +88 -0
  1466. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqQuantize.decTest +836 -0
  1467. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqReduce.decTest +183 -0
  1468. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqRemainder.decTest +597 -0
  1469. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqRemainderNear.decTest +631 -0
  1470. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqRotate.decTest +298 -0
  1471. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqSameQuantum.decTest +389 -0
  1472. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqScaleB.decTest +260 -0
  1473. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqShift.decTest +298 -0
  1474. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqSubtract.decTest +635 -0
  1475. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqToIntegral.decTest +257 -0
  1476. package/python3.4.2/lib/python3.4/test/decimaltestdata/dqXor.decTest +410 -0
  1477. package/python3.4.2/lib/python3.4/test/decimaltestdata/dsBase.decTest +1062 -0
  1478. package/python3.4.2/lib/python3.4/test/decimaltestdata/dsEncode.decTest +372 -0
  1479. package/python3.4.2/lib/python3.4/test/decimaltestdata/exp.decTest +674 -0
  1480. package/python3.4.2/lib/python3.4/test/decimaltestdata/extra.decTest +2830 -0
  1481. package/python3.4.2/lib/python3.4/test/decimaltestdata/fma.decTest +3426 -0
  1482. package/python3.4.2/lib/python3.4/test/decimaltestdata/inexact.decTest +215 -0
  1483. package/python3.4.2/lib/python3.4/test/decimaltestdata/invert.decTest +176 -0
  1484. package/python3.4.2/lib/python3.4/test/decimaltestdata/ln.decTest +611 -0
  1485. package/python3.4.2/lib/python3.4/test/decimaltestdata/log10.decTest +551 -0
  1486. package/python3.4.2/lib/python3.4/test/decimaltestdata/logb.decTest +188 -0
  1487. package/python3.4.2/lib/python3.4/test/decimaltestdata/max.decTest +424 -0
  1488. package/python3.4.2/lib/python3.4/test/decimaltestdata/maxmag.decTest +404 -0
  1489. package/python3.4.2/lib/python3.4/test/decimaltestdata/min.decTest +407 -0
  1490. package/python3.4.2/lib/python3.4/test/decimaltestdata/minmag.decTest +390 -0
  1491. package/python3.4.2/lib/python3.4/test/decimaltestdata/minus.decTest +182 -0
  1492. package/python3.4.2/lib/python3.4/test/decimaltestdata/multiply.decTest +731 -0
  1493. package/python3.4.2/lib/python3.4/test/decimaltestdata/nextminus.decTest +148 -0
  1494. package/python3.4.2/lib/python3.4/test/decimaltestdata/nextplus.decTest +150 -0
  1495. package/python3.4.2/lib/python3.4/test/decimaltestdata/nexttoward.decTest +426 -0
  1496. package/python3.4.2/lib/python3.4/test/decimaltestdata/or.decTest +334 -0
  1497. package/python3.4.2/lib/python3.4/test/decimaltestdata/plus.decTest +195 -0
  1498. package/python3.4.2/lib/python3.4/test/decimaltestdata/power.decTest +1624 -0
  1499. package/python3.4.2/lib/python3.4/test/decimaltestdata/powersqrt.decTest +2970 -0
  1500. package/python3.4.2/lib/python3.4/test/decimaltestdata/quantize.decTest +948 -0
  1501. package/python3.4.2/lib/python3.4/test/decimaltestdata/randomBound32.decTest +2443 -0
  1502. package/python3.4.2/lib/python3.4/test/decimaltestdata/randoms.decTest +4030 -0
  1503. package/python3.4.2/lib/python3.4/test/decimaltestdata/reduce.decTest +234 -0
  1504. package/python3.4.2/lib/python3.4/test/decimaltestdata/remainder.decTest +640 -0
  1505. package/python3.4.2/lib/python3.4/test/decimaltestdata/remainderNear.decTest +572 -0
  1506. package/python3.4.2/lib/python3.4/test/decimaltestdata/rescale.decTest +764 -0
  1507. package/python3.4.2/lib/python3.4/test/decimaltestdata/rotate.decTest +247 -0
  1508. package/python3.4.2/lib/python3.4/test/decimaltestdata/rounding.decTest +1303 -0
  1509. package/python3.4.2/lib/python3.4/test/decimaltestdata/samequantum.decTest +389 -0
  1510. package/python3.4.2/lib/python3.4/test/decimaltestdata/scaleb.decTest +209 -0
  1511. package/python3.4.2/lib/python3.4/test/decimaltestdata/shift.decTest +250 -0
  1512. package/python3.4.2/lib/python3.4/test/decimaltestdata/squareroot.decTest +3834 -0
  1513. package/python3.4.2/lib/python3.4/test/decimaltestdata/subtract.decTest +873 -0
  1514. package/python3.4.2/lib/python3.4/test/decimaltestdata/testall.decTest +87 -0
  1515. package/python3.4.2/lib/python3.4/test/decimaltestdata/tointegral.decTest +241 -0
  1516. package/python3.4.2/lib/python3.4/test/decimaltestdata/tointegralx.decTest +255 -0
  1517. package/python3.4.2/lib/python3.4/test/decimaltestdata/xor.decTest +335 -0
  1518. package/python3.4.2/lib/python3.4/test/dh512.pem +9 -0
  1519. package/python3.4.2/lib/python3.4/test/dis_module.py +5 -0
  1520. package/python3.4.2/lib/python3.4/test/doctest_aliases.py +13 -0
  1521. package/python3.4.2/lib/python3.4/test/double_const.py +30 -0
  1522. package/python3.4.2/lib/python3.4/test/empty.vbs +1 -0
  1523. package/python3.4.2/lib/python3.4/test/encoded_modules/__init__.py +23 -0
  1524. package/python3.4.2/lib/python3.4/test/encoded_modules/module_iso_8859_1.py +5 -0
  1525. package/python3.4.2/lib/python3.4/test/encoded_modules/module_koi8_r.py +3 -0
  1526. package/python3.4.2/lib/python3.4/test/exception_hierarchy.txt +61 -0
  1527. package/python3.4.2/lib/python3.4/test/final_a.py +19 -0
  1528. package/python3.4.2/lib/python3.4/test/final_b.py +19 -0
  1529. package/python3.4.2/lib/python3.4/test/floating_points.txt +1028 -0
  1530. package/python3.4.2/lib/python3.4/test/fork_wait.py +77 -0
  1531. package/python3.4.2/lib/python3.4/test/formatfloat_testcases.txt +355 -0
  1532. package/python3.4.2/lib/python3.4/test/future_test1.py +11 -0
  1533. package/python3.4.2/lib/python3.4/test/future_test2.py +10 -0
  1534. package/python3.4.2/lib/python3.4/test/gdb_sample.py +12 -0
  1535. package/python3.4.2/lib/python3.4/test/https_svn_python_org_root.pem +41 -0
  1536. package/python3.4.2/lib/python3.4/test/ieee754.txt +185 -0
  1537. package/python3.4.2/lib/python3.4/test/imghdrdata/python.bmp +0 -0
  1538. package/python3.4.2/lib/python3.4/test/imghdrdata/python.gif +0 -0
  1539. package/python3.4.2/lib/python3.4/test/imghdrdata/python.jpg +0 -0
  1540. package/python3.4.2/lib/python3.4/test/imghdrdata/python.pbm +3 -0
  1541. package/python3.4.2/lib/python3.4/test/imghdrdata/python.pgm +0 -0
  1542. package/python3.4.2/lib/python3.4/test/imghdrdata/python.png +0 -0
  1543. package/python3.4.2/lib/python3.4/test/imghdrdata/python.ppm +0 -0
  1544. package/python3.4.2/lib/python3.4/test/imghdrdata/python.ras +0 -0
  1545. package/python3.4.2/lib/python3.4/test/imghdrdata/python.sgi +0 -0
  1546. package/python3.4.2/lib/python3.4/test/imghdrdata/python.tiff +0 -0
  1547. package/python3.4.2/lib/python3.4/test/imghdrdata/python.xbm +6 -0
  1548. package/python3.4.2/lib/python3.4/test/inspect_fodder.py +58 -0
  1549. package/python3.4.2/lib/python3.4/test/inspect_fodder2.py +111 -0
  1550. package/python3.4.2/lib/python3.4/test/keycert.passwd.pem +33 -0
  1551. package/python3.4.2/lib/python3.4/test/keycert.pem +31 -0
  1552. package/python3.4.2/lib/python3.4/test/keycert2.pem +31 -0
  1553. package/python3.4.2/lib/python3.4/test/keycert3.pem +73 -0
  1554. package/python3.4.2/lib/python3.4/test/keycert4.pem +73 -0
  1555. package/python3.4.2/lib/python3.4/test/list_tests.py +585 -0
  1556. package/python3.4.2/lib/python3.4/test/lock_tests.py +896 -0
  1557. package/python3.4.2/lib/python3.4/test/mailcap.txt +39 -0
  1558. package/python3.4.2/lib/python3.4/test/make_ssl_certs.py +176 -0
  1559. package/python3.4.2/lib/python3.4/test/mapping_tests.py +657 -0
  1560. package/python3.4.2/lib/python3.4/test/math_testcases.txt +633 -0
  1561. package/python3.4.2/lib/python3.4/test/memory_watchdog.py +28 -0
  1562. package/python3.4.2/lib/python3.4/test/mime.types +1445 -0
  1563. package/python3.4.2/lib/python3.4/test/mock_socket.py +156 -0
  1564. package/python3.4.2/lib/python3.4/test/mp_fork_bomb.py +18 -0
  1565. package/python3.4.2/lib/python3.4/test/multibytecodec_support.py +377 -0
  1566. package/python3.4.2/lib/python3.4/test/nokia.pem +31 -0
  1567. package/python3.4.2/lib/python3.4/test/nullbytecert.pem +90 -0
  1568. package/python3.4.2/lib/python3.4/test/nullcert.pem +0 -0
  1569. package/python3.4.2/lib/python3.4/test/outstanding_bugs.py +18 -0
  1570. package/python3.4.2/lib/python3.4/test/pickletester.py +2253 -0
  1571. package/python3.4.2/lib/python3.4/test/profilee.py +115 -0
  1572. package/python3.4.2/lib/python3.4/test/pstats.pck +0 -0
  1573. package/python3.4.2/lib/python3.4/test/pycacert.pem +78 -0
  1574. package/python3.4.2/lib/python3.4/test/pycakey.pem +28 -0
  1575. package/python3.4.2/lib/python3.4/test/pyclbr_input.py +33 -0
  1576. package/python3.4.2/lib/python3.4/test/pydoc_mod.py +37 -0
  1577. package/python3.4.2/lib/python3.4/test/pydocfodder.py +216 -0
  1578. package/python3.4.2/lib/python3.4/test/pystone.py +277 -0
  1579. package/python3.4.2/lib/python3.4/test/randv2_32.pck +633 -0
  1580. package/python3.4.2/lib/python3.4/test/randv2_64.pck +633 -0
  1581. package/python3.4.2/lib/python3.4/test/randv3.pck +633 -0
  1582. package/python3.4.2/lib/python3.4/test/re_tests.py +670 -0
  1583. package/python3.4.2/lib/python3.4/test/regrtest.py +1589 -0
  1584. package/python3.4.2/lib/python3.4/test/relimport.py +1 -0
  1585. package/python3.4.2/lib/python3.4/test/reperf.py +23 -0
  1586. package/python3.4.2/lib/python3.4/test/revocation.crl +11 -0
  1587. package/python3.4.2/lib/python3.4/test/sample_doctest.py +76 -0
  1588. package/python3.4.2/lib/python3.4/test/sample_doctest_no_docstrings.py +12 -0
  1589. package/python3.4.2/lib/python3.4/test/sample_doctest_no_doctests.py +15 -0
  1590. package/python3.4.2/lib/python3.4/test/script_helper.py +178 -0
  1591. package/python3.4.2/lib/python3.4/test/seq_tests.py +397 -0
  1592. package/python3.4.2/lib/python3.4/test/sgml_input.html +212 -0
  1593. package/python3.4.2/lib/python3.4/test/sha256.pem +128 -0
  1594. package/python3.4.2/lib/python3.4/test/sndhdrdata/README +12 -0
  1595. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.8svx +0 -0
  1596. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.aifc +0 -0
  1597. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.aiff +0 -0
  1598. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.au +0 -0
  1599. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.hcom +0 -0
  1600. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.sndt +0 -0
  1601. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.voc +0 -0
  1602. package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.wav +0 -0
  1603. package/python3.4.2/lib/python3.4/test/sortperf.py +169 -0
  1604. package/python3.4.2/lib/python3.4/test/ssl_cert.pem +15 -0
  1605. package/python3.4.2/lib/python3.4/test/ssl_key.passwd.pem +18 -0
  1606. package/python3.4.2/lib/python3.4/test/ssl_key.pem +16 -0
  1607. package/python3.4.2/lib/python3.4/test/ssl_servers.py +205 -0
  1608. package/python3.4.2/lib/python3.4/test/ssltests.py +22 -0
  1609. package/python3.4.2/lib/python3.4/test/string_tests.py +1385 -0
  1610. package/python3.4.2/lib/python3.4/test/subprocessdata/fd_status.py +34 -0
  1611. package/python3.4.2/lib/python3.4/test/subprocessdata/input_reader.py +7 -0
  1612. package/python3.4.2/lib/python3.4/test/subprocessdata/qcat.py +7 -0
  1613. package/python3.4.2/lib/python3.4/test/subprocessdata/qgrep.py +10 -0
  1614. package/python3.4.2/lib/python3.4/test/subprocessdata/sigchild_ignore.py +15 -0
  1615. package/python3.4.2/lib/python3.4/test/support/__init__.py +2241 -0
  1616. package/python3.4.2/lib/python3.4/test/test___all__.py +117 -0
  1617. package/python3.4.2/lib/python3.4/test/test___future__.py +65 -0
  1618. package/python3.4.2/lib/python3.4/test/test__locale.py +170 -0
  1619. package/python3.4.2/lib/python3.4/test/test__opcode.py +23 -0
  1620. package/python3.4.2/lib/python3.4/test/test__osx_support.py +281 -0
  1621. package/python3.4.2/lib/python3.4/test/test_abc.py +408 -0
  1622. package/python3.4.2/lib/python3.4/test/test_abstract_numbers.py +44 -0
  1623. package/python3.4.2/lib/python3.4/test/test_aifc.py +384 -0
  1624. package/python3.4.2/lib/python3.4/test/test_argparse.py +4979 -0
  1625. package/python3.4.2/lib/python3.4/test/test_array.py +1323 -0
  1626. package/python3.4.2/lib/python3.4/test/test_ast.py +1038 -0
  1627. package/python3.4.2/lib/python3.4/test/test_asynchat.py +333 -0
  1628. package/python3.4.2/lib/python3.4/test/test_asyncio/__init__.py +10 -0
  1629. package/python3.4.2/lib/python3.4/test/test_asyncio/__main__.py +4 -0
  1630. package/python3.4.2/lib/python3.4/test/test_asyncio/echo.py +8 -0
  1631. package/python3.4.2/lib/python3.4/test/test_asyncio/echo2.py +6 -0
  1632. package/python3.4.2/lib/python3.4/test/test_asyncio/echo3.py +11 -0
  1633. package/python3.4.2/lib/python3.4/test/test_asyncio/keycert3.pem +73 -0
  1634. package/python3.4.2/lib/python3.4/test/test_asyncio/pycacert.pem +78 -0
  1635. package/python3.4.2/lib/python3.4/test/test_asyncio/ssl_cert.pem +15 -0
  1636. package/python3.4.2/lib/python3.4/test/test_asyncio/ssl_key.pem +16 -0
  1637. package/python3.4.2/lib/python3.4/test/test_asyncio/test_base_events.py +1064 -0
  1638. package/python3.4.2/lib/python3.4/test/test_asyncio/test_events.py +2240 -0
  1639. package/python3.4.2/lib/python3.4/test/test_asyncio/test_futures.py +442 -0
  1640. package/python3.4.2/lib/python3.4/test/test_asyncio/test_locks.py +858 -0
  1641. package/python3.4.2/lib/python3.4/test/test_asyncio/test_proactor_events.py +492 -0
  1642. package/python3.4.2/lib/python3.4/test/test_asyncio/test_queues.py +476 -0
  1643. package/python3.4.2/lib/python3.4/test/test_asyncio/test_selector_events.py +1737 -0
  1644. package/python3.4.2/lib/python3.4/test/test_asyncio/test_streams.py +628 -0
  1645. package/python3.4.2/lib/python3.4/test/test_asyncio/test_subprocess.py +217 -0
  1646. package/python3.4.2/lib/python3.4/test/test_asyncio/test_tasks.py +1977 -0
  1647. package/python3.4.2/lib/python3.4/test/test_asyncio/test_transports.py +90 -0
  1648. package/python3.4.2/lib/python3.4/test/test_asyncio/test_unix_events.py +1582 -0
  1649. package/python3.4.2/lib/python3.4/test/test_asyncio/test_windows_events.py +141 -0
  1650. package/python3.4.2/lib/python3.4/test/test_asyncio/test_windows_utils.py +171 -0
  1651. package/python3.4.2/lib/python3.4/test/test_asyncore.py +859 -0
  1652. package/python3.4.2/lib/python3.4/test/test_atexit.py +185 -0
  1653. package/python3.4.2/lib/python3.4/test/test_audioop.py +534 -0
  1654. package/python3.4.2/lib/python3.4/test/test_augassign.py +315 -0
  1655. package/python3.4.2/lib/python3.4/test/test_base64.py +666 -0
  1656. package/python3.4.2/lib/python3.4/test/test_bigaddrspace.py +101 -0
  1657. package/python3.4.2/lib/python3.4/test/test_bigmem.py +1257 -0
  1658. package/python3.4.2/lib/python3.4/test/test_binascii.py +270 -0
  1659. package/python3.4.2/lib/python3.4/test/test_binhex.py +56 -0
  1660. package/python3.4.2/lib/python3.4/test/test_binop.py +380 -0
  1661. package/python3.4.2/lib/python3.4/test/test_bisect.py +328 -0
  1662. package/python3.4.2/lib/python3.4/test/test_bool.py +347 -0
  1663. package/python3.4.2/lib/python3.4/test/test_buffer.py +4294 -0
  1664. package/python3.4.2/lib/python3.4/test/test_bufio.py +73 -0
  1665. package/python3.4.2/lib/python3.4/test/test_builtin.py +1637 -0
  1666. package/python3.4.2/lib/python3.4/test/test_bytes.py +1433 -0
  1667. package/python3.4.2/lib/python3.4/test/test_bz2.py +880 -0
  1668. package/python3.4.2/lib/python3.4/test/test_calendar.py +714 -0
  1669. package/python3.4.2/lib/python3.4/test/test_call.py +131 -0
  1670. package/python3.4.2/lib/python3.4/test/test_capi.py +469 -0
  1671. package/python3.4.2/lib/python3.4/test/test_cgi.py +489 -0
  1672. package/python3.4.2/lib/python3.4/test/test_cgitb.py +70 -0
  1673. package/python3.4.2/lib/python3.4/test/test_charmapcodec.py +56 -0
  1674. package/python3.4.2/lib/python3.4/test/test_class.py +552 -0
  1675. package/python3.4.2/lib/python3.4/test/test_cmath.py +536 -0
  1676. package/python3.4.2/lib/python3.4/test/test_cmd.py +243 -0
  1677. package/python3.4.2/lib/python3.4/test/test_cmd_line.py +473 -0
  1678. package/python3.4.2/lib/python3.4/test/test_cmd_line_script.py +481 -0
  1679. package/python3.4.2/lib/python3.4/test/test_code.py +170 -0
  1680. package/python3.4.2/lib/python3.4/test/test_code_module.py +86 -0
  1681. package/python3.4.2/lib/python3.4/test/test_codeccallbacks.py +880 -0
  1682. package/python3.4.2/lib/python3.4/test/test_codecencodings_cn.py +90 -0
  1683. package/python3.4.2/lib/python3.4/test/test_codecencodings_hk.py +26 -0
  1684. package/python3.4.2/lib/python3.4/test/test_codecencodings_iso2022.py +45 -0
  1685. package/python3.4.2/lib/python3.4/test/test_codecencodings_jp.py +130 -0
  1686. package/python3.4.2/lib/python3.4/test/test_codecencodings_kr.py +73 -0
  1687. package/python3.4.2/lib/python3.4/test/test_codecencodings_tw.py +26 -0
  1688. package/python3.4.2/lib/python3.4/test/test_codecmaps_cn.py +29 -0
  1689. package/python3.4.2/lib/python3.4/test/test_codecmaps_hk.py +16 -0
  1690. package/python3.4.2/lib/python3.4/test/test_codecmaps_jp.py +63 -0
  1691. package/python3.4.2/lib/python3.4/test/test_codecmaps_kr.py +40 -0
  1692. package/python3.4.2/lib/python3.4/test/test_codecmaps_tw.py +30 -0
  1693. package/python3.4.2/lib/python3.4/test/test_codecs.py +2901 -0
  1694. package/python3.4.2/lib/python3.4/test/test_codeop.py +304 -0
  1695. package/python3.4.2/lib/python3.4/test/test_collections.py +1552 -0
  1696. package/python3.4.2/lib/python3.4/test/test_colorsys.py +100 -0
  1697. package/python3.4.2/lib/python3.4/test/test_compare.py +67 -0
  1698. package/python3.4.2/lib/python3.4/test/test_compile.py +561 -0
  1699. package/python3.4.2/lib/python3.4/test/test_compileall.py +384 -0
  1700. package/python3.4.2/lib/python3.4/test/test_complex.py +638 -0
  1701. package/python3.4.2/lib/python3.4/test/test_concurrent_futures.py +685 -0
  1702. package/python3.4.2/lib/python3.4/test/test_configparser.py +1768 -0
  1703. package/python3.4.2/lib/python3.4/test/test_contains.py +93 -0
  1704. package/python3.4.2/lib/python3.4/test/test_contextlib.py +828 -0
  1705. package/python3.4.2/lib/python3.4/test/test_copy.py +759 -0
  1706. package/python3.4.2/lib/python3.4/test/test_copyreg.py +121 -0
  1707. package/python3.4.2/lib/python3.4/test/test_cprofile.py +98 -0
  1708. package/python3.4.2/lib/python3.4/test/test_crashers.py +38 -0
  1709. package/python3.4.2/lib/python3.4/test/test_crypt.py +33 -0
  1710. package/python3.4.2/lib/python3.4/test/test_csv.py +1074 -0
  1711. package/python3.4.2/lib/python3.4/test/test_ctypes.py +6 -0
  1712. package/python3.4.2/lib/python3.4/test/test_curses.py +395 -0
  1713. package/python3.4.2/lib/python3.4/test/test_datetime.py +48 -0
  1714. package/python3.4.2/lib/python3.4/test/test_dbm.py +193 -0
  1715. package/python3.4.2/lib/python3.4/test/test_dbm_dumb.py +228 -0
  1716. package/python3.4.2/lib/python3.4/test/test_dbm_gnu.py +97 -0
  1717. package/python3.4.2/lib/python3.4/test/test_dbm_ndbm.py +54 -0
  1718. package/python3.4.2/lib/python3.4/test/test_decimal.py +5504 -0
  1719. package/python3.4.2/lib/python3.4/test/test_decorators.py +309 -0
  1720. package/python3.4.2/lib/python3.4/test/test_defaultdict.py +190 -0
  1721. package/python3.4.2/lib/python3.4/test/test_deque.py +817 -0
  1722. package/python3.4.2/lib/python3.4/test/test_descr.py +5006 -0
  1723. package/python3.4.2/lib/python3.4/test/test_descrtut.py +485 -0
  1724. package/python3.4.2/lib/python3.4/test/test_devpoll.py +146 -0
  1725. package/python3.4.2/lib/python3.4/test/test_dict.py +928 -0
  1726. package/python3.4.2/lib/python3.4/test/test_dictcomps.py +88 -0
  1727. package/python3.4.2/lib/python3.4/test/test_dictviews.py +206 -0
  1728. package/python3.4.2/lib/python3.4/test/test_difflib.py +298 -0
  1729. package/python3.4.2/lib/python3.4/test/test_difflib_expect.html +526 -0
  1730. package/python3.4.2/lib/python3.4/test/test_dis.py +832 -0
  1731. package/python3.4.2/lib/python3.4/test/test_distutils.py +18 -0
  1732. package/python3.4.2/lib/python3.4/test/test_doctest.py +2921 -0
  1733. package/python3.4.2/lib/python3.4/test/test_doctest.txt +17 -0
  1734. package/python3.4.2/lib/python3.4/test/test_doctest2.py +123 -0
  1735. package/python3.4.2/lib/python3.4/test/test_doctest2.txt +14 -0
  1736. package/python3.4.2/lib/python3.4/test/test_doctest3.txt +5 -0
  1737. package/python3.4.2/lib/python3.4/test/test_doctest4.txt +11 -0
  1738. package/python3.4.2/lib/python3.4/test/test_docxmlrpc.py +219 -0
  1739. package/python3.4.2/lib/python3.4/test/test_dummy_thread.py +182 -0
  1740. package/python3.4.2/lib/python3.4/test/test_dummy_threading.py +64 -0
  1741. package/python3.4.2/lib/python3.4/test/test_dynamic.py +143 -0
  1742. package/python3.4.2/lib/python3.4/test/test_dynamicclassattribute.py +304 -0
  1743. package/python3.4.2/lib/python3.4/test/test_email/__init__.py +159 -0
  1744. package/python3.4.2/lib/python3.4/test/test_email/__main__.py +4 -0
  1745. package/python3.4.2/lib/python3.4/test/test_email/data/PyBanner048.gif +0 -0
  1746. package/python3.4.2/lib/python3.4/test/test_email/data/audiotest.au +0 -0
  1747. package/python3.4.2/lib/python3.4/test/test_email/data/msg_01.txt +19 -0
  1748. package/python3.4.2/lib/python3.4/test/test_email/data/msg_02.txt +136 -0
  1749. package/python3.4.2/lib/python3.4/test/test_email/data/msg_03.txt +16 -0
  1750. package/python3.4.2/lib/python3.4/test/test_email/data/msg_04.txt +37 -0
  1751. package/python3.4.2/lib/python3.4/test/test_email/data/msg_05.txt +28 -0
  1752. package/python3.4.2/lib/python3.4/test/test_email/data/msg_06.txt +33 -0
  1753. package/python3.4.2/lib/python3.4/test/test_email/data/msg_07.txt +83 -0
  1754. package/python3.4.2/lib/python3.4/test/test_email/data/msg_08.txt +24 -0
  1755. package/python3.4.2/lib/python3.4/test/test_email/data/msg_09.txt +24 -0
  1756. package/python3.4.2/lib/python3.4/test/test_email/data/msg_10.txt +39 -0
  1757. package/python3.4.2/lib/python3.4/test/test_email/data/msg_11.txt +7 -0
  1758. package/python3.4.2/lib/python3.4/test/test_email/data/msg_12.txt +36 -0
  1759. package/python3.4.2/lib/python3.4/test/test_email/data/msg_12a.txt +38 -0
  1760. package/python3.4.2/lib/python3.4/test/test_email/data/msg_13.txt +94 -0
  1761. package/python3.4.2/lib/python3.4/test/test_email/data/msg_14.txt +23 -0
  1762. package/python3.4.2/lib/python3.4/test/test_email/data/msg_15.txt +52 -0
  1763. package/python3.4.2/lib/python3.4/test/test_email/data/msg_16.txt +123 -0
  1764. package/python3.4.2/lib/python3.4/test/test_email/data/msg_17.txt +12 -0
  1765. package/python3.4.2/lib/python3.4/test/test_email/data/msg_18.txt +6 -0
  1766. package/python3.4.2/lib/python3.4/test/test_email/data/msg_19.txt +43 -0
  1767. package/python3.4.2/lib/python3.4/test/test_email/data/msg_20.txt +22 -0
  1768. package/python3.4.2/lib/python3.4/test/test_email/data/msg_21.txt +20 -0
  1769. package/python3.4.2/lib/python3.4/test/test_email/data/msg_22.txt +46 -0
  1770. package/python3.4.2/lib/python3.4/test/test_email/data/msg_23.txt +8 -0
  1771. package/python3.4.2/lib/python3.4/test/test_email/data/msg_24.txt +10 -0
  1772. package/python3.4.2/lib/python3.4/test/test_email/data/msg_25.txt +117 -0
  1773. package/python3.4.2/lib/python3.4/test/test_email/data/msg_26.txt +46 -0
  1774. package/python3.4.2/lib/python3.4/test/test_email/data/msg_27.txt +15 -0
  1775. package/python3.4.2/lib/python3.4/test/test_email/data/msg_28.txt +25 -0
  1776. package/python3.4.2/lib/python3.4/test/test_email/data/msg_29.txt +22 -0
  1777. package/python3.4.2/lib/python3.4/test/test_email/data/msg_30.txt +23 -0
  1778. package/python3.4.2/lib/python3.4/test/test_email/data/msg_31.txt +15 -0
  1779. package/python3.4.2/lib/python3.4/test/test_email/data/msg_32.txt +14 -0
  1780. package/python3.4.2/lib/python3.4/test/test_email/data/msg_33.txt +29 -0
  1781. package/python3.4.2/lib/python3.4/test/test_email/data/msg_34.txt +19 -0
  1782. package/python3.4.2/lib/python3.4/test/test_email/data/msg_35.txt +4 -0
  1783. package/python3.4.2/lib/python3.4/test/test_email/data/msg_36.txt +40 -0
  1784. package/python3.4.2/lib/python3.4/test/test_email/data/msg_37.txt +22 -0
  1785. package/python3.4.2/lib/python3.4/test/test_email/data/msg_38.txt +101 -0
  1786. package/python3.4.2/lib/python3.4/test/test_email/data/msg_39.txt +83 -0
  1787. package/python3.4.2/lib/python3.4/test/test_email/data/msg_40.txt +10 -0
  1788. package/python3.4.2/lib/python3.4/test/test_email/data/msg_41.txt +8 -0
  1789. package/python3.4.2/lib/python3.4/test/test_email/data/msg_42.txt +20 -0
  1790. package/python3.4.2/lib/python3.4/test/test_email/data/msg_43.txt +217 -0
  1791. package/python3.4.2/lib/python3.4/test/test_email/data/msg_44.txt +33 -0
  1792. package/python3.4.2/lib/python3.4/test/test_email/data/msg_45.txt +33 -0
  1793. package/python3.4.2/lib/python3.4/test/test_email/data/msg_46.txt +23 -0
  1794. package/python3.4.2/lib/python3.4/test/test_email/test__encoded_words.py +192 -0
  1795. package/python3.4.2/lib/python3.4/test/test_email/test__header_value_parser.py +2606 -0
  1796. package/python3.4.2/lib/python3.4/test/test_email/test_asian_codecs.py +82 -0
  1797. package/python3.4.2/lib/python3.4/test/test_email/test_contentmanager.py +796 -0
  1798. package/python3.4.2/lib/python3.4/test/test_email/test_defect_handling.py +320 -0
  1799. package/python3.4.2/lib/python3.4/test/test_email/test_email.py +5289 -0
  1800. package/python3.4.2/lib/python3.4/test/test_email/test_generator.py +199 -0
  1801. package/python3.4.2/lib/python3.4/test/test_email/test_headerregistry.py +1594 -0
  1802. package/python3.4.2/lib/python3.4/test/test_email/test_inversion.py +49 -0
  1803. package/python3.4.2/lib/python3.4/test/test_email/test_message.py +783 -0
  1804. package/python3.4.2/lib/python3.4/test/test_email/test_parser.py +36 -0
  1805. package/python3.4.2/lib/python3.4/test/test_email/test_pickleable.py +74 -0
  1806. package/python3.4.2/lib/python3.4/test/test_email/test_policy.py +332 -0
  1807. package/python3.4.2/lib/python3.4/test/test_email/test_utils.py +140 -0
  1808. package/python3.4.2/lib/python3.4/test/test_email/torture_test.py +136 -0
  1809. package/python3.4.2/lib/python3.4/test/test_ensurepip.py +345 -0
  1810. package/python3.4.2/lib/python3.4/test/test_enum.py +1592 -0
  1811. package/python3.4.2/lib/python3.4/test/test_enumerate.py +272 -0
  1812. package/python3.4.2/lib/python3.4/test/test_eof.py +31 -0
  1813. package/python3.4.2/lib/python3.4/test/test_epoll.py +259 -0
  1814. package/python3.4.2/lib/python3.4/test/test_errno.py +40 -0
  1815. package/python3.4.2/lib/python3.4/test/test_exception_variations.py +180 -0
  1816. package/python3.4.2/lib/python3.4/test/test_exceptions.py +978 -0
  1817. package/python3.4.2/lib/python3.4/test/test_extcall.py +349 -0
  1818. package/python3.4.2/lib/python3.4/test/test_faulthandler.py +623 -0
  1819. package/python3.4.2/lib/python3.4/test/test_fcntl.py +152 -0
  1820. package/python3.4.2/lib/python3.4/test/test_file.py +329 -0
  1821. package/python3.4.2/lib/python3.4/test/test_file_eintr.py +236 -0
  1822. package/python3.4.2/lib/python3.4/test/test_filecmp.py +217 -0
  1823. package/python3.4.2/lib/python3.4/test/test_fileinput.py +891 -0
  1824. package/python3.4.2/lib/python3.4/test/test_fileio.py +480 -0
  1825. package/python3.4.2/lib/python3.4/test/test_finalization.py +522 -0
  1826. package/python3.4.2/lib/python3.4/test/test_float.py +1312 -0
  1827. package/python3.4.2/lib/python3.4/test/test_flufl.py +27 -0
  1828. package/python3.4.2/lib/python3.4/test/test_fnmatch.py +89 -0
  1829. package/python3.4.2/lib/python3.4/test/test_fork1.py +111 -0
  1830. package/python3.4.2/lib/python3.4/test/test_format.py +362 -0
  1831. package/python3.4.2/lib/python3.4/test/test_fractions.py +612 -0
  1832. package/python3.4.2/lib/python3.4/test/test_frame.py +168 -0
  1833. package/python3.4.2/lib/python3.4/test/test_ftplib.py +1080 -0
  1834. package/python3.4.2/lib/python3.4/test/test_funcattrs.py +385 -0
  1835. package/python3.4.2/lib/python3.4/test/test_functools.py +1584 -0
  1836. package/python3.4.2/lib/python3.4/test/test_future.py +125 -0
  1837. package/python3.4.2/lib/python3.4/test/test_future3.py +26 -0
  1838. package/python3.4.2/lib/python3.4/test/test_future4.py +6 -0
  1839. package/python3.4.2/lib/python3.4/test/test_future5.py +21 -0
  1840. package/python3.4.2/lib/python3.4/test/test_gc.py +1013 -0
  1841. package/python3.4.2/lib/python3.4/test/test_gdb.py +870 -0
  1842. package/python3.4.2/lib/python3.4/test/test_generators.py +1940 -0
  1843. package/python3.4.2/lib/python3.4/test/test_genericpath.py +439 -0
  1844. package/python3.4.2/lib/python3.4/test/test_genexps.py +285 -0
  1845. package/python3.4.2/lib/python3.4/test/test_getargs2.py +615 -0
  1846. package/python3.4.2/lib/python3.4/test/test_getopt.py +187 -0
  1847. package/python3.4.2/lib/python3.4/test/test_getpass.py +163 -0
  1848. package/python3.4.2/lib/python3.4/test/test_gettext.py +467 -0
  1849. package/python3.4.2/lib/python3.4/test/test_glob.py +200 -0
  1850. package/python3.4.2/lib/python3.4/test/test_global.py +61 -0
  1851. package/python3.4.2/lib/python3.4/test/test_grammar.py +1024 -0
  1852. package/python3.4.2/lib/python3.4/test/test_grp.py +99 -0
  1853. package/python3.4.2/lib/python3.4/test/test_gzip.py +561 -0
  1854. package/python3.4.2/lib/python3.4/test/test_hash.py +346 -0
  1855. package/python3.4.2/lib/python3.4/test/test_hashlib.py +533 -0
  1856. package/python3.4.2/lib/python3.4/test/test_heapq.py +417 -0
  1857. package/python3.4.2/lib/python3.4/test/test_hmac.py +506 -0
  1858. package/python3.4.2/lib/python3.4/test/test_html.py +104 -0
  1859. package/python3.4.2/lib/python3.4/test/test_htmlparser.py +832 -0
  1860. package/python3.4.2/lib/python3.4/test/test_http_cookiejar.py +1714 -0
  1861. package/python3.4.2/lib/python3.4/test/test_http_cookies.py +243 -0
  1862. package/python3.4.2/lib/python3.4/test/test_httplib.py +1025 -0
  1863. package/python3.4.2/lib/python3.4/test/test_httpservers.py +770 -0
  1864. package/python3.4.2/lib/python3.4/test/test_idle.py +16 -0
  1865. package/python3.4.2/lib/python3.4/test/test_imaplib.py +504 -0
  1866. package/python3.4.2/lib/python3.4/test/test_imghdr.py +131 -0
  1867. package/python3.4.2/lib/python3.4/test/test_imp.py +485 -0
  1868. package/python3.4.2/lib/python3.4/test/test_import.py +1072 -0
  1869. package/python3.4.2/lib/python3.4/test/test_importlib/__init__.py +5 -0
  1870. package/python3.4.2/lib/python3.4/test/test_importlib/__main__.py +4 -0
  1871. package/python3.4.2/lib/python3.4/test/test_importlib/abc.py +94 -0
  1872. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/__init__.py +5 -0
  1873. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/__main__.py +4 -0
  1874. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/test_finder.py +85 -0
  1875. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/test_loader.py +106 -0
  1876. package/python3.4.2/lib/python3.4/test/test_importlib/builtin/util.py +7 -0
  1877. package/python3.4.2/lib/python3.4/test/test_importlib/extension/__init__.py +5 -0
  1878. package/python3.4.2/lib/python3.4/test/test_importlib/extension/__main__.py +4 -0
  1879. package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_case_sensitivity.py +51 -0
  1880. package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_finder.py +44 -0
  1881. package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_loader.py +86 -0
  1882. package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_path_hook.py +32 -0
  1883. package/python3.4.2/lib/python3.4/test/test_importlib/extension/util.py +19 -0
  1884. package/python3.4.2/lib/python3.4/test/test_importlib/frozen/__init__.py +5 -0
  1885. package/python3.4.2/lib/python3.4/test/test_importlib/frozen/__main__.py +4 -0
  1886. package/python3.4.2/lib/python3.4/test/test_importlib/frozen/test_finder.py +80 -0
  1887. package/python3.4.2/lib/python3.4/test/test_importlib/frozen/test_loader.py +222 -0
  1888. package/python3.4.2/lib/python3.4/test/test_importlib/import_/__init__.py +5 -0
  1889. package/python3.4.2/lib/python3.4/test/test_importlib/import_/__main__.py +4 -0
  1890. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test___loader__.py +70 -0
  1891. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test___package__.py +133 -0
  1892. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_api.py +94 -0
  1893. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_caching.py +92 -0
  1894. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_fromlist.py +129 -0
  1895. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_meta_path.py +119 -0
  1896. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_packages.py +110 -0
  1897. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_path.py +144 -0
  1898. package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_relative_imports.py +216 -0
  1899. package/python3.4.2/lib/python3.4/test/test_importlib/import_/util.py +20 -0
  1900. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/both_portions/foo/one.py +1 -0
  1901. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/both_portions/foo/two.py +1 -0
  1902. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/missing_directory.zip +0 -0
  1903. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty +0 -0
  1904. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py +1 -0
  1905. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/nested_portion1.zip +0 -0
  1906. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py +0 -0
  1907. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py +1 -0
  1908. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/portion1/foo/one.py +1 -0
  1909. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/portion2/foo/two.py +1 -0
  1910. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/project1/parent/child/one.py +1 -0
  1911. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/project2/parent/child/two.py +1 -0
  1912. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/project3/parent/child/three.py +1 -0
  1913. package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/top_level_portion1.zip +0 -0
  1914. package/python3.4.2/lib/python3.4/test/test_importlib/regrtest.py +17 -0
  1915. package/python3.4.2/lib/python3.4/test/test_importlib/source/__init__.py +5 -0
  1916. package/python3.4.2/lib/python3.4/test/test_importlib/source/__main__.py +4 -0
  1917. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_case_sensitivity.py +83 -0
  1918. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_file_loader.py +588 -0
  1919. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_finder.py +232 -0
  1920. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_path_hook.py +30 -0
  1921. package/python3.4.2/lib/python3.4/test/test_importlib/source/test_source_encoding.py +165 -0
  1922. package/python3.4.2/lib/python3.4/test/test_importlib/source/util.py +96 -0
  1923. package/python3.4.2/lib/python3.4/test/test_importlib/test_abc.py +951 -0
  1924. package/python3.4.2/lib/python3.4/test/test_importlib/test_api.py +437 -0
  1925. package/python3.4.2/lib/python3.4/test/test_importlib/test_locks.py +156 -0
  1926. package/python3.4.2/lib/python3.4/test/test_importlib/test_namespace_pkgs.py +293 -0
  1927. package/python3.4.2/lib/python3.4/test/test_importlib/test_spec.py +957 -0
  1928. package/python3.4.2/lib/python3.4/test/test_importlib/test_util.py +592 -0
  1929. package/python3.4.2/lib/python3.4/test/test_importlib/test_windows.py +29 -0
  1930. package/python3.4.2/lib/python3.4/test/test_importlib/util.py +225 -0
  1931. package/python3.4.2/lib/python3.4/test/test_index.py +275 -0
  1932. package/python3.4.2/lib/python3.4/test/test_inspect.py +3103 -0
  1933. package/python3.4.2/lib/python3.4/test/test_int.py +458 -0
  1934. package/python3.4.2/lib/python3.4/test/test_int_literal.py +147 -0
  1935. package/python3.4.2/lib/python3.4/test/test_io.py +3481 -0
  1936. package/python3.4.2/lib/python3.4/test/test_ioctl.py +91 -0
  1937. package/python3.4.2/lib/python3.4/test/test_ipaddress.py +1693 -0
  1938. package/python3.4.2/lib/python3.4/test/test_isinstance.py +289 -0
  1939. package/python3.4.2/lib/python3.4/test/test_iter.py +927 -0
  1940. package/python3.4.2/lib/python3.4/test/test_iterlen.py +229 -0
  1941. package/python3.4.2/lib/python3.4/test/test_itertools.py +2142 -0
  1942. package/python3.4.2/lib/python3.4/test/test_json/__init__.py +53 -0
  1943. package/python3.4.2/lib/python3.4/test/test_json/__main__.py +4 -0
  1944. package/python3.4.2/lib/python3.4/test/test_json/test_decode.py +99 -0
  1945. package/python3.4.2/lib/python3.4/test/test_json/test_default.py +12 -0
  1946. package/python3.4.2/lib/python3.4/test/test_json/test_dump.py +49 -0
  1947. package/python3.4.2/lib/python3.4/test/test_json/test_encode_basestring_ascii.py +44 -0
  1948. package/python3.4.2/lib/python3.4/test/test_json/test_enum.py +120 -0
  1949. package/python3.4.2/lib/python3.4/test/test_json/test_fail.py +194 -0
  1950. package/python3.4.2/lib/python3.4/test/test_json/test_float.py +33 -0
  1951. package/python3.4.2/lib/python3.4/test/test_json/test_indent.py +67 -0
  1952. package/python3.4.2/lib/python3.4/test/test_json/test_pass1.py +75 -0
  1953. package/python3.4.2/lib/python3.4/test/test_json/test_pass2.py +18 -0
  1954. package/python3.4.2/lib/python3.4/test/test_json/test_pass3.py +24 -0
  1955. package/python3.4.2/lib/python3.4/test/test_json/test_recursion.py +100 -0
  1956. package/python3.4.2/lib/python3.4/test/test_json/test_scanstring.py +141 -0
  1957. package/python3.4.2/lib/python3.4/test/test_json/test_separators.py +44 -0
  1958. package/python3.4.2/lib/python3.4/test/test_json/test_speedups.py +24 -0
  1959. package/python3.4.2/lib/python3.4/test/test_json/test_tool.py +69 -0
  1960. package/python3.4.2/lib/python3.4/test/test_json/test_unicode.py +75 -0
  1961. package/python3.4.2/lib/python3.4/test/test_keyword.py +138 -0
  1962. package/python3.4.2/lib/python3.4/test/test_keywordonlyarg.py +193 -0
  1963. package/python3.4.2/lib/python3.4/test/test_kqueue.py +219 -0
  1964. package/python3.4.2/lib/python3.4/test/test_largefile.py +180 -0
  1965. package/python3.4.2/lib/python3.4/test/test_lib2to3.py +22 -0
  1966. package/python3.4.2/lib/python3.4/test/test_linecache.py +133 -0
  1967. package/python3.4.2/lib/python3.4/test/test_list.py +125 -0
  1968. package/python3.4.2/lib/python3.4/test/test_listcomps.py +148 -0
  1969. package/python3.4.2/lib/python3.4/test/test_locale.py +528 -0
  1970. package/python3.4.2/lib/python3.4/test/test_logging.py +4179 -0
  1971. package/python3.4.2/lib/python3.4/test/test_long.py +1250 -0
  1972. package/python3.4.2/lib/python3.4/test/test_longexp.py +14 -0
  1973. package/python3.4.2/lib/python3.4/test/test_lzma.py +1592 -0
  1974. package/python3.4.2/lib/python3.4/test/test_macpath.py +123 -0
  1975. package/python3.4.2/lib/python3.4/test/test_macurl2path.py +31 -0
  1976. package/python3.4.2/lib/python3.4/test/test_mailbox.py +2287 -0
  1977. package/python3.4.2/lib/python3.4/test/test_mailcap.py +221 -0
  1978. package/python3.4.2/lib/python3.4/test/test_marshal.py +451 -0
  1979. package/python3.4.2/lib/python3.4/test/test_math.py +1107 -0
  1980. package/python3.4.2/lib/python3.4/test/test_memoryio.py +784 -0
  1981. package/python3.4.2/lib/python3.4/test/test_memoryview.py +478 -0
  1982. package/python3.4.2/lib/python3.4/test/test_metaclass.py +265 -0
  1983. package/python3.4.2/lib/python3.4/test/test_mimetypes.py +111 -0
  1984. package/python3.4.2/lib/python3.4/test/test_minidom.py +1545 -0
  1985. package/python3.4.2/lib/python3.4/test/test_mmap.py +774 -0
  1986. package/python3.4.2/lib/python3.4/test/test_module.py +222 -0
  1987. package/python3.4.2/lib/python3.4/test/test_modulefinder.py +324 -0
  1988. package/python3.4.2/lib/python3.4/test/test_msilib.py +46 -0
  1989. package/python3.4.2/lib/python3.4/test/test_multibytecodec.py +263 -0
  1990. package/python3.4.2/lib/python3.4/test/test_multiprocessing_fork.py +7 -0
  1991. package/python3.4.2/lib/python3.4/test/test_multiprocessing_forkserver.py +7 -0
  1992. package/python3.4.2/lib/python3.4/test/test_multiprocessing_main_handling.py +289 -0
  1993. package/python3.4.2/lib/python3.4/test/test_multiprocessing_spawn.py +7 -0
  1994. package/python3.4.2/lib/python3.4/test/test_netrc.py +130 -0
  1995. package/python3.4.2/lib/python3.4/test/test_nis.py +43 -0
  1996. package/python3.4.2/lib/python3.4/test/test_nntplib.py +1429 -0
  1997. package/python3.4.2/lib/python3.4/test/test_normalization.py +104 -0
  1998. package/python3.4.2/lib/python3.4/test/test_ntpath.py +385 -0
  1999. package/python3.4.2/lib/python3.4/test/test_numeric_tower.py +206 -0
  2000. package/python3.4.2/lib/python3.4/test/test_opcodes.py +112 -0
  2001. package/python3.4.2/lib/python3.4/test/test_openpty.py +25 -0
  2002. package/python3.4.2/lib/python3.4/test/test_operator.py +484 -0
  2003. package/python3.4.2/lib/python3.4/test/test_optparse.py +1657 -0
  2004. package/python3.4.2/lib/python3.4/test/test_os.py +2550 -0
  2005. package/python3.4.2/lib/python3.4/test/test_ossaudiodev.py +202 -0
  2006. package/python3.4.2/lib/python3.4/test/test_osx_env.py +34 -0
  2007. package/python3.4.2/lib/python3.4/test/test_parser.py +745 -0
  2008. package/python3.4.2/lib/python3.4/test/test_pathlib.py +1884 -0
  2009. package/python3.4.2/lib/python3.4/test/test_pdb.py +1052 -0
  2010. package/python3.4.2/lib/python3.4/test/test_peepholer.py +339 -0
  2011. package/python3.4.2/lib/python3.4/test/test_pep247.py +70 -0
  2012. package/python3.4.2/lib/python3.4/test/test_pep277.py +201 -0
  2013. package/python3.4.2/lib/python3.4/test/test_pep292.py +247 -0
  2014. package/python3.4.2/lib/python3.4/test/test_pep3120.py +47 -0
  2015. package/python3.4.2/lib/python3.4/test/test_pep3131.py +35 -0
  2016. package/python3.4.2/lib/python3.4/test/test_pep3151.py +209 -0
  2017. package/python3.4.2/lib/python3.4/test/test_pep352.py +184 -0
  2018. package/python3.4.2/lib/python3.4/test/test_pep380.py +1023 -0
  2019. package/python3.4.2/lib/python3.4/test/test_pickle.py +156 -0
  2020. package/python3.4.2/lib/python3.4/test/test_pickletools.py +25 -0
  2021. package/python3.4.2/lib/python3.4/test/test_pipes.py +196 -0
  2022. package/python3.4.2/lib/python3.4/test/test_pkg.py +299 -0
  2023. package/python3.4.2/lib/python3.4/test/test_pkgimport.py +84 -0
  2024. package/python3.4.2/lib/python3.4/test/test_pkgutil.py +410 -0
  2025. package/python3.4.2/lib/python3.4/test/test_platform.py +320 -0
  2026. package/python3.4.2/lib/python3.4/test/test_plistlib.py +526 -0
  2027. package/python3.4.2/lib/python3.4/test/test_poll.py +215 -0
  2028. package/python3.4.2/lib/python3.4/test/test_popen.py +64 -0
  2029. package/python3.4.2/lib/python3.4/test/test_poplib.py +507 -0
  2030. package/python3.4.2/lib/python3.4/test/test_posix.py +1183 -0
  2031. package/python3.4.2/lib/python3.4/test/test_posixpath.py +544 -0
  2032. package/python3.4.2/lib/python3.4/test/test_pow.py +129 -0
  2033. package/python3.4.2/lib/python3.4/test/test_pprint.py +602 -0
  2034. package/python3.4.2/lib/python3.4/test/test_print.py +132 -0
  2035. package/python3.4.2/lib/python3.4/test/test_profile.py +187 -0
  2036. package/python3.4.2/lib/python3.4/test/test_property.py +254 -0
  2037. package/python3.4.2/lib/python3.4/test/test_pstats.py +45 -0
  2038. package/python3.4.2/lib/python3.4/test/test_pty.py +302 -0
  2039. package/python3.4.2/lib/python3.4/test/test_pulldom.py +347 -0
  2040. package/python3.4.2/lib/python3.4/test/test_pwd.py +114 -0
  2041. package/python3.4.2/lib/python3.4/test/test_py_compile.py +103 -0
  2042. package/python3.4.2/lib/python3.4/test/test_pyclbr.py +181 -0
  2043. package/python3.4.2/lib/python3.4/test/test_pydoc.py +1003 -0
  2044. package/python3.4.2/lib/python3.4/test/test_pyexpat.py +708 -0
  2045. package/python3.4.2/lib/python3.4/test/test_queue.py +363 -0
  2046. package/python3.4.2/lib/python3.4/test/test_quopri.py +208 -0
  2047. package/python3.4.2/lib/python3.4/test/test_raise.py +422 -0
  2048. package/python3.4.2/lib/python3.4/test/test_random.py +759 -0
  2049. package/python3.4.2/lib/python3.4/test/test_range.py +652 -0
  2050. package/python3.4.2/lib/python3.4/test/test_re.py +1451 -0
  2051. package/python3.4.2/lib/python3.4/test/test_readline.py +60 -0
  2052. package/python3.4.2/lib/python3.4/test/test_regrtest.py +275 -0
  2053. package/python3.4.2/lib/python3.4/test/test_reprlib.py +383 -0
  2054. package/python3.4.2/lib/python3.4/test/test_resource.py +166 -0
  2055. package/python3.4.2/lib/python3.4/test/test_richcmp.py +333 -0
  2056. package/python3.4.2/lib/python3.4/test/test_rlcompleter.py +73 -0
  2057. package/python3.4.2/lib/python3.4/test/test_robotparser.py +320 -0
  2058. package/python3.4.2/lib/python3.4/test/test_runpy.py +691 -0
  2059. package/python3.4.2/lib/python3.4/test/test_sax.py +1007 -0
  2060. package/python3.4.2/lib/python3.4/test/test_sched.py +199 -0
  2061. package/python3.4.2/lib/python3.4/test/test_scope.py +764 -0
  2062. package/python3.4.2/lib/python3.4/test/test_select.py +83 -0
  2063. package/python3.4.2/lib/python3.4/test/test_selectors.py +453 -0
  2064. package/python3.4.2/lib/python3.4/test/test_set.py +1839 -0
  2065. package/python3.4.2/lib/python3.4/test/test_setcomps.py +151 -0
  2066. package/python3.4.2/lib/python3.4/test/test_shelve.py +224 -0
  2067. package/python3.4.2/lib/python3.4/test/test_shlex.py +202 -0
  2068. package/python3.4.2/lib/python3.4/test/test_shutil.py +1766 -0
  2069. package/python3.4.2/lib/python3.4/test/test_signal.py +940 -0
  2070. package/python3.4.2/lib/python3.4/test/test_site.py +468 -0
  2071. package/python3.4.2/lib/python3.4/test/test_slice.py +247 -0
  2072. package/python3.4.2/lib/python3.4/test/test_smtpd.py +557 -0
  2073. package/python3.4.2/lib/python3.4/test/test_smtplib.py +950 -0
  2074. package/python3.4.2/lib/python3.4/test/test_smtpnet.py +86 -0
  2075. package/python3.4.2/lib/python3.4/test/test_sndhdr.py +23 -0
  2076. package/python3.4.2/lib/python3.4/test/test_socket.py +5163 -0
  2077. package/python3.4.2/lib/python3.4/test/test_socketserver.py +314 -0
  2078. package/python3.4.2/lib/python3.4/test/test_sort.py +285 -0
  2079. package/python3.4.2/lib/python3.4/test/test_source_encoding.py +145 -0
  2080. package/python3.4.2/lib/python3.4/test/test_spwd.py +60 -0
  2081. package/python3.4.2/lib/python3.4/test/test_sqlite.py +24 -0
  2082. package/python3.4.2/lib/python3.4/test/test_ssl.py +2908 -0
  2083. package/python3.4.2/lib/python3.4/test/test_startfile.py +37 -0
  2084. package/python3.4.2/lib/python3.4/test/test_stat.py +202 -0
  2085. package/python3.4.2/lib/python3.4/test/test_statistics.py +1574 -0
  2086. package/python3.4.2/lib/python3.4/test/test_strftime.py +204 -0
  2087. package/python3.4.2/lib/python3.4/test/test_string.py +174 -0
  2088. package/python3.4.2/lib/python3.4/test/test_stringprep.py +96 -0
  2089. package/python3.4.2/lib/python3.4/test/test_strlit.py +206 -0
  2090. package/python3.4.2/lib/python3.4/test/test_strptime.py +577 -0
  2091. package/python3.4.2/lib/python3.4/test/test_strtod.py +436 -0
  2092. package/python3.4.2/lib/python3.4/test/test_struct.py +667 -0
  2093. package/python3.4.2/lib/python3.4/test/test_structmembers.py +147 -0
  2094. package/python3.4.2/lib/python3.4/test/test_structseq.py +130 -0
  2095. package/python3.4.2/lib/python3.4/test/test_subprocess.py +2474 -0
  2096. package/python3.4.2/lib/python3.4/test/test_sunau.py +122 -0
  2097. package/python3.4.2/lib/python3.4/test/test_sundry.py +59 -0
  2098. package/python3.4.2/lib/python3.4/test/test_super.py +181 -0
  2099. package/python3.4.2/lib/python3.4/test/test_support.py +315 -0
  2100. package/python3.4.2/lib/python3.4/test/test_symtable.py +176 -0
  2101. package/python3.4.2/lib/python3.4/test/test_syntax.py +593 -0
  2102. package/python3.4.2/lib/python3.4/test/test_sys.py +1000 -0
  2103. package/python3.4.2/lib/python3.4/test/test_sys_setprofile.py +386 -0
  2104. package/python3.4.2/lib/python3.4/test/test_sys_settrace.py +834 -0
  2105. package/python3.4.2/lib/python3.4/test/test_sysconfig.py +423 -0
  2106. package/python3.4.2/lib/python3.4/test/test_syslog.py +43 -0
  2107. package/python3.4.2/lib/python3.4/test/test_tarfile.py +2180 -0
  2108. package/python3.4.2/lib/python3.4/test/test_tcl.py +642 -0
  2109. package/python3.4.2/lib/python3.4/test/test_telnetlib.py +401 -0
  2110. package/python3.4.2/lib/python3.4/test/test_tempfile.py +1248 -0
  2111. package/python3.4.2/lib/python3.4/test/test_textwrap.py +929 -0
  2112. package/python3.4.2/lib/python3.4/test/test_thread.py +260 -0
  2113. package/python3.4.2/lib/python3.4/test/test_threaded_import.py +244 -0
  2114. package/python3.4.2/lib/python3.4/test/test_threadedtempfile.py +78 -0
  2115. package/python3.4.2/lib/python3.4/test/test_threading.py +1021 -0
  2116. package/python3.4.2/lib/python3.4/test/test_threading_local.py +225 -0
  2117. package/python3.4.2/lib/python3.4/test/test_threadsignals.py +227 -0
  2118. package/python3.4.2/lib/python3.4/test/test_time.py +763 -0
  2119. package/python3.4.2/lib/python3.4/test/test_timeit.py +306 -0
  2120. package/python3.4.2/lib/python3.4/test/test_timeout.py +303 -0
  2121. package/python3.4.2/lib/python3.4/test/test_tk.py +18 -0
  2122. package/python3.4.2/lib/python3.4/test/test_tokenize.py +1233 -0
  2123. package/python3.4.2/lib/python3.4/test/test_trace.py +415 -0
  2124. package/python3.4.2/lib/python3.4/test/test_traceback.py +451 -0
  2125. package/python3.4.2/lib/python3.4/test/test_tracemalloc.py +826 -0
  2126. package/python3.4.2/lib/python3.4/test/test_ttk_guionly.py +37 -0
  2127. package/python3.4.2/lib/python3.4/test/test_ttk_textonly.py +17 -0
  2128. package/python3.4.2/lib/python3.4/test/test_tuple.py +208 -0
  2129. package/python3.4.2/lib/python3.4/test/test_typechecks.py +76 -0
  2130. package/python3.4.2/lib/python3.4/test/test_types.py +1178 -0
  2131. package/python3.4.2/lib/python3.4/test/test_ucn.py +240 -0
  2132. package/python3.4.2/lib/python3.4/test/test_unary.py +58 -0
  2133. package/python3.4.2/lib/python3.4/test/test_unicode.py +2596 -0
  2134. package/python3.4.2/lib/python3.4/test/test_unicode_file.py +144 -0
  2135. package/python3.4.2/lib/python3.4/test/test_unicodedata.py +323 -0
  2136. package/python3.4.2/lib/python3.4/test/test_unittest.py +16 -0
  2137. package/python3.4.2/lib/python3.4/test/test_univnewlines.py +123 -0
  2138. package/python3.4.2/lib/python3.4/test/test_unpack.py +130 -0
  2139. package/python3.4.2/lib/python3.4/test/test_unpack_ex.py +174 -0
  2140. package/python3.4.2/lib/python3.4/test/test_urllib.py +1486 -0
  2141. package/python3.4.2/lib/python3.4/test/test_urllib2.py +1646 -0
  2142. package/python3.4.2/lib/python3.4/test/test_urllib2_localnet.py +690 -0
  2143. package/python3.4.2/lib/python3.4/test/test_urllib2net.py +342 -0
  2144. package/python3.4.2/lib/python3.4/test/test_urllib_response.py +59 -0
  2145. package/python3.4.2/lib/python3.4/test/test_urllibnet.py +212 -0
  2146. package/python3.4.2/lib/python3.4/test/test_urlparse.py +879 -0
  2147. package/python3.4.2/lib/python3.4/test/test_userdict.py +199 -0
  2148. package/python3.4.2/lib/python3.4/test/test_userlist.py +65 -0
  2149. package/python3.4.2/lib/python3.4/test/test_userstring.py +47 -0
  2150. package/python3.4.2/lib/python3.4/test/test_uu.py +239 -0
  2151. package/python3.4.2/lib/python3.4/test/test_uuid.py +498 -0
  2152. package/python3.4.2/lib/python3.4/test/test_venv.py +406 -0
  2153. package/python3.4.2/lib/python3.4/test/test_wait3.py +38 -0
  2154. package/python3.4.2/lib/python3.4/test/test_wait4.py +38 -0
  2155. package/python3.4.2/lib/python3.4/test/test_warnings.py +873 -0
  2156. package/python3.4.2/lib/python3.4/test/test_wave.py +107 -0
  2157. package/python3.4.2/lib/python3.4/test/test_weakref.py +1801 -0
  2158. package/python3.4.2/lib/python3.4/test/test_weakset.py +450 -0
  2159. package/python3.4.2/lib/python3.4/test/test_webbrowser.py +192 -0
  2160. package/python3.4.2/lib/python3.4/test/test_winreg.py +485 -0
  2161. package/python3.4.2/lib/python3.4/test/test_winsound.py +253 -0
  2162. package/python3.4.2/lib/python3.4/test/test_with.py +750 -0
  2163. package/python3.4.2/lib/python3.4/test/test_wsgiref.py +640 -0
  2164. package/python3.4.2/lib/python3.4/test/test_xdrlib.py +58 -0
  2165. package/python3.4.2/lib/python3.4/test/test_xml_dom_minicompat.py +101 -0
  2166. package/python3.4.2/lib/python3.4/test/test_xml_etree.py +2587 -0
  2167. package/python3.4.2/lib/python3.4/test/test_xml_etree_c.py +94 -0
  2168. package/python3.4.2/lib/python3.4/test/test_xmlrpc.py +1114 -0
  2169. package/python3.4.2/lib/python3.4/test/test_xmlrpc_net.py +33 -0
  2170. package/python3.4.2/lib/python3.4/test/test_zipfile.py +1783 -0
  2171. package/python3.4.2/lib/python3.4/test/test_zipfile64.py +118 -0
  2172. package/python3.4.2/lib/python3.4/test/test_zipimport.py +507 -0
  2173. package/python3.4.2/lib/python3.4/test/test_zipimport_support.py +246 -0
  2174. package/python3.4.2/lib/python3.4/test/test_zlib.py +725 -0
  2175. package/python3.4.2/lib/python3.4/test/testcodec.py +48 -0
  2176. package/python3.4.2/lib/python3.4/test/testtar.tar +0 -0
  2177. package/python3.4.2/lib/python3.4/test/tf_inherit_check.py +25 -0
  2178. package/python3.4.2/lib/python3.4/test/threaded_import_hangers.py +45 -0
  2179. package/python3.4.2/lib/python3.4/test/time_hashlib.py +87 -0
  2180. package/python3.4.2/lib/python3.4/test/tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt +13 -0
  2181. package/python3.4.2/lib/python3.4/test/tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt +11 -0
  2182. package/python3.4.2/lib/python3.4/test/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt +13 -0
  2183. package/python3.4.2/lib/python3.4/test/tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt +12 -0
  2184. package/python3.4.2/lib/python3.4/test/tokenize_tests.txt +189 -0
  2185. package/python3.4.2/lib/python3.4/test/tracedmodules/__init__.py +4 -0
  2186. package/python3.4.2/lib/python3.4/test/tracedmodules/testmod.py +9 -0
  2187. package/python3.4.2/lib/python3.4/test/warning_tests.py +9 -0
  2188. package/python3.4.2/lib/python3.4/test/win_console_handler.py +49 -0
  2189. package/python3.4.2/lib/python3.4/test/xmltestdata/simple-ns.xml +7 -0
  2190. package/python3.4.2/lib/python3.4/test/xmltestdata/simple.xml +6 -0
  2191. package/python3.4.2/lib/python3.4/test/xmltestdata/test.xml +115 -0
  2192. package/python3.4.2/lib/python3.4/test/xmltestdata/test.xml.out +115 -0
  2193. package/python3.4.2/lib/python3.4/test/xmltests.py +21 -0
  2194. package/python3.4.2/lib/python3.4/test/zip_cp437_header.zip +0 -0
  2195. package/python3.4.2/lib/python3.4/test/zipdir.zip +0 -0
  2196. package/python3.4.2/lib/python3.4/textwrap.py +470 -0
  2197. package/python3.4.2/lib/python3.4/this.py +28 -0
  2198. package/python3.4.2/lib/python3.4/threading.py +1359 -0
  2199. package/python3.4.2/lib/python3.4/timeit.py +322 -0
  2200. package/python3.4.2/lib/python3.4/tkinter/__init__.py +3898 -0
  2201. package/python3.4.2/lib/python3.4/tkinter/__main__.py +7 -0
  2202. package/python3.4.2/lib/python3.4/tkinter/_fix.py +78 -0
  2203. package/python3.4.2/lib/python3.4/tkinter/colorchooser.py +72 -0
  2204. package/python3.4.2/lib/python3.4/tkinter/commondialog.py +60 -0
  2205. package/python3.4.2/lib/python3.4/tkinter/constants.py +110 -0
  2206. package/python3.4.2/lib/python3.4/tkinter/dialog.py +49 -0
  2207. package/python3.4.2/lib/python3.4/tkinter/dnd.py +321 -0
  2208. package/python3.4.2/lib/python3.4/tkinter/filedialog.py +479 -0
  2209. package/python3.4.2/lib/python3.4/tkinter/font.py +234 -0
  2210. package/python3.4.2/lib/python3.4/tkinter/messagebox.py +134 -0
  2211. package/python3.4.2/lib/python3.4/tkinter/scrolledtext.py +54 -0
  2212. package/python3.4.2/lib/python3.4/tkinter/simpledialog.py +423 -0
  2213. package/python3.4.2/lib/python3.4/tkinter/test/README +14 -0
  2214. package/python3.4.2/lib/python3.4/tkinter/test/__init__.py +0 -0
  2215. package/python3.4.2/lib/python3.4/tkinter/test/runtktests.py +71 -0
  2216. package/python3.4.2/lib/python3.4/tkinter/test/support.py +104 -0
  2217. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/__init__.py +0 -0
  2218. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_font.py +27 -0
  2219. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_geometry_managers.py +900 -0
  2220. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_images.py +327 -0
  2221. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_loadtk.py +46 -0
  2222. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_misc.py +42 -0
  2223. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_text.py +47 -0
  2224. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_variables.py +186 -0
  2225. package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_widgets.py +1193 -0
  2226. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/__init__.py +0 -0
  2227. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_extensions.py +291 -0
  2228. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_functions.py +462 -0
  2229. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_style.py +92 -0
  2230. package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_widgets.py +1598 -0
  2231. package/python3.4.2/lib/python3.4/tkinter/test/widget_tests.py +521 -0
  2232. package/python3.4.2/lib/python3.4/tkinter/tix.py +1944 -0
  2233. package/python3.4.2/lib/python3.4/tkinter/ttk.py +1616 -0
  2234. package/python3.4.2/lib/python3.4/token.py +140 -0
  2235. package/python3.4.2/lib/python3.4/tokenize.py +691 -0
  2236. package/python3.4.2/lib/python3.4/trace.py +858 -0
  2237. package/python3.4.2/lib/python3.4/traceback.py +313 -0
  2238. package/python3.4.2/lib/python3.4/tracemalloc.py +487 -0
  2239. package/python3.4.2/lib/python3.4/tty.py +36 -0
  2240. package/python3.4.2/lib/python3.4/turtle.py +4140 -0
  2241. package/python3.4.2/lib/python3.4/turtledemo/__init__.py +14 -0
  2242. package/python3.4.2/lib/python3.4/turtledemo/__main__.py +380 -0
  2243. package/python3.4.2/lib/python3.4/turtledemo/bytedesign.py +162 -0
  2244. package/python3.4.2/lib/python3.4/turtledemo/chaos.py +59 -0
  2245. package/python3.4.2/lib/python3.4/turtledemo/clock.py +132 -0
  2246. package/python3.4.2/lib/python3.4/turtledemo/colormixer.py +58 -0
  2247. package/python3.4.2/lib/python3.4/turtledemo/forest.py +108 -0
  2248. package/python3.4.2/lib/python3.4/turtledemo/fractalcurves.py +138 -0
  2249. package/python3.4.2/lib/python3.4/turtledemo/lindenmayer.py +119 -0
  2250. package/python3.4.2/lib/python3.4/turtledemo/minimal_hanoi.py +79 -0
  2251. package/python3.4.2/lib/python3.4/turtledemo/nim.py +226 -0
  2252. package/python3.4.2/lib/python3.4/turtledemo/paint.py +54 -0
  2253. package/python3.4.2/lib/python3.4/turtledemo/peace.py +61 -0
  2254. package/python3.4.2/lib/python3.4/turtledemo/penrose.py +181 -0
  2255. package/python3.4.2/lib/python3.4/turtledemo/planet_and_moon.py +112 -0
  2256. package/python3.4.2/lib/python3.4/turtledemo/round_dance.py +86 -0
  2257. package/python3.4.2/lib/python3.4/turtledemo/tree.py +63 -0
  2258. package/python3.4.2/lib/python3.4/turtledemo/turtle.cfg +10 -0
  2259. package/python3.4.2/lib/python3.4/turtledemo/two_canvases.py +54 -0
  2260. package/python3.4.2/lib/python3.4/turtledemo/wikipedia.py +65 -0
  2261. package/python3.4.2/lib/python3.4/turtledemo/yinyang.py +49 -0
  2262. package/python3.4.2/lib/python3.4/types.py +158 -0
  2263. package/python3.4.2/lib/python3.4/unittest/__init__.py +69 -0
  2264. package/python3.4.2/lib/python3.4/unittest/__main__.py +18 -0
  2265. package/python3.4.2/lib/python3.4/unittest/case.py +1400 -0
  2266. package/python3.4.2/lib/python3.4/unittest/loader.py +379 -0
  2267. package/python3.4.2/lib/python3.4/unittest/main.py +248 -0
  2268. package/python3.4.2/lib/python3.4/unittest/mock.py +2330 -0
  2269. package/python3.4.2/lib/python3.4/unittest/result.py +212 -0
  2270. package/python3.4.2/lib/python3.4/unittest/runner.py +213 -0
  2271. package/python3.4.2/lib/python3.4/unittest/signals.py +71 -0
  2272. package/python3.4.2/lib/python3.4/unittest/suite.py +324 -0
  2273. package/python3.4.2/lib/python3.4/unittest/test/__init__.py +22 -0
  2274. package/python3.4.2/lib/python3.4/unittest/test/__main__.py +18 -0
  2275. package/python3.4.2/lib/python3.4/unittest/test/_test_warnings.py +73 -0
  2276. package/python3.4.2/lib/python3.4/unittest/test/dummy.py +1 -0
  2277. package/python3.4.2/lib/python3.4/unittest/test/support.py +142 -0
  2278. package/python3.4.2/lib/python3.4/unittest/test/test_assertions.py +398 -0
  2279. package/python3.4.2/lib/python3.4/unittest/test/test_break.py +288 -0
  2280. package/python3.4.2/lib/python3.4/unittest/test/test_case.py +1574 -0
  2281. package/python3.4.2/lib/python3.4/unittest/test/test_discovery.py +527 -0
  2282. package/python3.4.2/lib/python3.4/unittest/test/test_functiontestcase.py +148 -0
  2283. package/python3.4.2/lib/python3.4/unittest/test/test_loader.py +1312 -0
  2284. package/python3.4.2/lib/python3.4/unittest/test/test_program.py +396 -0
  2285. package/python3.4.2/lib/python3.4/unittest/test/test_result.py +660 -0
  2286. package/python3.4.2/lib/python3.4/unittest/test/test_runner.py +346 -0
  2287. package/python3.4.2/lib/python3.4/unittest/test/test_setups.py +506 -0
  2288. package/python3.4.2/lib/python3.4/unittest/test/test_skipping.py +227 -0
  2289. package/python3.4.2/lib/python3.4/unittest/test/test_suite.py +447 -0
  2290. package/python3.4.2/lib/python3.4/unittest/test/testmock/__init__.py +17 -0
  2291. package/python3.4.2/lib/python3.4/unittest/test/testmock/__main__.py +18 -0
  2292. package/python3.4.2/lib/python3.4/unittest/test/testmock/support.py +23 -0
  2293. package/python3.4.2/lib/python3.4/unittest/test/testmock/testcallable.py +151 -0
  2294. package/python3.4.2/lib/python3.4/unittest/test/testmock/testhelpers.py +908 -0
  2295. package/python3.4.2/lib/python3.4/unittest/test/testmock/testmagicmethods.py +428 -0
  2296. package/python3.4.2/lib/python3.4/unittest/test/testmock/testmock.py +1412 -0
  2297. package/python3.4.2/lib/python3.4/unittest/test/testmock/testpatch.py +1801 -0
  2298. package/python3.4.2/lib/python3.4/unittest/test/testmock/testsentinel.py +28 -0
  2299. package/python3.4.2/lib/python3.4/unittest/test/testmock/testwith.py +259 -0
  2300. package/python3.4.2/lib/python3.4/unittest/util.py +177 -0
  2301. package/python3.4.2/lib/python3.4/urllib/__init__.py +0 -0
  2302. package/python3.4.2/lib/python3.4/urllib/error.py +76 -0
  2303. package/python3.4.2/lib/python3.4/urllib/parse.py +973 -0
  2304. package/python3.4.2/lib/python3.4/urllib/request.py +2559 -0
  2305. package/python3.4.2/lib/python3.4/urllib/response.py +76 -0
  2306. package/python3.4.2/lib/python3.4/urllib/robotparser.py +212 -0
  2307. package/python3.4.2/lib/python3.4/uu.py +199 -0
  2308. package/python3.4.2/lib/python3.4/uuid.py +591 -0
  2309. package/python3.4.2/lib/python3.4/venv/__init__.py +449 -0
  2310. package/python3.4.2/lib/python3.4/venv/__main__.py +10 -0
  2311. package/python3.4.2/lib/python3.4/venv/scripts/posix/activate +76 -0
  2312. package/python3.4.2/lib/python3.4/venv/scripts/posix/activate.csh +37 -0
  2313. package/python3.4.2/lib/python3.4/venv/scripts/posix/activate.fish +74 -0
  2314. package/python3.4.2/lib/python3.4/warnings.py +407 -0
  2315. package/python3.4.2/lib/python3.4/wave.py +503 -0
  2316. package/python3.4.2/lib/python3.4/weakref.py +577 -0
  2317. package/python3.4.2/lib/python3.4/webbrowser.py +651 -0
  2318. package/python3.4.2/lib/python3.4/wsgiref/__init__.py +23 -0
  2319. package/python3.4.2/lib/python3.4/wsgiref/handlers.py +547 -0
  2320. package/python3.4.2/lib/python3.4/wsgiref/headers.py +184 -0
  2321. package/python3.4.2/lib/python3.4/wsgiref/simple_server.py +165 -0
  2322. package/python3.4.2/lib/python3.4/wsgiref/util.py +165 -0
  2323. package/python3.4.2/lib/python3.4/wsgiref/validate.py +443 -0
  2324. package/python3.4.2/lib/python3.4/xdrlib.py +224 -0
  2325. package/python3.4.2/lib/python3.4/xml/__init__.py +20 -0
  2326. package/python3.4.2/lib/python3.4/xml/dom/NodeFilter.py +27 -0
  2327. package/python3.4.2/lib/python3.4/xml/dom/__init__.py +140 -0
  2328. package/python3.4.2/lib/python3.4/xml/dom/domreg.py +97 -0
  2329. package/python3.4.2/lib/python3.4/xml/dom/expatbuilder.py +965 -0
  2330. package/python3.4.2/lib/python3.4/xml/dom/minicompat.py +109 -0
  2331. package/python3.4.2/lib/python3.4/xml/dom/minidom.py +1983 -0
  2332. package/python3.4.2/lib/python3.4/xml/dom/pulldom.py +342 -0
  2333. package/python3.4.2/lib/python3.4/xml/dom/xmlbuilder.py +386 -0
  2334. package/python3.4.2/lib/python3.4/xml/etree/ElementInclude.py +143 -0
  2335. package/python3.4.2/lib/python3.4/xml/etree/ElementPath.py +308 -0
  2336. package/python3.4.2/lib/python3.4/xml/etree/ElementTree.py +1667 -0
  2337. package/python3.4.2/lib/python3.4/xml/etree/__init__.py +33 -0
  2338. package/python3.4.2/lib/python3.4/xml/etree/cElementTree.py +3 -0
  2339. package/python3.4.2/lib/python3.4/xml/parsers/__init__.py +8 -0
  2340. package/python3.4.2/lib/python3.4/xml/parsers/expat.py +8 -0
  2341. package/python3.4.2/lib/python3.4/xml/sax/__init__.py +105 -0
  2342. package/python3.4.2/lib/python3.4/xml/sax/_exceptions.py +131 -0
  2343. package/python3.4.2/lib/python3.4/xml/sax/expatreader.py +417 -0
  2344. package/python3.4.2/lib/python3.4/xml/sax/handler.py +342 -0
  2345. package/python3.4.2/lib/python3.4/xml/sax/saxutils.py +365 -0
  2346. package/python3.4.2/lib/python3.4/xml/sax/xmlreader.py +378 -0
  2347. package/python3.4.2/lib/python3.4/xmlrpc/__init__.py +1 -0
  2348. package/python3.4.2/lib/python3.4/xmlrpc/client.py +1479 -0
  2349. package/python3.4.2/lib/python3.4/xmlrpc/server.py +986 -0
  2350. package/python3.4.2/lib/python3.4/zipfile.py +1788 -0
  2351. package/python3.4.2/share/man/man1/python3.1 +460 -0
  2352. package/python3.4.2/share/man/man1/python3.4.1 +460 -0
@@ -0,0 +1,2970 @@
1
+ ------------------------------------------------------------------------
2
+ -- powersqrt.decTest -- decimal square root, using power --
3
+ -- Copyright (c) IBM Corporation, 2004, 2008. All rights reserved. --
4
+ ------------------------------------------------------------------------
5
+ -- Please see the document "General Decimal Arithmetic Testcases" --
6
+ -- at http://www2.hursley.ibm.com/decimal for the description of --
7
+ -- these testcases. --
8
+ -- --
9
+ -- These testcases are experimental ('beta' versions), and they --
10
+ -- may contain errors. They are offered on an as-is basis. In --
11
+ -- particular, achieving the same results as the tests here is not --
12
+ -- a guarantee that an implementation complies with any Standard --
13
+ -- or specification. The tests are not exhaustive. --
14
+ -- --
15
+ -- Please send comments, suggestions, and corrections to the author: --
16
+ -- Mike Cowlishaw, IBM Fellow --
17
+ -- IBM UK, PO Box 31, Birmingham Road, Warwick CV34 5JL, UK --
18
+ -- mfc@uk.ibm.com --
19
+ ------------------------------------------------------------------------
20
+ version: 2.59
21
+
22
+ -- These testcases are taken from squareroot.decTest but are
23
+ -- evaluated using the power operator. The differences in results
24
+ -- (153 out of 2856) fall into the following categories:
25
+ --
26
+ -- x ** 0.5 (x>0) has no preferred exponent, and is Inexact
27
+ -- (and hence full precision); almost all differences are
28
+ -- in this category
29
+ -- 0.00 ** 0.5 becomes 0 (not 0.0), etc.
30
+ -- -0 ** 0.5 becomes 0 (never -0)
31
+ -- Some exact subnormals become inexact and hence underflows
32
+
33
+ extended: 1
34
+ precision: 9
35
+ rounding: half_even
36
+ maxExponent: 384
37
+ minexponent: -383
38
+
39
+ -- basics
40
+ pwsx001 power 1 0.5 -> 1.00000000 Inexact Rounded
41
+ pwsx002 power -1 0.5 -> NaN Invalid_operation
42
+ pwsx003 power 1.00 0.5 -> 1.00000000 Inexact Rounded
43
+ pwsx004 power -1.00 0.5 -> NaN Invalid_operation
44
+ pwsx005 power 0 0.5 -> 0
45
+ pwsx006 power 00.0 0.5 -> 0
46
+ pwsx007 power 0.00 0.5 -> 0
47
+ pwsx008 power 00.00 0.5 -> 0
48
+ pwsx009 power 00.000 0.5 -> 0
49
+ pwsx010 power 00.0000 0.5 -> 0
50
+ pwsx011 power 00 0.5 -> 0
51
+
52
+ pwsx012 power -2 0.5 -> NaN Invalid_operation
53
+ pwsx013 power 2 0.5 -> 1.41421356 Inexact Rounded
54
+ pwsx014 power -2.00 0.5 -> NaN Invalid_operation
55
+ pwsx015 power 2.00 0.5 -> 1.41421356 Inexact Rounded
56
+ pwsx016 power -0 0.5 -> 0
57
+ pwsx017 power -0.0 0.5 -> 0
58
+ pwsx018 power -00.00 0.5 -> 0
59
+ pwsx019 power -00.000 0.5 -> 0
60
+ pwsx020 power -0.0000 0.5 -> 0
61
+ pwsx021 power -0E+9 0.5 -> 0
62
+ pwsx022 power -0E+10 0.5 -> 0
63
+ pwsx023 power -0E+11 0.5 -> 0
64
+ pwsx024 power -0E+12 0.5 -> 0
65
+ pwsx025 power -00 0.5 -> 0
66
+ pwsx026 power 0E+5 0.5 -> 0
67
+ pwsx027 power 4.0 0.5 -> 2.00000000 Inexact Rounded
68
+ pwsx028 power 4.00 0.5 -> 2.00000000 Inexact Rounded
69
+
70
+ pwsx030 power +0.1 0.5 -> 0.316227766 Inexact Rounded
71
+ pwsx031 power -0.1 0.5 -> NaN Invalid_operation
72
+ pwsx032 power +0.01 0.5 -> 0.100000000 Inexact Rounded
73
+ pwsx033 power -0.01 0.5 -> NaN Invalid_operation
74
+ pwsx034 power +0.001 0.5 -> 0.0316227766 Inexact Rounded
75
+ pwsx035 power -0.001 0.5 -> NaN Invalid_operation
76
+ pwsx036 power +0.000001 0.5 -> 0.00100000000 Inexact Rounded
77
+ pwsx037 power -0.000001 0.5 -> NaN Invalid_operation
78
+ pwsx038 power +0.000000000001 0.5 -> 0.00000100000000 Inexact Rounded
79
+ pwsx039 power -0.000000000001 0.5 -> NaN Invalid_operation
80
+
81
+ pwsx041 power 1.1 0.5 -> 1.04880885 Inexact Rounded
82
+ pwsx042 power 1.10 0.5 -> 1.04880885 Inexact Rounded
83
+ pwsx043 power 1.100 0.5 -> 1.04880885 Inexact Rounded
84
+ pwsx044 power 1.110 0.5 -> 1.05356538 Inexact Rounded
85
+ pwsx045 power -1.1 0.5 -> NaN Invalid_operation
86
+ pwsx046 power -1.10 0.5 -> NaN Invalid_operation
87
+ pwsx047 power -1.100 0.5 -> NaN Invalid_operation
88
+ pwsx048 power -1.110 0.5 -> NaN Invalid_operation
89
+ pwsx049 power 9.9 0.5 -> 3.14642654 Inexact Rounded
90
+ pwsx050 power 9.90 0.5 -> 3.14642654 Inexact Rounded
91
+ pwsx051 power 9.900 0.5 -> 3.14642654 Inexact Rounded
92
+ pwsx052 power 9.990 0.5 -> 3.16069613 Inexact Rounded
93
+ pwsx053 power -9.9 0.5 -> NaN Invalid_operation
94
+ pwsx054 power -9.90 0.5 -> NaN Invalid_operation
95
+ pwsx055 power -9.900 0.5 -> NaN Invalid_operation
96
+ pwsx056 power -9.990 0.5 -> NaN Invalid_operation
97
+
98
+ pwsx060 power 1 0.5 -> 1.00000000 Inexact Rounded
99
+ pwsx061 power 1.0 0.5 -> 1.00000000 Inexact Rounded
100
+ pwsx062 power 1.00 0.5 -> 1.00000000 Inexact Rounded
101
+ pwsx063 power 10.0 0.5 -> 3.16227766 Inexact Rounded
102
+ pwsx064 power 10.0 0.5 -> 3.16227766 Inexact Rounded
103
+ pwsx065 power 10.0 0.5 -> 3.16227766 Inexact Rounded
104
+ pwsx066 power 10.00 0.5 -> 3.16227766 Inexact Rounded
105
+ pwsx067 power 100 0.5 -> 10.0000000 Inexact Rounded
106
+ pwsx068 power 100.0 0.5 -> 10.0000000 Inexact Rounded
107
+ pwsx069 power 100.00 0.5 -> 10.0000000 Inexact Rounded
108
+ pwsx070 power 1.1000E+3 0.5 -> 33.1662479 Inexact Rounded
109
+ pwsx071 power 1.10000E+3 0.5 -> 33.1662479 Inexact Rounded
110
+ pwsx072 power -10.0 0.5 -> NaN Invalid_operation
111
+ pwsx073 power -10.00 0.5 -> NaN Invalid_operation
112
+ pwsx074 power -100.0 0.5 -> NaN Invalid_operation
113
+ pwsx075 power -100.00 0.5 -> NaN Invalid_operation
114
+ pwsx076 power -1.1000E+3 0.5 -> NaN Invalid_operation
115
+ pwsx077 power -1.10000E+3 0.5 -> NaN Invalid_operation
116
+
117
+ -- famous squares
118
+ pwsx080 power 1 0.5 -> 1.00000000 Inexact Rounded
119
+ pwsx081 power 4 0.5 -> 2.00000000 Inexact Rounded
120
+ pwsx082 power 9 0.5 -> 3.00000000 Inexact Rounded
121
+ pwsx083 power 16 0.5 -> 4.00000000 Inexact Rounded
122
+ pwsx084 power 25 0.5 -> 5.00000000 Inexact Rounded
123
+ pwsx085 power 36 0.5 -> 6.00000000 Inexact Rounded
124
+ pwsx086 power 49 0.5 -> 7.00000000 Inexact Rounded
125
+ pwsx087 power 64 0.5 -> 8.00000000 Inexact Rounded
126
+ pwsx088 power 81 0.5 -> 9.00000000 Inexact Rounded
127
+ pwsx089 power 100 0.5 -> 10.0000000 Inexact Rounded
128
+ pwsx090 power 121 0.5 -> 11.0000000 Inexact Rounded
129
+ pwsx091 power 144 0.5 -> 12.0000000 Inexact Rounded
130
+ pwsx092 power 169 0.5 -> 13.0000000 Inexact Rounded
131
+ pwsx093 power 256 0.5 -> 16.0000000 Inexact Rounded
132
+ pwsx094 power 1024 0.5 -> 32.0000000 Inexact Rounded
133
+ pwsx095 power 4096 0.5 -> 64.0000000 Inexact Rounded
134
+ pwsx100 power 0.01 0.5 -> 0.100000000 Inexact Rounded
135
+ pwsx101 power 0.04 0.5 -> 0.200000000 Inexact Rounded
136
+ pwsx102 power 0.09 0.5 -> 0.300000000 Inexact Rounded
137
+ pwsx103 power 0.16 0.5 -> 0.400000000 Inexact Rounded
138
+ pwsx104 power 0.25 0.5 -> 0.500000000 Inexact Rounded
139
+ pwsx105 power 0.36 0.5 -> 0.600000000 Inexact Rounded
140
+ pwsx106 power 0.49 0.5 -> 0.700000000 Inexact Rounded
141
+ pwsx107 power 0.64 0.5 -> 0.800000000 Inexact Rounded
142
+ pwsx108 power 0.81 0.5 -> 0.900000000 Inexact Rounded
143
+ pwsx109 power 1.00 0.5 -> 1.00000000 Inexact Rounded
144
+ pwsx110 power 1.21 0.5 -> 1.10000000 Inexact Rounded
145
+ pwsx111 power 1.44 0.5 -> 1.20000000 Inexact Rounded
146
+ pwsx112 power 1.69 0.5 -> 1.30000000 Inexact Rounded
147
+ pwsx113 power 2.56 0.5 -> 1.60000000 Inexact Rounded
148
+ pwsx114 power 10.24 0.5 -> 3.20000000 Inexact Rounded
149
+ pwsx115 power 40.96 0.5 -> 6.40000000 Inexact Rounded
150
+
151
+ -- Precision 1 squareroot tests [exhaustive, plus exponent adjusts]
152
+ rounding: half_even
153
+ maxExponent: 999
154
+ minexponent: -999
155
+ precision: 1
156
+ pwsx1201 power 0.1 0.5 -> 0.3 Inexact Rounded
157
+ pwsx1202 power 0.01 0.5 -> 0.1 Inexact Rounded
158
+ pwsx1203 power 1.0E-1 0.5 -> 0.3 Inexact Rounded
159
+ pwsx1204 power 1.00E-2 0.5 -> 0.1 Inexact Rounded
160
+ pwsx1205 power 1E-3 0.5 -> 0.03 Inexact Rounded
161
+ pwsx1206 power 1E+1 0.5 -> 3 Inexact Rounded
162
+ pwsx1207 power 1E+2 0.5 -> 1E+1 Inexact Rounded
163
+ pwsx1208 power 1E+3 0.5 -> 3E+1 Inexact Rounded
164
+ pwsx1209 power 0.2 0.5 -> 0.4 Inexact Rounded
165
+ pwsx1210 power 0.02 0.5 -> 0.1 Inexact Rounded
166
+ pwsx1211 power 2.0E-1 0.5 -> 0.4 Inexact Rounded
167
+ pwsx1212 power 2.00E-2 0.5 -> 0.1 Inexact Rounded
168
+ pwsx1213 power 2E-3 0.5 -> 0.04 Inexact Rounded
169
+ pwsx1214 power 2E+1 0.5 -> 4 Inexact Rounded
170
+ pwsx1215 power 2E+2 0.5 -> 1E+1 Inexact Rounded
171
+ pwsx1216 power 2E+3 0.5 -> 4E+1 Inexact Rounded
172
+ pwsx1217 power 0.3 0.5 -> 0.5 Inexact Rounded
173
+ pwsx1218 power 0.03 0.5 -> 0.2 Inexact Rounded
174
+ pwsx1219 power 3.0E-1 0.5 -> 0.5 Inexact Rounded
175
+ pwsx1220 power 3.00E-2 0.5 -> 0.2 Inexact Rounded
176
+ pwsx1221 power 3E-3 0.5 -> 0.05 Inexact Rounded
177
+ pwsx1222 power 3E+1 0.5 -> 5 Inexact Rounded
178
+ pwsx1223 power 3E+2 0.5 -> 2E+1 Inexact Rounded
179
+ pwsx1224 power 3E+3 0.5 -> 5E+1 Inexact Rounded
180
+ pwsx1225 power 0.4 0.5 -> 0.6 Inexact Rounded
181
+ pwsx1226 power 0.04 0.5 -> 0.2 Inexact Rounded
182
+ pwsx1227 power 4.0E-1 0.5 -> 0.6 Inexact Rounded
183
+ pwsx1228 power 4.00E-2 0.5 -> 0.2 Inexact Rounded
184
+ pwsx1229 power 4E-3 0.5 -> 0.06 Inexact Rounded
185
+ pwsx1230 power 4E+1 0.5 -> 6 Inexact Rounded
186
+ pwsx1231 power 4E+2 0.5 -> 2E+1 Inexact Rounded
187
+ pwsx1232 power 4E+3 0.5 -> 6E+1 Inexact Rounded
188
+ pwsx1233 power 0.5 0.5 -> 0.7 Inexact Rounded
189
+ pwsx1234 power 0.05 0.5 -> 0.2 Inexact Rounded
190
+ pwsx1235 power 5.0E-1 0.5 -> 0.7 Inexact Rounded
191
+ pwsx1236 power 5.00E-2 0.5 -> 0.2 Inexact Rounded
192
+ pwsx1237 power 5E-3 0.5 -> 0.07 Inexact Rounded
193
+ pwsx1238 power 5E+1 0.5 -> 7 Inexact Rounded
194
+ pwsx1239 power 5E+2 0.5 -> 2E+1 Inexact Rounded
195
+ pwsx1240 power 5E+3 0.5 -> 7E+1 Inexact Rounded
196
+ pwsx1241 power 0.6 0.5 -> 0.8 Inexact Rounded
197
+ pwsx1242 power 0.06 0.5 -> 0.2 Inexact Rounded
198
+ pwsx1243 power 6.0E-1 0.5 -> 0.8 Inexact Rounded
199
+ pwsx1244 power 6.00E-2 0.5 -> 0.2 Inexact Rounded
200
+ pwsx1245 power 6E-3 0.5 -> 0.08 Inexact Rounded
201
+ pwsx1246 power 6E+1 0.5 -> 8 Inexact Rounded
202
+ pwsx1247 power 6E+2 0.5 -> 2E+1 Inexact Rounded
203
+ pwsx1248 power 6E+3 0.5 -> 8E+1 Inexact Rounded
204
+ pwsx1249 power 0.7 0.5 -> 0.8 Inexact Rounded
205
+ pwsx1250 power 0.07 0.5 -> 0.3 Inexact Rounded
206
+ pwsx1251 power 7.0E-1 0.5 -> 0.8 Inexact Rounded
207
+ pwsx1252 power 7.00E-2 0.5 -> 0.3 Inexact Rounded
208
+ pwsx1253 power 7E-3 0.5 -> 0.08 Inexact Rounded
209
+ pwsx1254 power 7E+1 0.5 -> 8 Inexact Rounded
210
+ pwsx1255 power 7E+2 0.5 -> 3E+1 Inexact Rounded
211
+ pwsx1256 power 7E+3 0.5 -> 8E+1 Inexact Rounded
212
+ pwsx1257 power 0.8 0.5 -> 0.9 Inexact Rounded
213
+ pwsx1258 power 0.08 0.5 -> 0.3 Inexact Rounded
214
+ pwsx1259 power 8.0E-1 0.5 -> 0.9 Inexact Rounded
215
+ pwsx1260 power 8.00E-2 0.5 -> 0.3 Inexact Rounded
216
+ pwsx1261 power 8E-3 0.5 -> 0.09 Inexact Rounded
217
+ pwsx1262 power 8E+1 0.5 -> 9 Inexact Rounded
218
+ pwsx1263 power 8E+2 0.5 -> 3E+1 Inexact Rounded
219
+ pwsx1264 power 8E+3 0.5 -> 9E+1 Inexact Rounded
220
+ pwsx1265 power 0.9 0.5 -> 0.9 Inexact Rounded
221
+ pwsx1266 power 0.09 0.5 -> 0.3 Inexact Rounded
222
+ pwsx1267 power 9.0E-1 0.5 -> 0.9 Inexact Rounded
223
+ pwsx1268 power 9.00E-2 0.5 -> 0.3 Inexact Rounded
224
+ pwsx1269 power 9E-3 0.5 -> 0.09 Inexact Rounded
225
+ pwsx1270 power 9E+1 0.5 -> 9 Inexact Rounded
226
+ pwsx1271 power 9E+2 0.5 -> 3E+1 Inexact Rounded
227
+ pwsx1272 power 9E+3 0.5 -> 9E+1 Inexact Rounded
228
+
229
+ -- Precision 2 squareroot tests [exhaustive, plus exponent adjusts]
230
+ rounding: half_even
231
+ maxExponent: 999
232
+ minexponent: -999
233
+ precision: 2
234
+ pwsx2201 power 0.1 0.5 -> 0.32 Inexact Rounded
235
+ pwsx2202 power 0.01 0.5 -> 0.10 Inexact Rounded
236
+ pwsx2203 power 1.0E-1 0.5 -> 0.32 Inexact Rounded
237
+ pwsx2204 power 1.00E-2 0.5 -> 0.10 Inexact Rounded
238
+ pwsx2205 power 1E-3 0.5 -> 0.032 Inexact Rounded
239
+ pwsx2206 power 1E+1 0.5 -> 3.2 Inexact Rounded
240
+ pwsx2207 power 1E+2 0.5 -> 10 Inexact Rounded
241
+ pwsx2208 power 1E+3 0.5 -> 32 Inexact Rounded
242
+ pwsx2209 power 0.2 0.5 -> 0.45 Inexact Rounded
243
+ pwsx2210 power 0.02 0.5 -> 0.14 Inexact Rounded
244
+ pwsx2211 power 2.0E-1 0.5 -> 0.45 Inexact Rounded
245
+ pwsx2212 power 2.00E-2 0.5 -> 0.14 Inexact Rounded
246
+ pwsx2213 power 2E-3 0.5 -> 0.045 Inexact Rounded
247
+ pwsx2214 power 2E+1 0.5 -> 4.5 Inexact Rounded
248
+ pwsx2215 power 2E+2 0.5 -> 14 Inexact Rounded
249
+ pwsx2216 power 2E+3 0.5 -> 45 Inexact Rounded
250
+ pwsx2217 power 0.3 0.5 -> 0.55 Inexact Rounded
251
+ pwsx2218 power 0.03 0.5 -> 0.17 Inexact Rounded
252
+ pwsx2219 power 3.0E-1 0.5 -> 0.55 Inexact Rounded
253
+ pwsx2220 power 3.00E-2 0.5 -> 0.17 Inexact Rounded
254
+ pwsx2221 power 3E-3 0.5 -> 0.055 Inexact Rounded
255
+ pwsx2222 power 3E+1 0.5 -> 5.5 Inexact Rounded
256
+ pwsx2223 power 3E+2 0.5 -> 17 Inexact Rounded
257
+ pwsx2224 power 3E+3 0.5 -> 55 Inexact Rounded
258
+ pwsx2225 power 0.4 0.5 -> 0.63 Inexact Rounded
259
+ pwsx2226 power 0.04 0.5 -> 0.20 Inexact Rounded
260
+ pwsx2227 power 4.0E-1 0.5 -> 0.63 Inexact Rounded
261
+ pwsx2228 power 4.00E-2 0.5 -> 0.20 Inexact Rounded
262
+ pwsx2229 power 4E-3 0.5 -> 0.063 Inexact Rounded
263
+ pwsx2230 power 4E+1 0.5 -> 6.3 Inexact Rounded
264
+ pwsx2231 power 4E+2 0.5 -> 20 Inexact Rounded
265
+ pwsx2232 power 4E+3 0.5 -> 63 Inexact Rounded
266
+ pwsx2233 power 0.5 0.5 -> 0.71 Inexact Rounded
267
+ pwsx2234 power 0.05 0.5 -> 0.22 Inexact Rounded
268
+ pwsx2235 power 5.0E-1 0.5 -> 0.71 Inexact Rounded
269
+ pwsx2236 power 5.00E-2 0.5 -> 0.22 Inexact Rounded
270
+ pwsx2237 power 5E-3 0.5 -> 0.071 Inexact Rounded
271
+ pwsx2238 power 5E+1 0.5 -> 7.1 Inexact Rounded
272
+ pwsx2239 power 5E+2 0.5 -> 22 Inexact Rounded
273
+ pwsx2240 power 5E+3 0.5 -> 71 Inexact Rounded
274
+ pwsx2241 power 0.6 0.5 -> 0.77 Inexact Rounded
275
+ pwsx2242 power 0.06 0.5 -> 0.24 Inexact Rounded
276
+ pwsx2243 power 6.0E-1 0.5 -> 0.77 Inexact Rounded
277
+ pwsx2244 power 6.00E-2 0.5 -> 0.24 Inexact Rounded
278
+ pwsx2245 power 6E-3 0.5 -> 0.077 Inexact Rounded
279
+ pwsx2246 power 6E+1 0.5 -> 7.7 Inexact Rounded
280
+ pwsx2247 power 6E+2 0.5 -> 24 Inexact Rounded
281
+ pwsx2248 power 6E+3 0.5 -> 77 Inexact Rounded
282
+ pwsx2249 power 0.7 0.5 -> 0.84 Inexact Rounded
283
+ pwsx2250 power 0.07 0.5 -> 0.26 Inexact Rounded
284
+ pwsx2251 power 7.0E-1 0.5 -> 0.84 Inexact Rounded
285
+ pwsx2252 power 7.00E-2 0.5 -> 0.26 Inexact Rounded
286
+ pwsx2253 power 7E-3 0.5 -> 0.084 Inexact Rounded
287
+ pwsx2254 power 7E+1 0.5 -> 8.4 Inexact Rounded
288
+ pwsx2255 power 7E+2 0.5 -> 26 Inexact Rounded
289
+ pwsx2256 power 7E+3 0.5 -> 84 Inexact Rounded
290
+ pwsx2257 power 0.8 0.5 -> 0.89 Inexact Rounded
291
+ pwsx2258 power 0.08 0.5 -> 0.28 Inexact Rounded
292
+ pwsx2259 power 8.0E-1 0.5 -> 0.89 Inexact Rounded
293
+ pwsx2260 power 8.00E-2 0.5 -> 0.28 Inexact Rounded
294
+ pwsx2261 power 8E-3 0.5 -> 0.089 Inexact Rounded
295
+ pwsx2262 power 8E+1 0.5 -> 8.9 Inexact Rounded
296
+ pwsx2263 power 8E+2 0.5 -> 28 Inexact Rounded
297
+ pwsx2264 power 8E+3 0.5 -> 89 Inexact Rounded
298
+ pwsx2265 power 0.9 0.5 -> 0.95 Inexact Rounded
299
+ pwsx2266 power 0.09 0.5 -> 0.30 Inexact Rounded
300
+ pwsx2267 power 9.0E-1 0.5 -> 0.95 Inexact Rounded
301
+ pwsx2268 power 9.00E-2 0.5 -> 0.30 Inexact Rounded
302
+ pwsx2269 power 9E-3 0.5 -> 0.095 Inexact Rounded
303
+ pwsx2270 power 9E+1 0.5 -> 9.5 Inexact Rounded
304
+ pwsx2271 power 9E+2 0.5 -> 30 Inexact Rounded
305
+ pwsx2272 power 9E+3 0.5 -> 95 Inexact Rounded
306
+ pwsx2273 power 0.10 0.5 -> 0.32 Inexact Rounded
307
+ pwsx2274 power 0.010 0.5 -> 0.10 Inexact Rounded
308
+ pwsx2275 power 10.0E-1 0.5 -> 1.0 Inexact Rounded
309
+ pwsx2276 power 10.00E-2 0.5 -> 0.32 Inexact Rounded
310
+ pwsx2277 power 10E-3 0.5 -> 0.10 Inexact Rounded
311
+ pwsx2278 power 10E+1 0.5 -> 10 Inexact Rounded
312
+ pwsx2279 power 10E+2 0.5 -> 32 Inexact Rounded
313
+ pwsx2280 power 10E+3 0.5 -> 1.0E+2 Inexact Rounded
314
+ pwsx2281 power 0.11 0.5 -> 0.33 Inexact Rounded
315
+ pwsx2282 power 0.011 0.5 -> 0.10 Inexact Rounded
316
+ pwsx2283 power 11.0E-1 0.5 -> 1.0 Inexact Rounded
317
+ pwsx2284 power 11.00E-2 0.5 -> 0.33 Inexact Rounded
318
+ pwsx2285 power 11E-3 0.5 -> 0.10 Inexact Rounded
319
+ pwsx2286 power 11E+1 0.5 -> 10 Inexact Rounded
320
+ pwsx2287 power 11E+2 0.5 -> 33 Inexact Rounded
321
+ pwsx2288 power 11E+3 0.5 -> 1.0E+2 Inexact Rounded
322
+ pwsx2289 power 0.12 0.5 -> 0.35 Inexact Rounded
323
+ pwsx2290 power 0.012 0.5 -> 0.11 Inexact Rounded
324
+ pwsx2291 power 12.0E-1 0.5 -> 1.1 Inexact Rounded
325
+ pwsx2292 power 12.00E-2 0.5 -> 0.35 Inexact Rounded
326
+ pwsx2293 power 12E-3 0.5 -> 0.11 Inexact Rounded
327
+ pwsx2294 power 12E+1 0.5 -> 11 Inexact Rounded
328
+ pwsx2295 power 12E+2 0.5 -> 35 Inexact Rounded
329
+ pwsx2296 power 12E+3 0.5 -> 1.1E+2 Inexact Rounded
330
+ pwsx2297 power 0.13 0.5 -> 0.36 Inexact Rounded
331
+ pwsx2298 power 0.013 0.5 -> 0.11 Inexact Rounded
332
+ pwsx2299 power 13.0E-1 0.5 -> 1.1 Inexact Rounded
333
+ pwsx2300 power 13.00E-2 0.5 -> 0.36 Inexact Rounded
334
+ pwsx2301 power 13E-3 0.5 -> 0.11 Inexact Rounded
335
+ pwsx2302 power 13E+1 0.5 -> 11 Inexact Rounded
336
+ pwsx2303 power 13E+2 0.5 -> 36 Inexact Rounded
337
+ pwsx2304 power 13E+3 0.5 -> 1.1E+2 Inexact Rounded
338
+ pwsx2305 power 0.14 0.5 -> 0.37 Inexact Rounded
339
+ pwsx2306 power 0.014 0.5 -> 0.12 Inexact Rounded
340
+ pwsx2307 power 14.0E-1 0.5 -> 1.2 Inexact Rounded
341
+ pwsx2308 power 14.00E-2 0.5 -> 0.37 Inexact Rounded
342
+ pwsx2309 power 14E-3 0.5 -> 0.12 Inexact Rounded
343
+ pwsx2310 power 14E+1 0.5 -> 12 Inexact Rounded
344
+ pwsx2311 power 14E+2 0.5 -> 37 Inexact Rounded
345
+ pwsx2312 power 14E+3 0.5 -> 1.2E+2 Inexact Rounded
346
+ pwsx2313 power 0.15 0.5 -> 0.39 Inexact Rounded
347
+ pwsx2314 power 0.015 0.5 -> 0.12 Inexact Rounded
348
+ pwsx2315 power 15.0E-1 0.5 -> 1.2 Inexact Rounded
349
+ pwsx2316 power 15.00E-2 0.5 -> 0.39 Inexact Rounded
350
+ pwsx2317 power 15E-3 0.5 -> 0.12 Inexact Rounded
351
+ pwsx2318 power 15E+1 0.5 -> 12 Inexact Rounded
352
+ pwsx2319 power 15E+2 0.5 -> 39 Inexact Rounded
353
+ pwsx2320 power 15E+3 0.5 -> 1.2E+2 Inexact Rounded
354
+ pwsx2321 power 0.16 0.5 -> 0.40 Inexact Rounded
355
+ pwsx2322 power 0.016 0.5 -> 0.13 Inexact Rounded
356
+ pwsx2323 power 16.0E-1 0.5 -> 1.3 Inexact Rounded
357
+ pwsx2324 power 16.00E-2 0.5 -> 0.40 Inexact Rounded
358
+ pwsx2325 power 16E-3 0.5 -> 0.13 Inexact Rounded
359
+ pwsx2326 power 16E+1 0.5 -> 13 Inexact Rounded
360
+ pwsx2327 power 16E+2 0.5 -> 40 Inexact Rounded
361
+ pwsx2328 power 16E+3 0.5 -> 1.3E+2 Inexact Rounded
362
+ pwsx2329 power 0.17 0.5 -> 0.41 Inexact Rounded
363
+ pwsx2330 power 0.017 0.5 -> 0.13 Inexact Rounded
364
+ pwsx2331 power 17.0E-1 0.5 -> 1.3 Inexact Rounded
365
+ pwsx2332 power 17.00E-2 0.5 -> 0.41 Inexact Rounded
366
+ pwsx2333 power 17E-3 0.5 -> 0.13 Inexact Rounded
367
+ pwsx2334 power 17E+1 0.5 -> 13 Inexact Rounded
368
+ pwsx2335 power 17E+2 0.5 -> 41 Inexact Rounded
369
+ pwsx2336 power 17E+3 0.5 -> 1.3E+2 Inexact Rounded
370
+ pwsx2337 power 0.18 0.5 -> 0.42 Inexact Rounded
371
+ pwsx2338 power 0.018 0.5 -> 0.13 Inexact Rounded
372
+ pwsx2339 power 18.0E-1 0.5 -> 1.3 Inexact Rounded
373
+ pwsx2340 power 18.00E-2 0.5 -> 0.42 Inexact Rounded
374
+ pwsx2341 power 18E-3 0.5 -> 0.13 Inexact Rounded
375
+ pwsx2342 power 18E+1 0.5 -> 13 Inexact Rounded
376
+ pwsx2343 power 18E+2 0.5 -> 42 Inexact Rounded
377
+ pwsx2344 power 18E+3 0.5 -> 1.3E+2 Inexact Rounded
378
+ pwsx2345 power 0.19 0.5 -> 0.44 Inexact Rounded
379
+ pwsx2346 power 0.019 0.5 -> 0.14 Inexact Rounded
380
+ pwsx2347 power 19.0E-1 0.5 -> 1.4 Inexact Rounded
381
+ pwsx2348 power 19.00E-2 0.5 -> 0.44 Inexact Rounded
382
+ pwsx2349 power 19E-3 0.5 -> 0.14 Inexact Rounded
383
+ pwsx2350 power 19E+1 0.5 -> 14 Inexact Rounded
384
+ pwsx2351 power 19E+2 0.5 -> 44 Inexact Rounded
385
+ pwsx2352 power 19E+3 0.5 -> 1.4E+2 Inexact Rounded
386
+ pwsx2353 power 0.20 0.5 -> 0.45 Inexact Rounded
387
+ pwsx2354 power 0.020 0.5 -> 0.14 Inexact Rounded
388
+ pwsx2355 power 20.0E-1 0.5 -> 1.4 Inexact Rounded
389
+ pwsx2356 power 20.00E-2 0.5 -> 0.45 Inexact Rounded
390
+ pwsx2357 power 20E-3 0.5 -> 0.14 Inexact Rounded
391
+ pwsx2358 power 20E+1 0.5 -> 14 Inexact Rounded
392
+ pwsx2359 power 20E+2 0.5 -> 45 Inexact Rounded
393
+ pwsx2360 power 20E+3 0.5 -> 1.4E+2 Inexact Rounded
394
+ pwsx2361 power 0.21 0.5 -> 0.46 Inexact Rounded
395
+ pwsx2362 power 0.021 0.5 -> 0.14 Inexact Rounded
396
+ pwsx2363 power 21.0E-1 0.5 -> 1.4 Inexact Rounded
397
+ pwsx2364 power 21.00E-2 0.5 -> 0.46 Inexact Rounded
398
+ pwsx2365 power 21E-3 0.5 -> 0.14 Inexact Rounded
399
+ pwsx2366 power 21E+1 0.5 -> 14 Inexact Rounded
400
+ pwsx2367 power 21E+2 0.5 -> 46 Inexact Rounded
401
+ pwsx2368 power 21E+3 0.5 -> 1.4E+2 Inexact Rounded
402
+ pwsx2369 power 0.22 0.5 -> 0.47 Inexact Rounded
403
+ pwsx2370 power 0.022 0.5 -> 0.15 Inexact Rounded
404
+ pwsx2371 power 22.0E-1 0.5 -> 1.5 Inexact Rounded
405
+ pwsx2372 power 22.00E-2 0.5 -> 0.47 Inexact Rounded
406
+ pwsx2373 power 22E-3 0.5 -> 0.15 Inexact Rounded
407
+ pwsx2374 power 22E+1 0.5 -> 15 Inexact Rounded
408
+ pwsx2375 power 22E+2 0.5 -> 47 Inexact Rounded
409
+ pwsx2376 power 22E+3 0.5 -> 1.5E+2 Inexact Rounded
410
+ pwsx2377 power 0.23 0.5 -> 0.48 Inexact Rounded
411
+ pwsx2378 power 0.023 0.5 -> 0.15 Inexact Rounded
412
+ pwsx2379 power 23.0E-1 0.5 -> 1.5 Inexact Rounded
413
+ pwsx2380 power 23.00E-2 0.5 -> 0.48 Inexact Rounded
414
+ pwsx2381 power 23E-3 0.5 -> 0.15 Inexact Rounded
415
+ pwsx2382 power 23E+1 0.5 -> 15 Inexact Rounded
416
+ pwsx2383 power 23E+2 0.5 -> 48 Inexact Rounded
417
+ pwsx2384 power 23E+3 0.5 -> 1.5E+2 Inexact Rounded
418
+ pwsx2385 power 0.24 0.5 -> 0.49 Inexact Rounded
419
+ pwsx2386 power 0.024 0.5 -> 0.15 Inexact Rounded
420
+ pwsx2387 power 24.0E-1 0.5 -> 1.5 Inexact Rounded
421
+ pwsx2388 power 24.00E-2 0.5 -> 0.49 Inexact Rounded
422
+ pwsx2389 power 24E-3 0.5 -> 0.15 Inexact Rounded
423
+ pwsx2390 power 24E+1 0.5 -> 15 Inexact Rounded
424
+ pwsx2391 power 24E+2 0.5 -> 49 Inexact Rounded
425
+ pwsx2392 power 24E+3 0.5 -> 1.5E+2 Inexact Rounded
426
+ pwsx2393 power 0.25 0.5 -> 0.50 Inexact Rounded
427
+ pwsx2394 power 0.025 0.5 -> 0.16 Inexact Rounded
428
+ pwsx2395 power 25.0E-1 0.5 -> 1.6 Inexact Rounded
429
+ pwsx2396 power 25.00E-2 0.5 -> 0.50 Inexact Rounded
430
+ pwsx2397 power 25E-3 0.5 -> 0.16 Inexact Rounded
431
+ pwsx2398 power 25E+1 0.5 -> 16 Inexact Rounded
432
+ pwsx2399 power 25E+2 0.5 -> 50 Inexact Rounded
433
+ pwsx2400 power 25E+3 0.5 -> 1.6E+2 Inexact Rounded
434
+ pwsx2401 power 0.26 0.5 -> 0.51 Inexact Rounded
435
+ pwsx2402 power 0.026 0.5 -> 0.16 Inexact Rounded
436
+ pwsx2403 power 26.0E-1 0.5 -> 1.6 Inexact Rounded
437
+ pwsx2404 power 26.00E-2 0.5 -> 0.51 Inexact Rounded
438
+ pwsx2405 power 26E-3 0.5 -> 0.16 Inexact Rounded
439
+ pwsx2406 power 26E+1 0.5 -> 16 Inexact Rounded
440
+ pwsx2407 power 26E+2 0.5 -> 51 Inexact Rounded
441
+ pwsx2408 power 26E+3 0.5 -> 1.6E+2 Inexact Rounded
442
+ pwsx2409 power 0.27 0.5 -> 0.52 Inexact Rounded
443
+ pwsx2410 power 0.027 0.5 -> 0.16 Inexact Rounded
444
+ pwsx2411 power 27.0E-1 0.5 -> 1.6 Inexact Rounded
445
+ pwsx2412 power 27.00E-2 0.5 -> 0.52 Inexact Rounded
446
+ pwsx2413 power 27E-3 0.5 -> 0.16 Inexact Rounded
447
+ pwsx2414 power 27E+1 0.5 -> 16 Inexact Rounded
448
+ pwsx2415 power 27E+2 0.5 -> 52 Inexact Rounded
449
+ pwsx2416 power 27E+3 0.5 -> 1.6E+2 Inexact Rounded
450
+ pwsx2417 power 0.28 0.5 -> 0.53 Inexact Rounded
451
+ pwsx2418 power 0.028 0.5 -> 0.17 Inexact Rounded
452
+ pwsx2419 power 28.0E-1 0.5 -> 1.7 Inexact Rounded
453
+ pwsx2420 power 28.00E-2 0.5 -> 0.53 Inexact Rounded
454
+ pwsx2421 power 28E-3 0.5 -> 0.17 Inexact Rounded
455
+ pwsx2422 power 28E+1 0.5 -> 17 Inexact Rounded
456
+ pwsx2423 power 28E+2 0.5 -> 53 Inexact Rounded
457
+ pwsx2424 power 28E+3 0.5 -> 1.7E+2 Inexact Rounded
458
+ pwsx2425 power 0.29 0.5 -> 0.54 Inexact Rounded
459
+ pwsx2426 power 0.029 0.5 -> 0.17 Inexact Rounded
460
+ pwsx2427 power 29.0E-1 0.5 -> 1.7 Inexact Rounded
461
+ pwsx2428 power 29.00E-2 0.5 -> 0.54 Inexact Rounded
462
+ pwsx2429 power 29E-3 0.5 -> 0.17 Inexact Rounded
463
+ pwsx2430 power 29E+1 0.5 -> 17 Inexact Rounded
464
+ pwsx2431 power 29E+2 0.5 -> 54 Inexact Rounded
465
+ pwsx2432 power 29E+3 0.5 -> 1.7E+2 Inexact Rounded
466
+ pwsx2433 power 0.30 0.5 -> 0.55 Inexact Rounded
467
+ pwsx2434 power 0.030 0.5 -> 0.17 Inexact Rounded
468
+ pwsx2435 power 30.0E-1 0.5 -> 1.7 Inexact Rounded
469
+ pwsx2436 power 30.00E-2 0.5 -> 0.55 Inexact Rounded
470
+ pwsx2437 power 30E-3 0.5 -> 0.17 Inexact Rounded
471
+ pwsx2438 power 30E+1 0.5 -> 17 Inexact Rounded
472
+ pwsx2439 power 30E+2 0.5 -> 55 Inexact Rounded
473
+ pwsx2440 power 30E+3 0.5 -> 1.7E+2 Inexact Rounded
474
+ pwsx2441 power 0.31 0.5 -> 0.56 Inexact Rounded
475
+ pwsx2442 power 0.031 0.5 -> 0.18 Inexact Rounded
476
+ pwsx2443 power 31.0E-1 0.5 -> 1.8 Inexact Rounded
477
+ pwsx2444 power 31.00E-2 0.5 -> 0.56 Inexact Rounded
478
+ pwsx2445 power 31E-3 0.5 -> 0.18 Inexact Rounded
479
+ pwsx2446 power 31E+1 0.5 -> 18 Inexact Rounded
480
+ pwsx2447 power 31E+2 0.5 -> 56 Inexact Rounded
481
+ pwsx2448 power 31E+3 0.5 -> 1.8E+2 Inexact Rounded
482
+ pwsx2449 power 0.32 0.5 -> 0.57 Inexact Rounded
483
+ pwsx2450 power 0.032 0.5 -> 0.18 Inexact Rounded
484
+ pwsx2451 power 32.0E-1 0.5 -> 1.8 Inexact Rounded
485
+ pwsx2452 power 32.00E-2 0.5 -> 0.57 Inexact Rounded
486
+ pwsx2453 power 32E-3 0.5 -> 0.18 Inexact Rounded
487
+ pwsx2454 power 32E+1 0.5 -> 18 Inexact Rounded
488
+ pwsx2455 power 32E+2 0.5 -> 57 Inexact Rounded
489
+ pwsx2456 power 32E+3 0.5 -> 1.8E+2 Inexact Rounded
490
+ pwsx2457 power 0.33 0.5 -> 0.57 Inexact Rounded
491
+ pwsx2458 power 0.033 0.5 -> 0.18 Inexact Rounded
492
+ pwsx2459 power 33.0E-1 0.5 -> 1.8 Inexact Rounded
493
+ pwsx2460 power 33.00E-2 0.5 -> 0.57 Inexact Rounded
494
+ pwsx2461 power 33E-3 0.5 -> 0.18 Inexact Rounded
495
+ pwsx2462 power 33E+1 0.5 -> 18 Inexact Rounded
496
+ pwsx2463 power 33E+2 0.5 -> 57 Inexact Rounded
497
+ pwsx2464 power 33E+3 0.5 -> 1.8E+2 Inexact Rounded
498
+ pwsx2465 power 0.34 0.5 -> 0.58 Inexact Rounded
499
+ pwsx2466 power 0.034 0.5 -> 0.18 Inexact Rounded
500
+ pwsx2467 power 34.0E-1 0.5 -> 1.8 Inexact Rounded
501
+ pwsx2468 power 34.00E-2 0.5 -> 0.58 Inexact Rounded
502
+ pwsx2469 power 34E-3 0.5 -> 0.18 Inexact Rounded
503
+ pwsx2470 power 34E+1 0.5 -> 18 Inexact Rounded
504
+ pwsx2471 power 34E+2 0.5 -> 58 Inexact Rounded
505
+ pwsx2472 power 34E+3 0.5 -> 1.8E+2 Inexact Rounded
506
+ pwsx2473 power 0.35 0.5 -> 0.59 Inexact Rounded
507
+ pwsx2474 power 0.035 0.5 -> 0.19 Inexact Rounded
508
+ pwsx2475 power 35.0E-1 0.5 -> 1.9 Inexact Rounded
509
+ pwsx2476 power 35.00E-2 0.5 -> 0.59 Inexact Rounded
510
+ pwsx2477 power 35E-3 0.5 -> 0.19 Inexact Rounded
511
+ pwsx2478 power 35E+1 0.5 -> 19 Inexact Rounded
512
+ pwsx2479 power 35E+2 0.5 -> 59 Inexact Rounded
513
+ pwsx2480 power 35E+3 0.5 -> 1.9E+2 Inexact Rounded
514
+ pwsx2481 power 0.36 0.5 -> 0.60 Inexact Rounded
515
+ pwsx2482 power 0.036 0.5 -> 0.19 Inexact Rounded
516
+ pwsx2483 power 36.0E-1 0.5 -> 1.9 Inexact Rounded
517
+ pwsx2484 power 36.00E-2 0.5 -> 0.60 Inexact Rounded
518
+ pwsx2485 power 36E-3 0.5 -> 0.19 Inexact Rounded
519
+ pwsx2486 power 36E+1 0.5 -> 19 Inexact Rounded
520
+ pwsx2487 power 36E+2 0.5 -> 60 Inexact Rounded
521
+ pwsx2488 power 36E+3 0.5 -> 1.9E+2 Inexact Rounded
522
+ pwsx2489 power 0.37 0.5 -> 0.61 Inexact Rounded
523
+ pwsx2490 power 0.037 0.5 -> 0.19 Inexact Rounded
524
+ pwsx2491 power 37.0E-1 0.5 -> 1.9 Inexact Rounded
525
+ pwsx2492 power 37.00E-2 0.5 -> 0.61 Inexact Rounded
526
+ pwsx2493 power 37E-3 0.5 -> 0.19 Inexact Rounded
527
+ pwsx2494 power 37E+1 0.5 -> 19 Inexact Rounded
528
+ pwsx2495 power 37E+2 0.5 -> 61 Inexact Rounded
529
+ pwsx2496 power 37E+3 0.5 -> 1.9E+2 Inexact Rounded
530
+ pwsx2497 power 0.38 0.5 -> 0.62 Inexact Rounded
531
+ pwsx2498 power 0.038 0.5 -> 0.19 Inexact Rounded
532
+ pwsx2499 power 38.0E-1 0.5 -> 1.9 Inexact Rounded
533
+ pwsx2500 power 38.00E-2 0.5 -> 0.62 Inexact Rounded
534
+ pwsx2501 power 38E-3 0.5 -> 0.19 Inexact Rounded
535
+ pwsx2502 power 38E+1 0.5 -> 19 Inexact Rounded
536
+ pwsx2503 power 38E+2 0.5 -> 62 Inexact Rounded
537
+ pwsx2504 power 38E+3 0.5 -> 1.9E+2 Inexact Rounded
538
+ pwsx2505 power 0.39 0.5 -> 0.62 Inexact Rounded
539
+ pwsx2506 power 0.039 0.5 -> 0.20 Inexact Rounded
540
+ pwsx2507 power 39.0E-1 0.5 -> 2.0 Inexact Rounded
541
+ pwsx2508 power 39.00E-2 0.5 -> 0.62 Inexact Rounded
542
+ pwsx2509 power 39E-3 0.5 -> 0.20 Inexact Rounded
543
+ pwsx2510 power 39E+1 0.5 -> 20 Inexact Rounded
544
+ pwsx2511 power 39E+2 0.5 -> 62 Inexact Rounded
545
+ pwsx2512 power 39E+3 0.5 -> 2.0E+2 Inexact Rounded
546
+ pwsx2513 power 0.40 0.5 -> 0.63 Inexact Rounded
547
+ pwsx2514 power 0.040 0.5 -> 0.20 Inexact Rounded
548
+ pwsx2515 power 40.0E-1 0.5 -> 2.0 Inexact Rounded
549
+ pwsx2516 power 40.00E-2 0.5 -> 0.63 Inexact Rounded
550
+ pwsx2517 power 40E-3 0.5 -> 0.20 Inexact Rounded
551
+ pwsx2518 power 40E+1 0.5 -> 20 Inexact Rounded
552
+ pwsx2519 power 40E+2 0.5 -> 63 Inexact Rounded
553
+ pwsx2520 power 40E+3 0.5 -> 2.0E+2 Inexact Rounded
554
+ pwsx2521 power 0.41 0.5 -> 0.64 Inexact Rounded
555
+ pwsx2522 power 0.041 0.5 -> 0.20 Inexact Rounded
556
+ pwsx2523 power 41.0E-1 0.5 -> 2.0 Inexact Rounded
557
+ pwsx2524 power 41.00E-2 0.5 -> 0.64 Inexact Rounded
558
+ pwsx2525 power 41E-3 0.5 -> 0.20 Inexact Rounded
559
+ pwsx2526 power 41E+1 0.5 -> 20 Inexact Rounded
560
+ pwsx2527 power 41E+2 0.5 -> 64 Inexact Rounded
561
+ pwsx2528 power 41E+3 0.5 -> 2.0E+2 Inexact Rounded
562
+ pwsx2529 power 0.42 0.5 -> 0.65 Inexact Rounded
563
+ pwsx2530 power 0.042 0.5 -> 0.20 Inexact Rounded
564
+ pwsx2531 power 42.0E-1 0.5 -> 2.0 Inexact Rounded
565
+ pwsx2532 power 42.00E-2 0.5 -> 0.65 Inexact Rounded
566
+ pwsx2533 power 42E-3 0.5 -> 0.20 Inexact Rounded
567
+ pwsx2534 power 42E+1 0.5 -> 20 Inexact Rounded
568
+ pwsx2535 power 42E+2 0.5 -> 65 Inexact Rounded
569
+ pwsx2536 power 42E+3 0.5 -> 2.0E+2 Inexact Rounded
570
+ pwsx2537 power 0.43 0.5 -> 0.66 Inexact Rounded
571
+ pwsx2538 power 0.043 0.5 -> 0.21 Inexact Rounded
572
+ pwsx2539 power 43.0E-1 0.5 -> 2.1 Inexact Rounded
573
+ pwsx2540 power 43.00E-2 0.5 -> 0.66 Inexact Rounded
574
+ pwsx2541 power 43E-3 0.5 -> 0.21 Inexact Rounded
575
+ pwsx2542 power 43E+1 0.5 -> 21 Inexact Rounded
576
+ pwsx2543 power 43E+2 0.5 -> 66 Inexact Rounded
577
+ pwsx2544 power 43E+3 0.5 -> 2.1E+2 Inexact Rounded
578
+ pwsx2545 power 0.44 0.5 -> 0.66 Inexact Rounded
579
+ pwsx2546 power 0.044 0.5 -> 0.21 Inexact Rounded
580
+ pwsx2547 power 44.0E-1 0.5 -> 2.1 Inexact Rounded
581
+ pwsx2548 power 44.00E-2 0.5 -> 0.66 Inexact Rounded
582
+ pwsx2549 power 44E-3 0.5 -> 0.21 Inexact Rounded
583
+ pwsx2550 power 44E+1 0.5 -> 21 Inexact Rounded
584
+ pwsx2551 power 44E+2 0.5 -> 66 Inexact Rounded
585
+ pwsx2552 power 44E+3 0.5 -> 2.1E+2 Inexact Rounded
586
+ pwsx2553 power 0.45 0.5 -> 0.67 Inexact Rounded
587
+ pwsx2554 power 0.045 0.5 -> 0.21 Inexact Rounded
588
+ pwsx2555 power 45.0E-1 0.5 -> 2.1 Inexact Rounded
589
+ pwsx2556 power 45.00E-2 0.5 -> 0.67 Inexact Rounded
590
+ pwsx2557 power 45E-3 0.5 -> 0.21 Inexact Rounded
591
+ pwsx2558 power 45E+1 0.5 -> 21 Inexact Rounded
592
+ pwsx2559 power 45E+2 0.5 -> 67 Inexact Rounded
593
+ pwsx2560 power 45E+3 0.5 -> 2.1E+2 Inexact Rounded
594
+ pwsx2561 power 0.46 0.5 -> 0.68 Inexact Rounded
595
+ pwsx2562 power 0.046 0.5 -> 0.21 Inexact Rounded
596
+ pwsx2563 power 46.0E-1 0.5 -> 2.1 Inexact Rounded
597
+ pwsx2564 power 46.00E-2 0.5 -> 0.68 Inexact Rounded
598
+ pwsx2565 power 46E-3 0.5 -> 0.21 Inexact Rounded
599
+ pwsx2566 power 46E+1 0.5 -> 21 Inexact Rounded
600
+ pwsx2567 power 46E+2 0.5 -> 68 Inexact Rounded
601
+ pwsx2568 power 46E+3 0.5 -> 2.1E+2 Inexact Rounded
602
+ pwsx2569 power 0.47 0.5 -> 0.69 Inexact Rounded
603
+ pwsx2570 power 0.047 0.5 -> 0.22 Inexact Rounded
604
+ pwsx2571 power 47.0E-1 0.5 -> 2.2 Inexact Rounded
605
+ pwsx2572 power 47.00E-2 0.5 -> 0.69 Inexact Rounded
606
+ pwsx2573 power 47E-3 0.5 -> 0.22 Inexact Rounded
607
+ pwsx2574 power 47E+1 0.5 -> 22 Inexact Rounded
608
+ pwsx2575 power 47E+2 0.5 -> 69 Inexact Rounded
609
+ pwsx2576 power 47E+3 0.5 -> 2.2E+2 Inexact Rounded
610
+ pwsx2577 power 0.48 0.5 -> 0.69 Inexact Rounded
611
+ pwsx2578 power 0.048 0.5 -> 0.22 Inexact Rounded
612
+ pwsx2579 power 48.0E-1 0.5 -> 2.2 Inexact Rounded
613
+ pwsx2580 power 48.00E-2 0.5 -> 0.69 Inexact Rounded
614
+ pwsx2581 power 48E-3 0.5 -> 0.22 Inexact Rounded
615
+ pwsx2582 power 48E+1 0.5 -> 22 Inexact Rounded
616
+ pwsx2583 power 48E+2 0.5 -> 69 Inexact Rounded
617
+ pwsx2584 power 48E+3 0.5 -> 2.2E+2 Inexact Rounded
618
+ pwsx2585 power 0.49 0.5 -> 0.70 Inexact Rounded
619
+ pwsx2586 power 0.049 0.5 -> 0.22 Inexact Rounded
620
+ pwsx2587 power 49.0E-1 0.5 -> 2.2 Inexact Rounded
621
+ pwsx2588 power 49.00E-2 0.5 -> 0.70 Inexact Rounded
622
+ pwsx2589 power 49E-3 0.5 -> 0.22 Inexact Rounded
623
+ pwsx2590 power 49E+1 0.5 -> 22 Inexact Rounded
624
+ pwsx2591 power 49E+2 0.5 -> 70 Inexact Rounded
625
+ pwsx2592 power 49E+3 0.5 -> 2.2E+2 Inexact Rounded
626
+ pwsx2593 power 0.50 0.5 -> 0.71 Inexact Rounded
627
+ pwsx2594 power 0.050 0.5 -> 0.22 Inexact Rounded
628
+ pwsx2595 power 50.0E-1 0.5 -> 2.2 Inexact Rounded
629
+ pwsx2596 power 50.00E-2 0.5 -> 0.71 Inexact Rounded
630
+ pwsx2597 power 50E-3 0.5 -> 0.22 Inexact Rounded
631
+ pwsx2598 power 50E+1 0.5 -> 22 Inexact Rounded
632
+ pwsx2599 power 50E+2 0.5 -> 71 Inexact Rounded
633
+ pwsx2600 power 50E+3 0.5 -> 2.2E+2 Inexact Rounded
634
+ pwsx2601 power 0.51 0.5 -> 0.71 Inexact Rounded
635
+ pwsx2602 power 0.051 0.5 -> 0.23 Inexact Rounded
636
+ pwsx2603 power 51.0E-1 0.5 -> 2.3 Inexact Rounded
637
+ pwsx2604 power 51.00E-2 0.5 -> 0.71 Inexact Rounded
638
+ pwsx2605 power 51E-3 0.5 -> 0.23 Inexact Rounded
639
+ pwsx2606 power 51E+1 0.5 -> 23 Inexact Rounded
640
+ pwsx2607 power 51E+2 0.5 -> 71 Inexact Rounded
641
+ pwsx2608 power 51E+3 0.5 -> 2.3E+2 Inexact Rounded
642
+ pwsx2609 power 0.52 0.5 -> 0.72 Inexact Rounded
643
+ pwsx2610 power 0.052 0.5 -> 0.23 Inexact Rounded
644
+ pwsx2611 power 52.0E-1 0.5 -> 2.3 Inexact Rounded
645
+ pwsx2612 power 52.00E-2 0.5 -> 0.72 Inexact Rounded
646
+ pwsx2613 power 52E-3 0.5 -> 0.23 Inexact Rounded
647
+ pwsx2614 power 52E+1 0.5 -> 23 Inexact Rounded
648
+ pwsx2615 power 52E+2 0.5 -> 72 Inexact Rounded
649
+ pwsx2616 power 52E+3 0.5 -> 2.3E+2 Inexact Rounded
650
+ pwsx2617 power 0.53 0.5 -> 0.73 Inexact Rounded
651
+ pwsx2618 power 0.053 0.5 -> 0.23 Inexact Rounded
652
+ pwsx2619 power 53.0E-1 0.5 -> 2.3 Inexact Rounded
653
+ pwsx2620 power 53.00E-2 0.5 -> 0.73 Inexact Rounded
654
+ pwsx2621 power 53E-3 0.5 -> 0.23 Inexact Rounded
655
+ pwsx2622 power 53E+1 0.5 -> 23 Inexact Rounded
656
+ pwsx2623 power 53E+2 0.5 -> 73 Inexact Rounded
657
+ pwsx2624 power 53E+3 0.5 -> 2.3E+2 Inexact Rounded
658
+ pwsx2625 power 0.54 0.5 -> 0.73 Inexact Rounded
659
+ pwsx2626 power 0.054 0.5 -> 0.23 Inexact Rounded
660
+ pwsx2627 power 54.0E-1 0.5 -> 2.3 Inexact Rounded
661
+ pwsx2628 power 54.00E-2 0.5 -> 0.73 Inexact Rounded
662
+ pwsx2629 power 54E-3 0.5 -> 0.23 Inexact Rounded
663
+ pwsx2630 power 54E+1 0.5 -> 23 Inexact Rounded
664
+ pwsx2631 power 54E+2 0.5 -> 73 Inexact Rounded
665
+ pwsx2632 power 54E+3 0.5 -> 2.3E+2 Inexact Rounded
666
+ pwsx2633 power 0.55 0.5 -> 0.74 Inexact Rounded
667
+ pwsx2634 power 0.055 0.5 -> 0.23 Inexact Rounded
668
+ pwsx2635 power 55.0E-1 0.5 -> 2.3 Inexact Rounded
669
+ pwsx2636 power 55.00E-2 0.5 -> 0.74 Inexact Rounded
670
+ pwsx2637 power 55E-3 0.5 -> 0.23 Inexact Rounded
671
+ pwsx2638 power 55E+1 0.5 -> 23 Inexact Rounded
672
+ pwsx2639 power 55E+2 0.5 -> 74 Inexact Rounded
673
+ pwsx2640 power 55E+3 0.5 -> 2.3E+2 Inexact Rounded
674
+ pwsx2641 power 0.56 0.5 -> 0.75 Inexact Rounded
675
+ pwsx2642 power 0.056 0.5 -> 0.24 Inexact Rounded
676
+ pwsx2643 power 56.0E-1 0.5 -> 2.4 Inexact Rounded
677
+ pwsx2644 power 56.00E-2 0.5 -> 0.75 Inexact Rounded
678
+ pwsx2645 power 56E-3 0.5 -> 0.24 Inexact Rounded
679
+ pwsx2646 power 56E+1 0.5 -> 24 Inexact Rounded
680
+ pwsx2647 power 56E+2 0.5 -> 75 Inexact Rounded
681
+ pwsx2648 power 56E+3 0.5 -> 2.4E+2 Inexact Rounded
682
+ pwsx2649 power 0.57 0.5 -> 0.75 Inexact Rounded
683
+ pwsx2650 power 0.057 0.5 -> 0.24 Inexact Rounded
684
+ pwsx2651 power 57.0E-1 0.5 -> 2.4 Inexact Rounded
685
+ pwsx2652 power 57.00E-2 0.5 -> 0.75 Inexact Rounded
686
+ pwsx2653 power 57E-3 0.5 -> 0.24 Inexact Rounded
687
+ pwsx2654 power 57E+1 0.5 -> 24 Inexact Rounded
688
+ pwsx2655 power 57E+2 0.5 -> 75 Inexact Rounded
689
+ pwsx2656 power 57E+3 0.5 -> 2.4E+2 Inexact Rounded
690
+ pwsx2657 power 0.58 0.5 -> 0.76 Inexact Rounded
691
+ pwsx2658 power 0.058 0.5 -> 0.24 Inexact Rounded
692
+ pwsx2659 power 58.0E-1 0.5 -> 2.4 Inexact Rounded
693
+ pwsx2660 power 58.00E-2 0.5 -> 0.76 Inexact Rounded
694
+ pwsx2661 power 58E-3 0.5 -> 0.24 Inexact Rounded
695
+ pwsx2662 power 58E+1 0.5 -> 24 Inexact Rounded
696
+ pwsx2663 power 58E+2 0.5 -> 76 Inexact Rounded
697
+ pwsx2664 power 58E+3 0.5 -> 2.4E+2 Inexact Rounded
698
+ pwsx2665 power 0.59 0.5 -> 0.77 Inexact Rounded
699
+ pwsx2666 power 0.059 0.5 -> 0.24 Inexact Rounded
700
+ pwsx2667 power 59.0E-1 0.5 -> 2.4 Inexact Rounded
701
+ pwsx2668 power 59.00E-2 0.5 -> 0.77 Inexact Rounded
702
+ pwsx2669 power 59E-3 0.5 -> 0.24 Inexact Rounded
703
+ pwsx2670 power 59E+1 0.5 -> 24 Inexact Rounded
704
+ pwsx2671 power 59E+2 0.5 -> 77 Inexact Rounded
705
+ pwsx2672 power 59E+3 0.5 -> 2.4E+2 Inexact Rounded
706
+ pwsx2673 power 0.60 0.5 -> 0.77 Inexact Rounded
707
+ pwsx2674 power 0.060 0.5 -> 0.24 Inexact Rounded
708
+ pwsx2675 power 60.0E-1 0.5 -> 2.4 Inexact Rounded
709
+ pwsx2676 power 60.00E-2 0.5 -> 0.77 Inexact Rounded
710
+ pwsx2677 power 60E-3 0.5 -> 0.24 Inexact Rounded
711
+ pwsx2678 power 60E+1 0.5 -> 24 Inexact Rounded
712
+ pwsx2679 power 60E+2 0.5 -> 77 Inexact Rounded
713
+ pwsx2680 power 60E+3 0.5 -> 2.4E+2 Inexact Rounded
714
+ pwsx2681 power 0.61 0.5 -> 0.78 Inexact Rounded
715
+ pwsx2682 power 0.061 0.5 -> 0.25 Inexact Rounded
716
+ pwsx2683 power 61.0E-1 0.5 -> 2.5 Inexact Rounded
717
+ pwsx2684 power 61.00E-2 0.5 -> 0.78 Inexact Rounded
718
+ pwsx2685 power 61E-3 0.5 -> 0.25 Inexact Rounded
719
+ pwsx2686 power 61E+1 0.5 -> 25 Inexact Rounded
720
+ pwsx2687 power 61E+2 0.5 -> 78 Inexact Rounded
721
+ pwsx2688 power 61E+3 0.5 -> 2.5E+2 Inexact Rounded
722
+ pwsx2689 power 0.62 0.5 -> 0.79 Inexact Rounded
723
+ pwsx2690 power 0.062 0.5 -> 0.25 Inexact Rounded
724
+ pwsx2691 power 62.0E-1 0.5 -> 2.5 Inexact Rounded
725
+ pwsx2692 power 62.00E-2 0.5 -> 0.79 Inexact Rounded
726
+ pwsx2693 power 62E-3 0.5 -> 0.25 Inexact Rounded
727
+ pwsx2694 power 62E+1 0.5 -> 25 Inexact Rounded
728
+ pwsx2695 power 62E+2 0.5 -> 79 Inexact Rounded
729
+ pwsx2696 power 62E+3 0.5 -> 2.5E+2 Inexact Rounded
730
+ pwsx2697 power 0.63 0.5 -> 0.79 Inexact Rounded
731
+ pwsx2698 power 0.063 0.5 -> 0.25 Inexact Rounded
732
+ pwsx2699 power 63.0E-1 0.5 -> 2.5 Inexact Rounded
733
+ pwsx2700 power 63.00E-2 0.5 -> 0.79 Inexact Rounded
734
+ pwsx2701 power 63E-3 0.5 -> 0.25 Inexact Rounded
735
+ pwsx2702 power 63E+1 0.5 -> 25 Inexact Rounded
736
+ pwsx2703 power 63E+2 0.5 -> 79 Inexact Rounded
737
+ pwsx2704 power 63E+3 0.5 -> 2.5E+2 Inexact Rounded
738
+ pwsx2705 power 0.64 0.5 -> 0.80 Inexact Rounded
739
+ pwsx2706 power 0.064 0.5 -> 0.25 Inexact Rounded
740
+ pwsx2707 power 64.0E-1 0.5 -> 2.5 Inexact Rounded
741
+ pwsx2708 power 64.00E-2 0.5 -> 0.80 Inexact Rounded
742
+ pwsx2709 power 64E-3 0.5 -> 0.25 Inexact Rounded
743
+ pwsx2710 power 64E+1 0.5 -> 25 Inexact Rounded
744
+ pwsx2711 power 64E+2 0.5 -> 80 Inexact Rounded
745
+ pwsx2712 power 64E+3 0.5 -> 2.5E+2 Inexact Rounded
746
+ pwsx2713 power 0.65 0.5 -> 0.81 Inexact Rounded
747
+ pwsx2714 power 0.065 0.5 -> 0.25 Inexact Rounded
748
+ pwsx2715 power 65.0E-1 0.5 -> 2.5 Inexact Rounded
749
+ pwsx2716 power 65.00E-2 0.5 -> 0.81 Inexact Rounded
750
+ pwsx2717 power 65E-3 0.5 -> 0.25 Inexact Rounded
751
+ pwsx2718 power 65E+1 0.5 -> 25 Inexact Rounded
752
+ pwsx2719 power 65E+2 0.5 -> 81 Inexact Rounded
753
+ pwsx2720 power 65E+3 0.5 -> 2.5E+2 Inexact Rounded
754
+ pwsx2721 power 0.66 0.5 -> 0.81 Inexact Rounded
755
+ pwsx2722 power 0.066 0.5 -> 0.26 Inexact Rounded
756
+ pwsx2723 power 66.0E-1 0.5 -> 2.6 Inexact Rounded
757
+ pwsx2724 power 66.00E-2 0.5 -> 0.81 Inexact Rounded
758
+ pwsx2725 power 66E-3 0.5 -> 0.26 Inexact Rounded
759
+ pwsx2726 power 66E+1 0.5 -> 26 Inexact Rounded
760
+ pwsx2727 power 66E+2 0.5 -> 81 Inexact Rounded
761
+ pwsx2728 power 66E+3 0.5 -> 2.6E+2 Inexact Rounded
762
+ pwsx2729 power 0.67 0.5 -> 0.82 Inexact Rounded
763
+ pwsx2730 power 0.067 0.5 -> 0.26 Inexact Rounded
764
+ pwsx2731 power 67.0E-1 0.5 -> 2.6 Inexact Rounded
765
+ pwsx2732 power 67.00E-2 0.5 -> 0.82 Inexact Rounded
766
+ pwsx2733 power 67E-3 0.5 -> 0.26 Inexact Rounded
767
+ pwsx2734 power 67E+1 0.5 -> 26 Inexact Rounded
768
+ pwsx2735 power 67E+2 0.5 -> 82 Inexact Rounded
769
+ pwsx2736 power 67E+3 0.5 -> 2.6E+2 Inexact Rounded
770
+ pwsx2737 power 0.68 0.5 -> 0.82 Inexact Rounded
771
+ pwsx2738 power 0.068 0.5 -> 0.26 Inexact Rounded
772
+ pwsx2739 power 68.0E-1 0.5 -> 2.6 Inexact Rounded
773
+ pwsx2740 power 68.00E-2 0.5 -> 0.82 Inexact Rounded
774
+ pwsx2741 power 68E-3 0.5 -> 0.26 Inexact Rounded
775
+ pwsx2742 power 68E+1 0.5 -> 26 Inexact Rounded
776
+ pwsx2743 power 68E+2 0.5 -> 82 Inexact Rounded
777
+ pwsx2744 power 68E+3 0.5 -> 2.6E+2 Inexact Rounded
778
+ pwsx2745 power 0.69 0.5 -> 0.83 Inexact Rounded
779
+ pwsx2746 power 0.069 0.5 -> 0.26 Inexact Rounded
780
+ pwsx2747 power 69.0E-1 0.5 -> 2.6 Inexact Rounded
781
+ pwsx2748 power 69.00E-2 0.5 -> 0.83 Inexact Rounded
782
+ pwsx2749 power 69E-3 0.5 -> 0.26 Inexact Rounded
783
+ pwsx2750 power 69E+1 0.5 -> 26 Inexact Rounded
784
+ pwsx2751 power 69E+2 0.5 -> 83 Inexact Rounded
785
+ pwsx2752 power 69E+3 0.5 -> 2.6E+2 Inexact Rounded
786
+ pwsx2753 power 0.70 0.5 -> 0.84 Inexact Rounded
787
+ pwsx2754 power 0.070 0.5 -> 0.26 Inexact Rounded
788
+ pwsx2755 power 70.0E-1 0.5 -> 2.6 Inexact Rounded
789
+ pwsx2756 power 70.00E-2 0.5 -> 0.84 Inexact Rounded
790
+ pwsx2757 power 70E-3 0.5 -> 0.26 Inexact Rounded
791
+ pwsx2758 power 70E+1 0.5 -> 26 Inexact Rounded
792
+ pwsx2759 power 70E+2 0.5 -> 84 Inexact Rounded
793
+ pwsx2760 power 70E+3 0.5 -> 2.6E+2 Inexact Rounded
794
+ pwsx2761 power 0.71 0.5 -> 0.84 Inexact Rounded
795
+ pwsx2762 power 0.071 0.5 -> 0.27 Inexact Rounded
796
+ pwsx2763 power 71.0E-1 0.5 -> 2.7 Inexact Rounded
797
+ pwsx2764 power 71.00E-2 0.5 -> 0.84 Inexact Rounded
798
+ pwsx2765 power 71E-3 0.5 -> 0.27 Inexact Rounded
799
+ pwsx2766 power 71E+1 0.5 -> 27 Inexact Rounded
800
+ pwsx2767 power 71E+2 0.5 -> 84 Inexact Rounded
801
+ pwsx2768 power 71E+3 0.5 -> 2.7E+2 Inexact Rounded
802
+ pwsx2769 power 0.72 0.5 -> 0.85 Inexact Rounded
803
+ pwsx2770 power 0.072 0.5 -> 0.27 Inexact Rounded
804
+ pwsx2771 power 72.0E-1 0.5 -> 2.7 Inexact Rounded
805
+ pwsx2772 power 72.00E-2 0.5 -> 0.85 Inexact Rounded
806
+ pwsx2773 power 72E-3 0.5 -> 0.27 Inexact Rounded
807
+ pwsx2774 power 72E+1 0.5 -> 27 Inexact Rounded
808
+ pwsx2775 power 72E+2 0.5 -> 85 Inexact Rounded
809
+ pwsx2776 power 72E+3 0.5 -> 2.7E+2 Inexact Rounded
810
+ pwsx2777 power 0.73 0.5 -> 0.85 Inexact Rounded
811
+ pwsx2778 power 0.073 0.5 -> 0.27 Inexact Rounded
812
+ pwsx2779 power 73.0E-1 0.5 -> 2.7 Inexact Rounded
813
+ pwsx2780 power 73.00E-2 0.5 -> 0.85 Inexact Rounded
814
+ pwsx2781 power 73E-3 0.5 -> 0.27 Inexact Rounded
815
+ pwsx2782 power 73E+1 0.5 -> 27 Inexact Rounded
816
+ pwsx2783 power 73E+2 0.5 -> 85 Inexact Rounded
817
+ pwsx2784 power 73E+3 0.5 -> 2.7E+2 Inexact Rounded
818
+ pwsx2785 power 0.74 0.5 -> 0.86 Inexact Rounded
819
+ pwsx2786 power 0.074 0.5 -> 0.27 Inexact Rounded
820
+ pwsx2787 power 74.0E-1 0.5 -> 2.7 Inexact Rounded
821
+ pwsx2788 power 74.00E-2 0.5 -> 0.86 Inexact Rounded
822
+ pwsx2789 power 74E-3 0.5 -> 0.27 Inexact Rounded
823
+ pwsx2790 power 74E+1 0.5 -> 27 Inexact Rounded
824
+ pwsx2791 power 74E+2 0.5 -> 86 Inexact Rounded
825
+ pwsx2792 power 74E+3 0.5 -> 2.7E+2 Inexact Rounded
826
+ pwsx2793 power 0.75 0.5 -> 0.87 Inexact Rounded
827
+ pwsx2794 power 0.075 0.5 -> 0.27 Inexact Rounded
828
+ pwsx2795 power 75.0E-1 0.5 -> 2.7 Inexact Rounded
829
+ pwsx2796 power 75.00E-2 0.5 -> 0.87 Inexact Rounded
830
+ pwsx2797 power 75E-3 0.5 -> 0.27 Inexact Rounded
831
+ pwsx2798 power 75E+1 0.5 -> 27 Inexact Rounded
832
+ pwsx2799 power 75E+2 0.5 -> 87 Inexact Rounded
833
+ pwsx2800 power 75E+3 0.5 -> 2.7E+2 Inexact Rounded
834
+ pwsx2801 power 0.76 0.5 -> 0.87 Inexact Rounded
835
+ pwsx2802 power 0.076 0.5 -> 0.28 Inexact Rounded
836
+ pwsx2803 power 76.0E-1 0.5 -> 2.8 Inexact Rounded
837
+ pwsx2804 power 76.00E-2 0.5 -> 0.87 Inexact Rounded
838
+ pwsx2805 power 76E-3 0.5 -> 0.28 Inexact Rounded
839
+ pwsx2806 power 76E+1 0.5 -> 28 Inexact Rounded
840
+ pwsx2807 power 76E+2 0.5 -> 87 Inexact Rounded
841
+ pwsx2808 power 76E+3 0.5 -> 2.8E+2 Inexact Rounded
842
+ pwsx2809 power 0.77 0.5 -> 0.88 Inexact Rounded
843
+ pwsx2810 power 0.077 0.5 -> 0.28 Inexact Rounded
844
+ pwsx2811 power 77.0E-1 0.5 -> 2.8 Inexact Rounded
845
+ pwsx2812 power 77.00E-2 0.5 -> 0.88 Inexact Rounded
846
+ pwsx2813 power 77E-3 0.5 -> 0.28 Inexact Rounded
847
+ pwsx2814 power 77E+1 0.5 -> 28 Inexact Rounded
848
+ pwsx2815 power 77E+2 0.5 -> 88 Inexact Rounded
849
+ pwsx2816 power 77E+3 0.5 -> 2.8E+2 Inexact Rounded
850
+ pwsx2817 power 0.78 0.5 -> 0.88 Inexact Rounded
851
+ pwsx2818 power 0.078 0.5 -> 0.28 Inexact Rounded
852
+ pwsx2819 power 78.0E-1 0.5 -> 2.8 Inexact Rounded
853
+ pwsx2820 power 78.00E-2 0.5 -> 0.88 Inexact Rounded
854
+ pwsx2821 power 78E-3 0.5 -> 0.28 Inexact Rounded
855
+ pwsx2822 power 78E+1 0.5 -> 28 Inexact Rounded
856
+ pwsx2823 power 78E+2 0.5 -> 88 Inexact Rounded
857
+ pwsx2824 power 78E+3 0.5 -> 2.8E+2 Inexact Rounded
858
+ pwsx2825 power 0.79 0.5 -> 0.89 Inexact Rounded
859
+ pwsx2826 power 0.079 0.5 -> 0.28 Inexact Rounded
860
+ pwsx2827 power 79.0E-1 0.5 -> 2.8 Inexact Rounded
861
+ pwsx2828 power 79.00E-2 0.5 -> 0.89 Inexact Rounded
862
+ pwsx2829 power 79E-3 0.5 -> 0.28 Inexact Rounded
863
+ pwsx2830 power 79E+1 0.5 -> 28 Inexact Rounded
864
+ pwsx2831 power 79E+2 0.5 -> 89 Inexact Rounded
865
+ pwsx2832 power 79E+3 0.5 -> 2.8E+2 Inexact Rounded
866
+ pwsx2833 power 0.80 0.5 -> 0.89 Inexact Rounded
867
+ pwsx2834 power 0.080 0.5 -> 0.28 Inexact Rounded
868
+ pwsx2835 power 80.0E-1 0.5 -> 2.8 Inexact Rounded
869
+ pwsx2836 power 80.00E-2 0.5 -> 0.89 Inexact Rounded
870
+ pwsx2837 power 80E-3 0.5 -> 0.28 Inexact Rounded
871
+ pwsx2838 power 80E+1 0.5 -> 28 Inexact Rounded
872
+ pwsx2839 power 80E+2 0.5 -> 89 Inexact Rounded
873
+ pwsx2840 power 80E+3 0.5 -> 2.8E+2 Inexact Rounded
874
+ pwsx2841 power 0.81 0.5 -> 0.90 Inexact Rounded
875
+ pwsx2842 power 0.081 0.5 -> 0.28 Inexact Rounded
876
+ pwsx2843 power 81.0E-1 0.5 -> 2.8 Inexact Rounded
877
+ pwsx2844 power 81.00E-2 0.5 -> 0.90 Inexact Rounded
878
+ pwsx2845 power 81E-3 0.5 -> 0.28 Inexact Rounded
879
+ pwsx2846 power 81E+1 0.5 -> 28 Inexact Rounded
880
+ pwsx2847 power 81E+2 0.5 -> 90 Inexact Rounded
881
+ pwsx2848 power 81E+3 0.5 -> 2.8E+2 Inexact Rounded
882
+ pwsx2849 power 0.82 0.5 -> 0.91 Inexact Rounded
883
+ pwsx2850 power 0.082 0.5 -> 0.29 Inexact Rounded
884
+ pwsx2851 power 82.0E-1 0.5 -> 2.9 Inexact Rounded
885
+ pwsx2852 power 82.00E-2 0.5 -> 0.91 Inexact Rounded
886
+ pwsx2853 power 82E-3 0.5 -> 0.29 Inexact Rounded
887
+ pwsx2854 power 82E+1 0.5 -> 29 Inexact Rounded
888
+ pwsx2855 power 82E+2 0.5 -> 91 Inexact Rounded
889
+ pwsx2856 power 82E+3 0.5 -> 2.9E+2 Inexact Rounded
890
+ pwsx2857 power 0.83 0.5 -> 0.91 Inexact Rounded
891
+ pwsx2858 power 0.083 0.5 -> 0.29 Inexact Rounded
892
+ pwsx2859 power 83.0E-1 0.5 -> 2.9 Inexact Rounded
893
+ pwsx2860 power 83.00E-2 0.5 -> 0.91 Inexact Rounded
894
+ pwsx2861 power 83E-3 0.5 -> 0.29 Inexact Rounded
895
+ pwsx2862 power 83E+1 0.5 -> 29 Inexact Rounded
896
+ pwsx2863 power 83E+2 0.5 -> 91 Inexact Rounded
897
+ pwsx2864 power 83E+3 0.5 -> 2.9E+2 Inexact Rounded
898
+ pwsx2865 power 0.84 0.5 -> 0.92 Inexact Rounded
899
+ pwsx2866 power 0.084 0.5 -> 0.29 Inexact Rounded
900
+ pwsx2867 power 84.0E-1 0.5 -> 2.9 Inexact Rounded
901
+ pwsx2868 power 84.00E-2 0.5 -> 0.92 Inexact Rounded
902
+ pwsx2869 power 84E-3 0.5 -> 0.29 Inexact Rounded
903
+ pwsx2870 power 84E+1 0.5 -> 29 Inexact Rounded
904
+ pwsx2871 power 84E+2 0.5 -> 92 Inexact Rounded
905
+ pwsx2872 power 84E+3 0.5 -> 2.9E+2 Inexact Rounded
906
+ pwsx2873 power 0.85 0.5 -> 0.92 Inexact Rounded
907
+ pwsx2874 power 0.085 0.5 -> 0.29 Inexact Rounded
908
+ pwsx2875 power 85.0E-1 0.5 -> 2.9 Inexact Rounded
909
+ pwsx2876 power 85.00E-2 0.5 -> 0.92 Inexact Rounded
910
+ pwsx2877 power 85E-3 0.5 -> 0.29 Inexact Rounded
911
+ pwsx2878 power 85E+1 0.5 -> 29 Inexact Rounded
912
+ pwsx2879 power 85E+2 0.5 -> 92 Inexact Rounded
913
+ pwsx2880 power 85E+3 0.5 -> 2.9E+2 Inexact Rounded
914
+ pwsx2881 power 0.86 0.5 -> 0.93 Inexact Rounded
915
+ pwsx2882 power 0.086 0.5 -> 0.29 Inexact Rounded
916
+ pwsx2883 power 86.0E-1 0.5 -> 2.9 Inexact Rounded
917
+ pwsx2884 power 86.00E-2 0.5 -> 0.93 Inexact Rounded
918
+ pwsx2885 power 86E-3 0.5 -> 0.29 Inexact Rounded
919
+ pwsx2886 power 86E+1 0.5 -> 29 Inexact Rounded
920
+ pwsx2887 power 86E+2 0.5 -> 93 Inexact Rounded
921
+ pwsx2888 power 86E+3 0.5 -> 2.9E+2 Inexact Rounded
922
+ pwsx2889 power 0.87 0.5 -> 0.93 Inexact Rounded
923
+ pwsx2890 power 0.087 0.5 -> 0.29 Inexact Rounded
924
+ pwsx2891 power 87.0E-1 0.5 -> 2.9 Inexact Rounded
925
+ pwsx2892 power 87.00E-2 0.5 -> 0.93 Inexact Rounded
926
+ pwsx2893 power 87E-3 0.5 -> 0.29 Inexact Rounded
927
+ pwsx2894 power 87E+1 0.5 -> 29 Inexact Rounded
928
+ pwsx2895 power 87E+2 0.5 -> 93 Inexact Rounded
929
+ pwsx2896 power 87E+3 0.5 -> 2.9E+2 Inexact Rounded
930
+ pwsx2897 power 0.88 0.5 -> 0.94 Inexact Rounded
931
+ pwsx2898 power 0.088 0.5 -> 0.30 Inexact Rounded
932
+ pwsx2899 power 88.0E-1 0.5 -> 3.0 Inexact Rounded
933
+ pwsx2900 power 88.00E-2 0.5 -> 0.94 Inexact Rounded
934
+ pwsx2901 power 88E-3 0.5 -> 0.30 Inexact Rounded
935
+ pwsx2902 power 88E+1 0.5 -> 30 Inexact Rounded
936
+ pwsx2903 power 88E+2 0.5 -> 94 Inexact Rounded
937
+ pwsx2904 power 88E+3 0.5 -> 3.0E+2 Inexact Rounded
938
+ pwsx2905 power 0.89 0.5 -> 0.94 Inexact Rounded
939
+ pwsx2906 power 0.089 0.5 -> 0.30 Inexact Rounded
940
+ pwsx2907 power 89.0E-1 0.5 -> 3.0 Inexact Rounded
941
+ pwsx2908 power 89.00E-2 0.5 -> 0.94 Inexact Rounded
942
+ pwsx2909 power 89E-3 0.5 -> 0.30 Inexact Rounded
943
+ pwsx2910 power 89E+1 0.5 -> 30 Inexact Rounded
944
+ pwsx2911 power 89E+2 0.5 -> 94 Inexact Rounded
945
+ pwsx2912 power 89E+3 0.5 -> 3.0E+2 Inexact Rounded
946
+ pwsx2913 power 0.90 0.5 -> 0.95 Inexact Rounded
947
+ pwsx2914 power 0.090 0.5 -> 0.30 Inexact Rounded
948
+ pwsx2915 power 90.0E-1 0.5 -> 3.0 Inexact Rounded
949
+ pwsx2916 power 90.00E-2 0.5 -> 0.95 Inexact Rounded
950
+ pwsx2917 power 90E-3 0.5 -> 0.30 Inexact Rounded
951
+ pwsx2918 power 90E+1 0.5 -> 30 Inexact Rounded
952
+ pwsx2919 power 90E+2 0.5 -> 95 Inexact Rounded
953
+ pwsx2920 power 90E+3 0.5 -> 3.0E+2 Inexact Rounded
954
+ pwsx2921 power 0.91 0.5 -> 0.95 Inexact Rounded
955
+ pwsx2922 power 0.091 0.5 -> 0.30 Inexact Rounded
956
+ pwsx2923 power 91.0E-1 0.5 -> 3.0 Inexact Rounded
957
+ pwsx2924 power 91.00E-2 0.5 -> 0.95 Inexact Rounded
958
+ pwsx2925 power 91E-3 0.5 -> 0.30 Inexact Rounded
959
+ pwsx2926 power 91E+1 0.5 -> 30 Inexact Rounded
960
+ pwsx2927 power 91E+2 0.5 -> 95 Inexact Rounded
961
+ pwsx2928 power 91E+3 0.5 -> 3.0E+2 Inexact Rounded
962
+ pwsx2929 power 0.92 0.5 -> 0.96 Inexact Rounded
963
+ pwsx2930 power 0.092 0.5 -> 0.30 Inexact Rounded
964
+ pwsx2931 power 92.0E-1 0.5 -> 3.0 Inexact Rounded
965
+ pwsx2932 power 92.00E-2 0.5 -> 0.96 Inexact Rounded
966
+ pwsx2933 power 92E-3 0.5 -> 0.30 Inexact Rounded
967
+ pwsx2934 power 92E+1 0.5 -> 30 Inexact Rounded
968
+ pwsx2935 power 92E+2 0.5 -> 96 Inexact Rounded
969
+ pwsx2936 power 92E+3 0.5 -> 3.0E+2 Inexact Rounded
970
+ pwsx2937 power 0.93 0.5 -> 0.96 Inexact Rounded
971
+ pwsx2938 power 0.093 0.5 -> 0.30 Inexact Rounded
972
+ pwsx2939 power 93.0E-1 0.5 -> 3.0 Inexact Rounded
973
+ pwsx2940 power 93.00E-2 0.5 -> 0.96 Inexact Rounded
974
+ pwsx2941 power 93E-3 0.5 -> 0.30 Inexact Rounded
975
+ pwsx2942 power 93E+1 0.5 -> 30 Inexact Rounded
976
+ pwsx2943 power 93E+2 0.5 -> 96 Inexact Rounded
977
+ pwsx2944 power 93E+3 0.5 -> 3.0E+2 Inexact Rounded
978
+ pwsx2945 power 0.94 0.5 -> 0.97 Inexact Rounded
979
+ pwsx2946 power 0.094 0.5 -> 0.31 Inexact Rounded
980
+ pwsx2947 power 94.0E-1 0.5 -> 3.1 Inexact Rounded
981
+ pwsx2948 power 94.00E-2 0.5 -> 0.97 Inexact Rounded
982
+ pwsx2949 power 94E-3 0.5 -> 0.31 Inexact Rounded
983
+ pwsx2950 power 94E+1 0.5 -> 31 Inexact Rounded
984
+ pwsx2951 power 94E+2 0.5 -> 97 Inexact Rounded
985
+ pwsx2952 power 94E+3 0.5 -> 3.1E+2 Inexact Rounded
986
+ pwsx2953 power 0.95 0.5 -> 0.97 Inexact Rounded
987
+ pwsx2954 power 0.095 0.5 -> 0.31 Inexact Rounded
988
+ pwsx2955 power 95.0E-1 0.5 -> 3.1 Inexact Rounded
989
+ pwsx2956 power 95.00E-2 0.5 -> 0.97 Inexact Rounded
990
+ pwsx2957 power 95E-3 0.5 -> 0.31 Inexact Rounded
991
+ pwsx2958 power 95E+1 0.5 -> 31 Inexact Rounded
992
+ pwsx2959 power 95E+2 0.5 -> 97 Inexact Rounded
993
+ pwsx2960 power 95E+3 0.5 -> 3.1E+2 Inexact Rounded
994
+ pwsx2961 power 0.96 0.5 -> 0.98 Inexact Rounded
995
+ pwsx2962 power 0.096 0.5 -> 0.31 Inexact Rounded
996
+ pwsx2963 power 96.0E-1 0.5 -> 3.1 Inexact Rounded
997
+ pwsx2964 power 96.00E-2 0.5 -> 0.98 Inexact Rounded
998
+ pwsx2965 power 96E-3 0.5 -> 0.31 Inexact Rounded
999
+ pwsx2966 power 96E+1 0.5 -> 31 Inexact Rounded
1000
+ pwsx2967 power 96E+2 0.5 -> 98 Inexact Rounded
1001
+ pwsx2968 power 96E+3 0.5 -> 3.1E+2 Inexact Rounded
1002
+ pwsx2969 power 0.97 0.5 -> 0.98 Inexact Rounded
1003
+ pwsx2970 power 0.097 0.5 -> 0.31 Inexact Rounded
1004
+ pwsx2971 power 97.0E-1 0.5 -> 3.1 Inexact Rounded
1005
+ pwsx2972 power 97.00E-2 0.5 -> 0.98 Inexact Rounded
1006
+ pwsx2973 power 97E-3 0.5 -> 0.31 Inexact Rounded
1007
+ pwsx2974 power 97E+1 0.5 -> 31 Inexact Rounded
1008
+ pwsx2975 power 97E+2 0.5 -> 98 Inexact Rounded
1009
+ pwsx2976 power 97E+3 0.5 -> 3.1E+2 Inexact Rounded
1010
+ pwsx2977 power 0.98 0.5 -> 0.99 Inexact Rounded
1011
+ pwsx2978 power 0.098 0.5 -> 0.31 Inexact Rounded
1012
+ pwsx2979 power 98.0E-1 0.5 -> 3.1 Inexact Rounded
1013
+ pwsx2980 power 98.00E-2 0.5 -> 0.99 Inexact Rounded
1014
+ pwsx2981 power 98E-3 0.5 -> 0.31 Inexact Rounded
1015
+ pwsx2982 power 98E+1 0.5 -> 31 Inexact Rounded
1016
+ pwsx2983 power 98E+2 0.5 -> 99 Inexact Rounded
1017
+ pwsx2984 power 98E+3 0.5 -> 3.1E+2 Inexact Rounded
1018
+ pwsx2985 power 0.99 0.5 -> 0.99 Inexact Rounded
1019
+ pwsx2986 power 0.099 0.5 -> 0.31 Inexact Rounded
1020
+ pwsx2987 power 99.0E-1 0.5 -> 3.1 Inexact Rounded
1021
+ pwsx2988 power 99.00E-2 0.5 -> 0.99 Inexact Rounded
1022
+ pwsx2989 power 99E-3 0.5 -> 0.31 Inexact Rounded
1023
+ pwsx2990 power 99E+1 0.5 -> 31 Inexact Rounded
1024
+ pwsx2991 power 99E+2 0.5 -> 99 Inexact Rounded
1025
+ pwsx2992 power 99E+3 0.5 -> 3.1E+2 Inexact Rounded
1026
+
1027
+ -- Precision 3 squareroot tests [exhaustive, f and f/10]
1028
+ rounding: half_even
1029
+ maxExponent: 999
1030
+ minexponent: -999
1031
+ precision: 3
1032
+ pwsx3001 power 0.1 0.5 -> 0.316 Inexact Rounded
1033
+ pwsx3002 power 0.01 0.5 -> 0.100 Inexact Rounded
1034
+ pwsx3003 power 0.2 0.5 -> 0.447 Inexact Rounded
1035
+ pwsx3004 power 0.02 0.5 -> 0.141 Inexact Rounded
1036
+ pwsx3005 power 0.3 0.5 -> 0.548 Inexact Rounded
1037
+ pwsx3006 power 0.03 0.5 -> 0.173 Inexact Rounded
1038
+ pwsx3007 power 0.4 0.5 -> 0.632 Inexact Rounded
1039
+ pwsx3008 power 0.04 0.5 -> 0.200 Inexact Rounded
1040
+ pwsx3009 power 0.5 0.5 -> 0.707 Inexact Rounded
1041
+ pwsx3010 power 0.05 0.5 -> 0.224 Inexact Rounded
1042
+ pwsx3011 power 0.6 0.5 -> 0.775 Inexact Rounded
1043
+ pwsx3012 power 0.06 0.5 -> 0.245 Inexact Rounded
1044
+ pwsx3013 power 0.7 0.5 -> 0.837 Inexact Rounded
1045
+ pwsx3014 power 0.07 0.5 -> 0.265 Inexact Rounded
1046
+ pwsx3015 power 0.8 0.5 -> 0.894 Inexact Rounded
1047
+ pwsx3016 power 0.08 0.5 -> 0.283 Inexact Rounded
1048
+ pwsx3017 power 0.9 0.5 -> 0.949 Inexact Rounded
1049
+ pwsx3018 power 0.09 0.5 -> 0.300 Inexact Rounded
1050
+ pwsx3019 power 0.11 0.5 -> 0.332 Inexact Rounded
1051
+ pwsx3020 power 0.011 0.5 -> 0.105 Inexact Rounded
1052
+ pwsx3021 power 0.12 0.5 -> 0.346 Inexact Rounded
1053
+ pwsx3022 power 0.012 0.5 -> 0.110 Inexact Rounded
1054
+ pwsx3023 power 0.13 0.5 -> 0.361 Inexact Rounded
1055
+ pwsx3024 power 0.013 0.5 -> 0.114 Inexact Rounded
1056
+ pwsx3025 power 0.14 0.5 -> 0.374 Inexact Rounded
1057
+ pwsx3026 power 0.014 0.5 -> 0.118 Inexact Rounded
1058
+ pwsx3027 power 0.15 0.5 -> 0.387 Inexact Rounded
1059
+ pwsx3028 power 0.015 0.5 -> 0.122 Inexact Rounded
1060
+ pwsx3029 power 0.16 0.5 -> 0.400 Inexact Rounded
1061
+ pwsx3030 power 0.016 0.5 -> 0.126 Inexact Rounded
1062
+ pwsx3031 power 0.17 0.5 -> 0.412 Inexact Rounded
1063
+ pwsx3032 power 0.017 0.5 -> 0.130 Inexact Rounded
1064
+ pwsx3033 power 0.18 0.5 -> 0.424 Inexact Rounded
1065
+ pwsx3034 power 0.018 0.5 -> 0.134 Inexact Rounded
1066
+ pwsx3035 power 0.19 0.5 -> 0.436 Inexact Rounded
1067
+ pwsx3036 power 0.019 0.5 -> 0.138 Inexact Rounded
1068
+ pwsx3037 power 0.21 0.5 -> 0.458 Inexact Rounded
1069
+ pwsx3038 power 0.021 0.5 -> 0.145 Inexact Rounded
1070
+ pwsx3039 power 0.22 0.5 -> 0.469 Inexact Rounded
1071
+ pwsx3040 power 0.022 0.5 -> 0.148 Inexact Rounded
1072
+ pwsx3041 power 0.23 0.5 -> 0.480 Inexact Rounded
1073
+ pwsx3042 power 0.023 0.5 -> 0.152 Inexact Rounded
1074
+ pwsx3043 power 0.24 0.5 -> 0.490 Inexact Rounded
1075
+ pwsx3044 power 0.024 0.5 -> 0.155 Inexact Rounded
1076
+ pwsx3045 power 0.25 0.5 -> 0.500 Inexact Rounded
1077
+ pwsx3046 power 0.025 0.5 -> 0.158 Inexact Rounded
1078
+ pwsx3047 power 0.26 0.5 -> 0.510 Inexact Rounded
1079
+ pwsx3048 power 0.026 0.5 -> 0.161 Inexact Rounded
1080
+ pwsx3049 power 0.27 0.5 -> 0.520 Inexact Rounded
1081
+ pwsx3050 power 0.027 0.5 -> 0.164 Inexact Rounded
1082
+ pwsx3051 power 0.28 0.5 -> 0.529 Inexact Rounded
1083
+ pwsx3052 power 0.028 0.5 -> 0.167 Inexact Rounded
1084
+ pwsx3053 power 0.29 0.5 -> 0.539 Inexact Rounded
1085
+ pwsx3054 power 0.029 0.5 -> 0.170 Inexact Rounded
1086
+ pwsx3055 power 0.31 0.5 -> 0.557 Inexact Rounded
1087
+ pwsx3056 power 0.031 0.5 -> 0.176 Inexact Rounded
1088
+ pwsx3057 power 0.32 0.5 -> 0.566 Inexact Rounded
1089
+ pwsx3058 power 0.032 0.5 -> 0.179 Inexact Rounded
1090
+ pwsx3059 power 0.33 0.5 -> 0.574 Inexact Rounded
1091
+ pwsx3060 power 0.033 0.5 -> 0.182 Inexact Rounded
1092
+ pwsx3061 power 0.34 0.5 -> 0.583 Inexact Rounded
1093
+ pwsx3062 power 0.034 0.5 -> 0.184 Inexact Rounded
1094
+ pwsx3063 power 0.35 0.5 -> 0.592 Inexact Rounded
1095
+ pwsx3064 power 0.035 0.5 -> 0.187 Inexact Rounded
1096
+ pwsx3065 power 0.36 0.5 -> 0.600 Inexact Rounded
1097
+ pwsx3066 power 0.036 0.5 -> 0.190 Inexact Rounded
1098
+ pwsx3067 power 0.37 0.5 -> 0.608 Inexact Rounded
1099
+ pwsx3068 power 0.037 0.5 -> 0.192 Inexact Rounded
1100
+ pwsx3069 power 0.38 0.5 -> 0.616 Inexact Rounded
1101
+ pwsx3070 power 0.038 0.5 -> 0.195 Inexact Rounded
1102
+ pwsx3071 power 0.39 0.5 -> 0.624 Inexact Rounded
1103
+ pwsx3072 power 0.039 0.5 -> 0.197 Inexact Rounded
1104
+ pwsx3073 power 0.41 0.5 -> 0.640 Inexact Rounded
1105
+ pwsx3074 power 0.041 0.5 -> 0.202 Inexact Rounded
1106
+ pwsx3075 power 0.42 0.5 -> 0.648 Inexact Rounded
1107
+ pwsx3076 power 0.042 0.5 -> 0.205 Inexact Rounded
1108
+ pwsx3077 power 0.43 0.5 -> 0.656 Inexact Rounded
1109
+ pwsx3078 power 0.043 0.5 -> 0.207 Inexact Rounded
1110
+ pwsx3079 power 0.44 0.5 -> 0.663 Inexact Rounded
1111
+ pwsx3080 power 0.044 0.5 -> 0.210 Inexact Rounded
1112
+ pwsx3081 power 0.45 0.5 -> 0.671 Inexact Rounded
1113
+ pwsx3082 power 0.045 0.5 -> 0.212 Inexact Rounded
1114
+ pwsx3083 power 0.46 0.5 -> 0.678 Inexact Rounded
1115
+ pwsx3084 power 0.046 0.5 -> 0.214 Inexact Rounded
1116
+ pwsx3085 power 0.47 0.5 -> 0.686 Inexact Rounded
1117
+ pwsx3086 power 0.047 0.5 -> 0.217 Inexact Rounded
1118
+ pwsx3087 power 0.48 0.5 -> 0.693 Inexact Rounded
1119
+ pwsx3088 power 0.048 0.5 -> 0.219 Inexact Rounded
1120
+ pwsx3089 power 0.49 0.5 -> 0.700 Inexact Rounded
1121
+ pwsx3090 power 0.049 0.5 -> 0.221 Inexact Rounded
1122
+ pwsx3091 power 0.51 0.5 -> 0.714 Inexact Rounded
1123
+ pwsx3092 power 0.051 0.5 -> 0.226 Inexact Rounded
1124
+ pwsx3093 power 0.52 0.5 -> 0.721 Inexact Rounded
1125
+ pwsx3094 power 0.052 0.5 -> 0.228 Inexact Rounded
1126
+ pwsx3095 power 0.53 0.5 -> 0.728 Inexact Rounded
1127
+ pwsx3096 power 0.053 0.5 -> 0.230 Inexact Rounded
1128
+ pwsx3097 power 0.54 0.5 -> 0.735 Inexact Rounded
1129
+ pwsx3098 power 0.054 0.5 -> 0.232 Inexact Rounded
1130
+ pwsx3099 power 0.55 0.5 -> 0.742 Inexact Rounded
1131
+ pwsx3100 power 0.055 0.5 -> 0.235 Inexact Rounded
1132
+ pwsx3101 power 0.56 0.5 -> 0.748 Inexact Rounded
1133
+ pwsx3102 power 0.056 0.5 -> 0.237 Inexact Rounded
1134
+ pwsx3103 power 0.57 0.5 -> 0.755 Inexact Rounded
1135
+ pwsx3104 power 0.057 0.5 -> 0.239 Inexact Rounded
1136
+ pwsx3105 power 0.58 0.5 -> 0.762 Inexact Rounded
1137
+ pwsx3106 power 0.058 0.5 -> 0.241 Inexact Rounded
1138
+ pwsx3107 power 0.59 0.5 -> 0.768 Inexact Rounded
1139
+ pwsx3108 power 0.059 0.5 -> 0.243 Inexact Rounded
1140
+ pwsx3109 power 0.61 0.5 -> 0.781 Inexact Rounded
1141
+ pwsx3110 power 0.061 0.5 -> 0.247 Inexact Rounded
1142
+ pwsx3111 power 0.62 0.5 -> 0.787 Inexact Rounded
1143
+ pwsx3112 power 0.062 0.5 -> 0.249 Inexact Rounded
1144
+ pwsx3113 power 0.63 0.5 -> 0.794 Inexact Rounded
1145
+ pwsx3114 power 0.063 0.5 -> 0.251 Inexact Rounded
1146
+ pwsx3115 power 0.64 0.5 -> 0.800 Inexact Rounded
1147
+ pwsx3116 power 0.064 0.5 -> 0.253 Inexact Rounded
1148
+ pwsx3117 power 0.65 0.5 -> 0.806 Inexact Rounded
1149
+ pwsx3118 power 0.065 0.5 -> 0.255 Inexact Rounded
1150
+ pwsx3119 power 0.66 0.5 -> 0.812 Inexact Rounded
1151
+ pwsx3120 power 0.066 0.5 -> 0.257 Inexact Rounded
1152
+ pwsx3121 power 0.67 0.5 -> 0.819 Inexact Rounded
1153
+ pwsx3122 power 0.067 0.5 -> 0.259 Inexact Rounded
1154
+ pwsx3123 power 0.68 0.5 -> 0.825 Inexact Rounded
1155
+ pwsx3124 power 0.068 0.5 -> 0.261 Inexact Rounded
1156
+ pwsx3125 power 0.69 0.5 -> 0.831 Inexact Rounded
1157
+ pwsx3126 power 0.069 0.5 -> 0.263 Inexact Rounded
1158
+ pwsx3127 power 0.71 0.5 -> 0.843 Inexact Rounded
1159
+ pwsx3128 power 0.071 0.5 -> 0.266 Inexact Rounded
1160
+ pwsx3129 power 0.72 0.5 -> 0.849 Inexact Rounded
1161
+ pwsx3130 power 0.072 0.5 -> 0.268 Inexact Rounded
1162
+ pwsx3131 power 0.73 0.5 -> 0.854 Inexact Rounded
1163
+ pwsx3132 power 0.073 0.5 -> 0.270 Inexact Rounded
1164
+ pwsx3133 power 0.74 0.5 -> 0.860 Inexact Rounded
1165
+ pwsx3134 power 0.074 0.5 -> 0.272 Inexact Rounded
1166
+ pwsx3135 power 0.75 0.5 -> 0.866 Inexact Rounded
1167
+ pwsx3136 power 0.075 0.5 -> 0.274 Inexact Rounded
1168
+ pwsx3137 power 0.76 0.5 -> 0.872 Inexact Rounded
1169
+ pwsx3138 power 0.076 0.5 -> 0.276 Inexact Rounded
1170
+ pwsx3139 power 0.77 0.5 -> 0.877 Inexact Rounded
1171
+ pwsx3140 power 0.077 0.5 -> 0.277 Inexact Rounded
1172
+ pwsx3141 power 0.78 0.5 -> 0.883 Inexact Rounded
1173
+ pwsx3142 power 0.078 0.5 -> 0.279 Inexact Rounded
1174
+ pwsx3143 power 0.79 0.5 -> 0.889 Inexact Rounded
1175
+ pwsx3144 power 0.079 0.5 -> 0.281 Inexact Rounded
1176
+ pwsx3145 power 0.81 0.5 -> 0.900 Inexact Rounded
1177
+ pwsx3146 power 0.081 0.5 -> 0.285 Inexact Rounded
1178
+ pwsx3147 power 0.82 0.5 -> 0.906 Inexact Rounded
1179
+ pwsx3148 power 0.082 0.5 -> 0.286 Inexact Rounded
1180
+ pwsx3149 power 0.83 0.5 -> 0.911 Inexact Rounded
1181
+ pwsx3150 power 0.083 0.5 -> 0.288 Inexact Rounded
1182
+ pwsx3151 power 0.84 0.5 -> 0.917 Inexact Rounded
1183
+ pwsx3152 power 0.084 0.5 -> 0.290 Inexact Rounded
1184
+ pwsx3153 power 0.85 0.5 -> 0.922 Inexact Rounded
1185
+ pwsx3154 power 0.085 0.5 -> 0.292 Inexact Rounded
1186
+ pwsx3155 power 0.86 0.5 -> 0.927 Inexact Rounded
1187
+ pwsx3156 power 0.086 0.5 -> 0.293 Inexact Rounded
1188
+ pwsx3157 power 0.87 0.5 -> 0.933 Inexact Rounded
1189
+ pwsx3158 power 0.087 0.5 -> 0.295 Inexact Rounded
1190
+ pwsx3159 power 0.88 0.5 -> 0.938 Inexact Rounded
1191
+ pwsx3160 power 0.088 0.5 -> 0.297 Inexact Rounded
1192
+ pwsx3161 power 0.89 0.5 -> 0.943 Inexact Rounded
1193
+ pwsx3162 power 0.089 0.5 -> 0.298 Inexact Rounded
1194
+ pwsx3163 power 0.91 0.5 -> 0.954 Inexact Rounded
1195
+ pwsx3164 power 0.091 0.5 -> 0.302 Inexact Rounded
1196
+ pwsx3165 power 0.92 0.5 -> 0.959 Inexact Rounded
1197
+ pwsx3166 power 0.092 0.5 -> 0.303 Inexact Rounded
1198
+ pwsx3167 power 0.93 0.5 -> 0.964 Inexact Rounded
1199
+ pwsx3168 power 0.093 0.5 -> 0.305 Inexact Rounded
1200
+ pwsx3169 power 0.94 0.5 -> 0.970 Inexact Rounded
1201
+ pwsx3170 power 0.094 0.5 -> 0.307 Inexact Rounded
1202
+ pwsx3171 power 0.95 0.5 -> 0.975 Inexact Rounded
1203
+ pwsx3172 power 0.095 0.5 -> 0.308 Inexact Rounded
1204
+ pwsx3173 power 0.96 0.5 -> 0.980 Inexact Rounded
1205
+ pwsx3174 power 0.096 0.5 -> 0.310 Inexact Rounded
1206
+ pwsx3175 power 0.97 0.5 -> 0.985 Inexact Rounded
1207
+ pwsx3176 power 0.097 0.5 -> 0.311 Inexact Rounded
1208
+ pwsx3177 power 0.98 0.5 -> 0.990 Inexact Rounded
1209
+ pwsx3178 power 0.098 0.5 -> 0.313 Inexact Rounded
1210
+ pwsx3179 power 0.99 0.5 -> 0.995 Inexact Rounded
1211
+ pwsx3180 power 0.099 0.5 -> 0.315 Inexact Rounded
1212
+ pwsx3181 power 0.101 0.5 -> 0.318 Inexact Rounded
1213
+ pwsx3182 power 0.0101 0.5 -> 0.100 Inexact Rounded
1214
+ pwsx3183 power 0.102 0.5 -> 0.319 Inexact Rounded
1215
+ pwsx3184 power 0.0102 0.5 -> 0.101 Inexact Rounded
1216
+ pwsx3185 power 0.103 0.5 -> 0.321 Inexact Rounded
1217
+ pwsx3186 power 0.0103 0.5 -> 0.101 Inexact Rounded
1218
+ pwsx3187 power 0.104 0.5 -> 0.322 Inexact Rounded
1219
+ pwsx3188 power 0.0104 0.5 -> 0.102 Inexact Rounded
1220
+ pwsx3189 power 0.105 0.5 -> 0.324 Inexact Rounded
1221
+ pwsx3190 power 0.0105 0.5 -> 0.102 Inexact Rounded
1222
+ pwsx3191 power 0.106 0.5 -> 0.326 Inexact Rounded
1223
+ pwsx3192 power 0.0106 0.5 -> 0.103 Inexact Rounded
1224
+ pwsx3193 power 0.107 0.5 -> 0.327 Inexact Rounded
1225
+ pwsx3194 power 0.0107 0.5 -> 0.103 Inexact Rounded
1226
+ pwsx3195 power 0.108 0.5 -> 0.329 Inexact Rounded
1227
+ pwsx3196 power 0.0108 0.5 -> 0.104 Inexact Rounded
1228
+ pwsx3197 power 0.109 0.5 -> 0.330 Inexact Rounded
1229
+ pwsx3198 power 0.0109 0.5 -> 0.104 Inexact Rounded
1230
+ pwsx3199 power 0.111 0.5 -> 0.333 Inexact Rounded
1231
+ pwsx3200 power 0.0111 0.5 -> 0.105 Inexact Rounded
1232
+ pwsx3201 power 0.112 0.5 -> 0.335 Inexact Rounded
1233
+ pwsx3202 power 0.0112 0.5 -> 0.106 Inexact Rounded
1234
+ pwsx3203 power 0.113 0.5 -> 0.336 Inexact Rounded
1235
+ pwsx3204 power 0.0113 0.5 -> 0.106 Inexact Rounded
1236
+ pwsx3205 power 0.114 0.5 -> 0.338 Inexact Rounded
1237
+ pwsx3206 power 0.0114 0.5 -> 0.107 Inexact Rounded
1238
+ pwsx3207 power 0.115 0.5 -> 0.339 Inexact Rounded
1239
+ pwsx3208 power 0.0115 0.5 -> 0.107 Inexact Rounded
1240
+ pwsx3209 power 0.116 0.5 -> 0.341 Inexact Rounded
1241
+ pwsx3210 power 0.0116 0.5 -> 0.108 Inexact Rounded
1242
+ pwsx3211 power 0.117 0.5 -> 0.342 Inexact Rounded
1243
+ pwsx3212 power 0.0117 0.5 -> 0.108 Inexact Rounded
1244
+ pwsx3213 power 0.118 0.5 -> 0.344 Inexact Rounded
1245
+ pwsx3214 power 0.0118 0.5 -> 0.109 Inexact Rounded
1246
+ pwsx3215 power 0.119 0.5 -> 0.345 Inexact Rounded
1247
+ pwsx3216 power 0.0119 0.5 -> 0.109 Inexact Rounded
1248
+ pwsx3217 power 0.121 0.5 -> 0.348 Inexact Rounded
1249
+ pwsx3218 power 0.0121 0.5 -> 0.110 Inexact Rounded
1250
+ pwsx3219 power 0.122 0.5 -> 0.349 Inexact Rounded
1251
+ pwsx3220 power 0.0122 0.5 -> 0.110 Inexact Rounded
1252
+ pwsx3221 power 0.123 0.5 -> 0.351 Inexact Rounded
1253
+ pwsx3222 power 0.0123 0.5 -> 0.111 Inexact Rounded
1254
+ pwsx3223 power 0.124 0.5 -> 0.352 Inexact Rounded
1255
+ pwsx3224 power 0.0124 0.5 -> 0.111 Inexact Rounded
1256
+ pwsx3225 power 0.125 0.5 -> 0.354 Inexact Rounded
1257
+ pwsx3226 power 0.0125 0.5 -> 0.112 Inexact Rounded
1258
+ pwsx3227 power 0.126 0.5 -> 0.355 Inexact Rounded
1259
+ pwsx3228 power 0.0126 0.5 -> 0.112 Inexact Rounded
1260
+ pwsx3229 power 0.127 0.5 -> 0.356 Inexact Rounded
1261
+ pwsx3230 power 0.0127 0.5 -> 0.113 Inexact Rounded
1262
+ pwsx3231 power 0.128 0.5 -> 0.358 Inexact Rounded
1263
+ pwsx3232 power 0.0128 0.5 -> 0.113 Inexact Rounded
1264
+ pwsx3233 power 0.129 0.5 -> 0.359 Inexact Rounded
1265
+ pwsx3234 power 0.0129 0.5 -> 0.114 Inexact Rounded
1266
+ pwsx3235 power 0.131 0.5 -> 0.362 Inexact Rounded
1267
+ pwsx3236 power 0.0131 0.5 -> 0.114 Inexact Rounded
1268
+ pwsx3237 power 0.132 0.5 -> 0.363 Inexact Rounded
1269
+ pwsx3238 power 0.0132 0.5 -> 0.115 Inexact Rounded
1270
+ pwsx3239 power 0.133 0.5 -> 0.365 Inexact Rounded
1271
+ pwsx3240 power 0.0133 0.5 -> 0.115 Inexact Rounded
1272
+ pwsx3241 power 0.134 0.5 -> 0.366 Inexact Rounded
1273
+ pwsx3242 power 0.0134 0.5 -> 0.116 Inexact Rounded
1274
+ pwsx3243 power 0.135 0.5 -> 0.367 Inexact Rounded
1275
+ pwsx3244 power 0.0135 0.5 -> 0.116 Inexact Rounded
1276
+ pwsx3245 power 0.136 0.5 -> 0.369 Inexact Rounded
1277
+ pwsx3246 power 0.0136 0.5 -> 0.117 Inexact Rounded
1278
+ pwsx3247 power 0.137 0.5 -> 0.370 Inexact Rounded
1279
+ pwsx3248 power 0.0137 0.5 -> 0.117 Inexact Rounded
1280
+ pwsx3249 power 0.138 0.5 -> 0.371 Inexact Rounded
1281
+ pwsx3250 power 0.0138 0.5 -> 0.117 Inexact Rounded
1282
+ pwsx3251 power 0.139 0.5 -> 0.373 Inexact Rounded
1283
+ pwsx3252 power 0.0139 0.5 -> 0.118 Inexact Rounded
1284
+ pwsx3253 power 0.141 0.5 -> 0.375 Inexact Rounded
1285
+ pwsx3254 power 0.0141 0.5 -> 0.119 Inexact Rounded
1286
+ pwsx3255 power 0.142 0.5 -> 0.377 Inexact Rounded
1287
+ pwsx3256 power 0.0142 0.5 -> 0.119 Inexact Rounded
1288
+ pwsx3257 power 0.143 0.5 -> 0.378 Inexact Rounded
1289
+ pwsx3258 power 0.0143 0.5 -> 0.120 Inexact Rounded
1290
+ pwsx3259 power 0.144 0.5 -> 0.379 Inexact Rounded
1291
+ pwsx3260 power 0.0144 0.5 -> 0.120 Inexact Rounded
1292
+ pwsx3261 power 0.145 0.5 -> 0.381 Inexact Rounded
1293
+ pwsx3262 power 0.0145 0.5 -> 0.120 Inexact Rounded
1294
+ pwsx3263 power 0.146 0.5 -> 0.382 Inexact Rounded
1295
+ pwsx3264 power 0.0146 0.5 -> 0.121 Inexact Rounded
1296
+ pwsx3265 power 0.147 0.5 -> 0.383 Inexact Rounded
1297
+ pwsx3266 power 0.0147 0.5 -> 0.121 Inexact Rounded
1298
+ pwsx3267 power 0.148 0.5 -> 0.385 Inexact Rounded
1299
+ pwsx3268 power 0.0148 0.5 -> 0.122 Inexact Rounded
1300
+ pwsx3269 power 0.149 0.5 -> 0.386 Inexact Rounded
1301
+ pwsx3270 power 0.0149 0.5 -> 0.122 Inexact Rounded
1302
+ pwsx3271 power 0.151 0.5 -> 0.389 Inexact Rounded
1303
+ pwsx3272 power 0.0151 0.5 -> 0.123 Inexact Rounded
1304
+ pwsx3273 power 0.152 0.5 -> 0.390 Inexact Rounded
1305
+ pwsx3274 power 0.0152 0.5 -> 0.123 Inexact Rounded
1306
+ pwsx3275 power 0.153 0.5 -> 0.391 Inexact Rounded
1307
+ pwsx3276 power 0.0153 0.5 -> 0.124 Inexact Rounded
1308
+ pwsx3277 power 0.154 0.5 -> 0.392 Inexact Rounded
1309
+ pwsx3278 power 0.0154 0.5 -> 0.124 Inexact Rounded
1310
+ pwsx3279 power 0.155 0.5 -> 0.394 Inexact Rounded
1311
+ pwsx3280 power 0.0155 0.5 -> 0.124 Inexact Rounded
1312
+ pwsx3281 power 0.156 0.5 -> 0.395 Inexact Rounded
1313
+ pwsx3282 power 0.0156 0.5 -> 0.125 Inexact Rounded
1314
+ pwsx3283 power 0.157 0.5 -> 0.396 Inexact Rounded
1315
+ pwsx3284 power 0.0157 0.5 -> 0.125 Inexact Rounded
1316
+ pwsx3285 power 0.158 0.5 -> 0.397 Inexact Rounded
1317
+ pwsx3286 power 0.0158 0.5 -> 0.126 Inexact Rounded
1318
+ pwsx3287 power 0.159 0.5 -> 0.399 Inexact Rounded
1319
+ pwsx3288 power 0.0159 0.5 -> 0.126 Inexact Rounded
1320
+ pwsx3289 power 0.161 0.5 -> 0.401 Inexact Rounded
1321
+ pwsx3290 power 0.0161 0.5 -> 0.127 Inexact Rounded
1322
+ pwsx3291 power 0.162 0.5 -> 0.402 Inexact Rounded
1323
+ pwsx3292 power 0.0162 0.5 -> 0.127 Inexact Rounded
1324
+ pwsx3293 power 0.163 0.5 -> 0.404 Inexact Rounded
1325
+ pwsx3294 power 0.0163 0.5 -> 0.128 Inexact Rounded
1326
+ pwsx3295 power 0.164 0.5 -> 0.405 Inexact Rounded
1327
+ pwsx3296 power 0.0164 0.5 -> 0.128 Inexact Rounded
1328
+ pwsx3297 power 0.165 0.5 -> 0.406 Inexact Rounded
1329
+ pwsx3298 power 0.0165 0.5 -> 0.128 Inexact Rounded
1330
+ pwsx3299 power 0.166 0.5 -> 0.407 Inexact Rounded
1331
+ pwsx3300 power 0.0166 0.5 -> 0.129 Inexact Rounded
1332
+ pwsx3301 power 0.167 0.5 -> 0.409 Inexact Rounded
1333
+ pwsx3302 power 0.0167 0.5 -> 0.129 Inexact Rounded
1334
+ pwsx3303 power 0.168 0.5 -> 0.410 Inexact Rounded
1335
+ pwsx3304 power 0.0168 0.5 -> 0.130 Inexact Rounded
1336
+ pwsx3305 power 0.169 0.5 -> 0.411 Inexact Rounded
1337
+ pwsx3306 power 0.0169 0.5 -> 0.130 Inexact Rounded
1338
+ pwsx3307 power 0.171 0.5 -> 0.414 Inexact Rounded
1339
+ pwsx3308 power 0.0171 0.5 -> 0.131 Inexact Rounded
1340
+ pwsx3309 power 0.172 0.5 -> 0.415 Inexact Rounded
1341
+ pwsx3310 power 0.0172 0.5 -> 0.131 Inexact Rounded
1342
+ pwsx3311 power 0.173 0.5 -> 0.416 Inexact Rounded
1343
+ pwsx3312 power 0.0173 0.5 -> 0.132 Inexact Rounded
1344
+ pwsx3313 power 0.174 0.5 -> 0.417 Inexact Rounded
1345
+ pwsx3314 power 0.0174 0.5 -> 0.132 Inexact Rounded
1346
+ pwsx3315 power 0.175 0.5 -> 0.418 Inexact Rounded
1347
+ pwsx3316 power 0.0175 0.5 -> 0.132 Inexact Rounded
1348
+ pwsx3317 power 0.176 0.5 -> 0.420 Inexact Rounded
1349
+ pwsx3318 power 0.0176 0.5 -> 0.133 Inexact Rounded
1350
+ pwsx3319 power 0.177 0.5 -> 0.421 Inexact Rounded
1351
+ pwsx3320 power 0.0177 0.5 -> 0.133 Inexact Rounded
1352
+ pwsx3321 power 0.178 0.5 -> 0.422 Inexact Rounded
1353
+ pwsx3322 power 0.0178 0.5 -> 0.133 Inexact Rounded
1354
+ pwsx3323 power 0.179 0.5 -> 0.423 Inexact Rounded
1355
+ pwsx3324 power 0.0179 0.5 -> 0.134 Inexact Rounded
1356
+ pwsx3325 power 0.181 0.5 -> 0.425 Inexact Rounded
1357
+ pwsx3326 power 0.0181 0.5 -> 0.135 Inexact Rounded
1358
+ pwsx3327 power 0.182 0.5 -> 0.427 Inexact Rounded
1359
+ pwsx3328 power 0.0182 0.5 -> 0.135 Inexact Rounded
1360
+ pwsx3329 power 0.183 0.5 -> 0.428 Inexact Rounded
1361
+ pwsx3330 power 0.0183 0.5 -> 0.135 Inexact Rounded
1362
+ pwsx3331 power 0.184 0.5 -> 0.429 Inexact Rounded
1363
+ pwsx3332 power 0.0184 0.5 -> 0.136 Inexact Rounded
1364
+ pwsx3333 power 0.185 0.5 -> 0.430 Inexact Rounded
1365
+ pwsx3334 power 0.0185 0.5 -> 0.136 Inexact Rounded
1366
+ pwsx3335 power 0.186 0.5 -> 0.431 Inexact Rounded
1367
+ pwsx3336 power 0.0186 0.5 -> 0.136 Inexact Rounded
1368
+ pwsx3337 power 0.187 0.5 -> 0.432 Inexact Rounded
1369
+ pwsx3338 power 0.0187 0.5 -> 0.137 Inexact Rounded
1370
+ pwsx3339 power 0.188 0.5 -> 0.434 Inexact Rounded
1371
+ pwsx3340 power 0.0188 0.5 -> 0.137 Inexact Rounded
1372
+ pwsx3341 power 0.189 0.5 -> 0.435 Inexact Rounded
1373
+ pwsx3342 power 0.0189 0.5 -> 0.137 Inexact Rounded
1374
+ pwsx3343 power 0.191 0.5 -> 0.437 Inexact Rounded
1375
+ pwsx3344 power 0.0191 0.5 -> 0.138 Inexact Rounded
1376
+ pwsx3345 power 0.192 0.5 -> 0.438 Inexact Rounded
1377
+ pwsx3346 power 0.0192 0.5 -> 0.139 Inexact Rounded
1378
+ pwsx3347 power 0.193 0.5 -> 0.439 Inexact Rounded
1379
+ pwsx3348 power 0.0193 0.5 -> 0.139 Inexact Rounded
1380
+ pwsx3349 power 0.194 0.5 -> 0.440 Inexact Rounded
1381
+ pwsx3350 power 0.0194 0.5 -> 0.139 Inexact Rounded
1382
+ pwsx3351 power 0.195 0.5 -> 0.442 Inexact Rounded
1383
+ pwsx3352 power 0.0195 0.5 -> 0.140 Inexact Rounded
1384
+ pwsx3353 power 0.196 0.5 -> 0.443 Inexact Rounded
1385
+ pwsx3354 power 0.0196 0.5 -> 0.140 Inexact Rounded
1386
+ pwsx3355 power 0.197 0.5 -> 0.444 Inexact Rounded
1387
+ pwsx3356 power 0.0197 0.5 -> 0.140 Inexact Rounded
1388
+ pwsx3357 power 0.198 0.5 -> 0.445 Inexact Rounded
1389
+ pwsx3358 power 0.0198 0.5 -> 0.141 Inexact Rounded
1390
+ pwsx3359 power 0.199 0.5 -> 0.446 Inexact Rounded
1391
+ pwsx3360 power 0.0199 0.5 -> 0.141 Inexact Rounded
1392
+ pwsx3361 power 0.201 0.5 -> 0.448 Inexact Rounded
1393
+ pwsx3362 power 0.0201 0.5 -> 0.142 Inexact Rounded
1394
+ pwsx3363 power 0.202 0.5 -> 0.449 Inexact Rounded
1395
+ pwsx3364 power 0.0202 0.5 -> 0.142 Inexact Rounded
1396
+ pwsx3365 power 0.203 0.5 -> 0.451 Inexact Rounded
1397
+ pwsx3366 power 0.0203 0.5 -> 0.142 Inexact Rounded
1398
+ pwsx3367 power 0.204 0.5 -> 0.452 Inexact Rounded
1399
+ pwsx3368 power 0.0204 0.5 -> 0.143 Inexact Rounded
1400
+ pwsx3369 power 0.205 0.5 -> 0.453 Inexact Rounded
1401
+ pwsx3370 power 0.0205 0.5 -> 0.143 Inexact Rounded
1402
+ pwsx3371 power 0.206 0.5 -> 0.454 Inexact Rounded
1403
+ pwsx3372 power 0.0206 0.5 -> 0.144 Inexact Rounded
1404
+ pwsx3373 power 0.207 0.5 -> 0.455 Inexact Rounded
1405
+ pwsx3374 power 0.0207 0.5 -> 0.144 Inexact Rounded
1406
+ pwsx3375 power 0.208 0.5 -> 0.456 Inexact Rounded
1407
+ pwsx3376 power 0.0208 0.5 -> 0.144 Inexact Rounded
1408
+ pwsx3377 power 0.209 0.5 -> 0.457 Inexact Rounded
1409
+ pwsx3378 power 0.0209 0.5 -> 0.145 Inexact Rounded
1410
+ pwsx3379 power 0.211 0.5 -> 0.459 Inexact Rounded
1411
+ pwsx3380 power 0.0211 0.5 -> 0.145 Inexact Rounded
1412
+ pwsx3381 power 0.212 0.5 -> 0.460 Inexact Rounded
1413
+ pwsx3382 power 0.0212 0.5 -> 0.146 Inexact Rounded
1414
+ pwsx3383 power 0.213 0.5 -> 0.462 Inexact Rounded
1415
+ pwsx3384 power 0.0213 0.5 -> 0.146 Inexact Rounded
1416
+ pwsx3385 power 0.214 0.5 -> 0.463 Inexact Rounded
1417
+ pwsx3386 power 0.0214 0.5 -> 0.146 Inexact Rounded
1418
+ pwsx3387 power 0.215 0.5 -> 0.464 Inexact Rounded
1419
+ pwsx3388 power 0.0215 0.5 -> 0.147 Inexact Rounded
1420
+ pwsx3389 power 0.216 0.5 -> 0.465 Inexact Rounded
1421
+ pwsx3390 power 0.0216 0.5 -> 0.147 Inexact Rounded
1422
+ pwsx3391 power 0.217 0.5 -> 0.466 Inexact Rounded
1423
+ pwsx3392 power 0.0217 0.5 -> 0.147 Inexact Rounded
1424
+ pwsx3393 power 0.218 0.5 -> 0.467 Inexact Rounded
1425
+ pwsx3394 power 0.0218 0.5 -> 0.148 Inexact Rounded
1426
+ pwsx3395 power 0.219 0.5 -> 0.468 Inexact Rounded
1427
+ pwsx3396 power 0.0219 0.5 -> 0.148 Inexact Rounded
1428
+ pwsx3397 power 0.221 0.5 -> 0.470 Inexact Rounded
1429
+ pwsx3398 power 0.0221 0.5 -> 0.149 Inexact Rounded
1430
+ pwsx3399 power 0.222 0.5 -> 0.471 Inexact Rounded
1431
+ pwsx3400 power 0.0222 0.5 -> 0.149 Inexact Rounded
1432
+ pwsx3401 power 0.223 0.5 -> 0.472 Inexact Rounded
1433
+ pwsx3402 power 0.0223 0.5 -> 0.149 Inexact Rounded
1434
+ pwsx3403 power 0.224 0.5 -> 0.473 Inexact Rounded
1435
+ pwsx3404 power 0.0224 0.5 -> 0.150 Inexact Rounded
1436
+ pwsx3405 power 0.225 0.5 -> 0.474 Inexact Rounded
1437
+ pwsx3406 power 0.0225 0.5 -> 0.150 Inexact Rounded
1438
+ pwsx3407 power 0.226 0.5 -> 0.475 Inexact Rounded
1439
+ pwsx3408 power 0.0226 0.5 -> 0.150 Inexact Rounded
1440
+ pwsx3409 power 0.227 0.5 -> 0.476 Inexact Rounded
1441
+ pwsx3410 power 0.0227 0.5 -> 0.151 Inexact Rounded
1442
+ pwsx3411 power 0.228 0.5 -> 0.477 Inexact Rounded
1443
+ pwsx3412 power 0.0228 0.5 -> 0.151 Inexact Rounded
1444
+ pwsx3413 power 0.229 0.5 -> 0.479 Inexact Rounded
1445
+ pwsx3414 power 0.0229 0.5 -> 0.151 Inexact Rounded
1446
+ pwsx3415 power 0.231 0.5 -> 0.481 Inexact Rounded
1447
+ pwsx3416 power 0.0231 0.5 -> 0.152 Inexact Rounded
1448
+ pwsx3417 power 0.232 0.5 -> 0.482 Inexact Rounded
1449
+ pwsx3418 power 0.0232 0.5 -> 0.152 Inexact Rounded
1450
+ pwsx3419 power 0.233 0.5 -> 0.483 Inexact Rounded
1451
+ pwsx3420 power 0.0233 0.5 -> 0.153 Inexact Rounded
1452
+ pwsx3421 power 0.234 0.5 -> 0.484 Inexact Rounded
1453
+ pwsx3422 power 0.0234 0.5 -> 0.153 Inexact Rounded
1454
+ pwsx3423 power 0.235 0.5 -> 0.485 Inexact Rounded
1455
+ pwsx3424 power 0.0235 0.5 -> 0.153 Inexact Rounded
1456
+ pwsx3425 power 0.236 0.5 -> 0.486 Inexact Rounded
1457
+ pwsx3426 power 0.0236 0.5 -> 0.154 Inexact Rounded
1458
+ pwsx3427 power 0.237 0.5 -> 0.487 Inexact Rounded
1459
+ pwsx3428 power 0.0237 0.5 -> 0.154 Inexact Rounded
1460
+ pwsx3429 power 0.238 0.5 -> 0.488 Inexact Rounded
1461
+ pwsx3430 power 0.0238 0.5 -> 0.154 Inexact Rounded
1462
+ pwsx3431 power 0.239 0.5 -> 0.489 Inexact Rounded
1463
+ pwsx3432 power 0.0239 0.5 -> 0.155 Inexact Rounded
1464
+ pwsx3433 power 0.241 0.5 -> 0.491 Inexact Rounded
1465
+ pwsx3434 power 0.0241 0.5 -> 0.155 Inexact Rounded
1466
+ pwsx3435 power 0.242 0.5 -> 0.492 Inexact Rounded
1467
+ pwsx3436 power 0.0242 0.5 -> 0.156 Inexact Rounded
1468
+ pwsx3437 power 0.243 0.5 -> 0.493 Inexact Rounded
1469
+ pwsx3438 power 0.0243 0.5 -> 0.156 Inexact Rounded
1470
+ pwsx3439 power 0.244 0.5 -> 0.494 Inexact Rounded
1471
+ pwsx3440 power 0.0244 0.5 -> 0.156 Inexact Rounded
1472
+ pwsx3441 power 0.245 0.5 -> 0.495 Inexact Rounded
1473
+ pwsx3442 power 0.0245 0.5 -> 0.157 Inexact Rounded
1474
+ pwsx3443 power 0.246 0.5 -> 0.496 Inexact Rounded
1475
+ pwsx3444 power 0.0246 0.5 -> 0.157 Inexact Rounded
1476
+ pwsx3445 power 0.247 0.5 -> 0.497 Inexact Rounded
1477
+ pwsx3446 power 0.0247 0.5 -> 0.157 Inexact Rounded
1478
+ pwsx3447 power 0.248 0.5 -> 0.498 Inexact Rounded
1479
+ pwsx3448 power 0.0248 0.5 -> 0.157 Inexact Rounded
1480
+ pwsx3449 power 0.249 0.5 -> 0.499 Inexact Rounded
1481
+ pwsx3450 power 0.0249 0.5 -> 0.158 Inexact Rounded
1482
+ pwsx3451 power 0.251 0.5 -> 0.501 Inexact Rounded
1483
+ pwsx3452 power 0.0251 0.5 -> 0.158 Inexact Rounded
1484
+ pwsx3453 power 0.252 0.5 -> 0.502 Inexact Rounded
1485
+ pwsx3454 power 0.0252 0.5 -> 0.159 Inexact Rounded
1486
+ pwsx3455 power 0.253 0.5 -> 0.503 Inexact Rounded
1487
+ pwsx3456 power 0.0253 0.5 -> 0.159 Inexact Rounded
1488
+ pwsx3457 power 0.254 0.5 -> 0.504 Inexact Rounded
1489
+ pwsx3458 power 0.0254 0.5 -> 0.159 Inexact Rounded
1490
+ pwsx3459 power 0.255 0.5 -> 0.505 Inexact Rounded
1491
+ pwsx3460 power 0.0255 0.5 -> 0.160 Inexact Rounded
1492
+ pwsx3461 power 0.256 0.5 -> 0.506 Inexact Rounded
1493
+ pwsx3462 power 0.0256 0.5 -> 0.160 Inexact Rounded
1494
+ pwsx3463 power 0.257 0.5 -> 0.507 Inexact Rounded
1495
+ pwsx3464 power 0.0257 0.5 -> 0.160 Inexact Rounded
1496
+ pwsx3465 power 0.258 0.5 -> 0.508 Inexact Rounded
1497
+ pwsx3466 power 0.0258 0.5 -> 0.161 Inexact Rounded
1498
+ pwsx3467 power 0.259 0.5 -> 0.509 Inexact Rounded
1499
+ pwsx3468 power 0.0259 0.5 -> 0.161 Inexact Rounded
1500
+ pwsx3469 power 0.261 0.5 -> 0.511 Inexact Rounded
1501
+ pwsx3470 power 0.0261 0.5 -> 0.162 Inexact Rounded
1502
+ pwsx3471 power 0.262 0.5 -> 0.512 Inexact Rounded
1503
+ pwsx3472 power 0.0262 0.5 -> 0.162 Inexact Rounded
1504
+ pwsx3473 power 0.263 0.5 -> 0.513 Inexact Rounded
1505
+ pwsx3474 power 0.0263 0.5 -> 0.162 Inexact Rounded
1506
+ pwsx3475 power 0.264 0.5 -> 0.514 Inexact Rounded
1507
+ pwsx3476 power 0.0264 0.5 -> 0.162 Inexact Rounded
1508
+ pwsx3477 power 0.265 0.5 -> 0.515 Inexact Rounded
1509
+ pwsx3478 power 0.0265 0.5 -> 0.163 Inexact Rounded
1510
+ pwsx3479 power 0.266 0.5 -> 0.516 Inexact Rounded
1511
+ pwsx3480 power 0.0266 0.5 -> 0.163 Inexact Rounded
1512
+ pwsx3481 power 0.267 0.5 -> 0.517 Inexact Rounded
1513
+ pwsx3482 power 0.0267 0.5 -> 0.163 Inexact Rounded
1514
+ pwsx3483 power 0.268 0.5 -> 0.518 Inexact Rounded
1515
+ pwsx3484 power 0.0268 0.5 -> 0.164 Inexact Rounded
1516
+ pwsx3485 power 0.269 0.5 -> 0.519 Inexact Rounded
1517
+ pwsx3486 power 0.0269 0.5 -> 0.164 Inexact Rounded
1518
+ pwsx3487 power 0.271 0.5 -> 0.521 Inexact Rounded
1519
+ pwsx3488 power 0.0271 0.5 -> 0.165 Inexact Rounded
1520
+ pwsx3489 power 0.272 0.5 -> 0.522 Inexact Rounded
1521
+ pwsx3490 power 0.0272 0.5 -> 0.165 Inexact Rounded
1522
+ pwsx3491 power 0.273 0.5 -> 0.522 Inexact Rounded
1523
+ pwsx3492 power 0.0273 0.5 -> 0.165 Inexact Rounded
1524
+ pwsx3493 power 0.274 0.5 -> 0.523 Inexact Rounded
1525
+ pwsx3494 power 0.0274 0.5 -> 0.166 Inexact Rounded
1526
+ pwsx3495 power 0.275 0.5 -> 0.524 Inexact Rounded
1527
+ pwsx3496 power 0.0275 0.5 -> 0.166 Inexact Rounded
1528
+ pwsx3497 power 0.276 0.5 -> 0.525 Inexact Rounded
1529
+ pwsx3498 power 0.0276 0.5 -> 0.166 Inexact Rounded
1530
+ pwsx3499 power 0.277 0.5 -> 0.526 Inexact Rounded
1531
+ pwsx3500 power 0.0277 0.5 -> 0.166 Inexact Rounded
1532
+ pwsx3501 power 0.278 0.5 -> 0.527 Inexact Rounded
1533
+ pwsx3502 power 0.0278 0.5 -> 0.167 Inexact Rounded
1534
+ pwsx3503 power 0.279 0.5 -> 0.528 Inexact Rounded
1535
+ pwsx3504 power 0.0279 0.5 -> 0.167 Inexact Rounded
1536
+ pwsx3505 power 0.281 0.5 -> 0.530 Inexact Rounded
1537
+ pwsx3506 power 0.0281 0.5 -> 0.168 Inexact Rounded
1538
+ pwsx3507 power 0.282 0.5 -> 0.531 Inexact Rounded
1539
+ pwsx3508 power 0.0282 0.5 -> 0.168 Inexact Rounded
1540
+ pwsx3509 power 0.283 0.5 -> 0.532 Inexact Rounded
1541
+ pwsx3510 power 0.0283 0.5 -> 0.168 Inexact Rounded
1542
+ pwsx3511 power 0.284 0.5 -> 0.533 Inexact Rounded
1543
+ pwsx3512 power 0.0284 0.5 -> 0.169 Inexact Rounded
1544
+ pwsx3513 power 0.285 0.5 -> 0.534 Inexact Rounded
1545
+ pwsx3514 power 0.0285 0.5 -> 0.169 Inexact Rounded
1546
+ pwsx3515 power 0.286 0.5 -> 0.535 Inexact Rounded
1547
+ pwsx3516 power 0.0286 0.5 -> 0.169 Inexact Rounded
1548
+ pwsx3517 power 0.287 0.5 -> 0.536 Inexact Rounded
1549
+ pwsx3518 power 0.0287 0.5 -> 0.169 Inexact Rounded
1550
+ pwsx3519 power 0.288 0.5 -> 0.537 Inexact Rounded
1551
+ pwsx3520 power 0.0288 0.5 -> 0.170 Inexact Rounded
1552
+ pwsx3521 power 0.289 0.5 -> 0.538 Inexact Rounded
1553
+ pwsx3522 power 0.0289 0.5 -> 0.170 Inexact Rounded
1554
+ pwsx3523 power 0.291 0.5 -> 0.539 Inexact Rounded
1555
+ pwsx3524 power 0.0291 0.5 -> 0.171 Inexact Rounded
1556
+ pwsx3525 power 0.292 0.5 -> 0.540 Inexact Rounded
1557
+ pwsx3526 power 0.0292 0.5 -> 0.171 Inexact Rounded
1558
+ pwsx3527 power 0.293 0.5 -> 0.541 Inexact Rounded
1559
+ pwsx3528 power 0.0293 0.5 -> 0.171 Inexact Rounded
1560
+ pwsx3529 power 0.294 0.5 -> 0.542 Inexact Rounded
1561
+ pwsx3530 power 0.0294 0.5 -> 0.171 Inexact Rounded
1562
+ pwsx3531 power 0.295 0.5 -> 0.543 Inexact Rounded
1563
+ pwsx3532 power 0.0295 0.5 -> 0.172 Inexact Rounded
1564
+ pwsx3533 power 0.296 0.5 -> 0.544 Inexact Rounded
1565
+ pwsx3534 power 0.0296 0.5 -> 0.172 Inexact Rounded
1566
+ pwsx3535 power 0.297 0.5 -> 0.545 Inexact Rounded
1567
+ pwsx3536 power 0.0297 0.5 -> 0.172 Inexact Rounded
1568
+ pwsx3537 power 0.298 0.5 -> 0.546 Inexact Rounded
1569
+ pwsx3538 power 0.0298 0.5 -> 0.173 Inexact Rounded
1570
+ pwsx3539 power 0.299 0.5 -> 0.547 Inexact Rounded
1571
+ pwsx3540 power 0.0299 0.5 -> 0.173 Inexact Rounded
1572
+ pwsx3541 power 0.301 0.5 -> 0.549 Inexact Rounded
1573
+ pwsx3542 power 0.0301 0.5 -> 0.173 Inexact Rounded
1574
+ pwsx3543 power 0.302 0.5 -> 0.550 Inexact Rounded
1575
+ pwsx3544 power 0.0302 0.5 -> 0.174 Inexact Rounded
1576
+ pwsx3545 power 0.303 0.5 -> 0.550 Inexact Rounded
1577
+ pwsx3546 power 0.0303 0.5 -> 0.174 Inexact Rounded
1578
+ pwsx3547 power 0.304 0.5 -> 0.551 Inexact Rounded
1579
+ pwsx3548 power 0.0304 0.5 -> 0.174 Inexact Rounded
1580
+ pwsx3549 power 0.305 0.5 -> 0.552 Inexact Rounded
1581
+ pwsx3550 power 0.0305 0.5 -> 0.175 Inexact Rounded
1582
+ pwsx3551 power 0.306 0.5 -> 0.553 Inexact Rounded
1583
+ pwsx3552 power 0.0306 0.5 -> 0.175 Inexact Rounded
1584
+ pwsx3553 power 0.307 0.5 -> 0.554 Inexact Rounded
1585
+ pwsx3554 power 0.0307 0.5 -> 0.175 Inexact Rounded
1586
+ pwsx3555 power 0.308 0.5 -> 0.555 Inexact Rounded
1587
+ pwsx3556 power 0.0308 0.5 -> 0.175 Inexact Rounded
1588
+ pwsx3557 power 0.309 0.5 -> 0.556 Inexact Rounded
1589
+ pwsx3558 power 0.0309 0.5 -> 0.176 Inexact Rounded
1590
+ pwsx3559 power 0.311 0.5 -> 0.558 Inexact Rounded
1591
+ pwsx3560 power 0.0311 0.5 -> 0.176 Inexact Rounded
1592
+ pwsx3561 power 0.312 0.5 -> 0.559 Inexact Rounded
1593
+ pwsx3562 power 0.0312 0.5 -> 0.177 Inexact Rounded
1594
+ pwsx3563 power 0.313 0.5 -> 0.559 Inexact Rounded
1595
+ pwsx3564 power 0.0313 0.5 -> 0.177 Inexact Rounded
1596
+ pwsx3565 power 0.314 0.5 -> 0.560 Inexact Rounded
1597
+ pwsx3566 power 0.0314 0.5 -> 0.177 Inexact Rounded
1598
+ pwsx3567 power 0.315 0.5 -> 0.561 Inexact Rounded
1599
+ pwsx3568 power 0.0315 0.5 -> 0.177 Inexact Rounded
1600
+ pwsx3569 power 0.316 0.5 -> 0.562 Inexact Rounded
1601
+ pwsx3570 power 0.0316 0.5 -> 0.178 Inexact Rounded
1602
+ pwsx3571 power 0.317 0.5 -> 0.563 Inexact Rounded
1603
+ pwsx3572 power 0.0317 0.5 -> 0.178 Inexact Rounded
1604
+ pwsx3573 power 0.318 0.5 -> 0.564 Inexact Rounded
1605
+ pwsx3574 power 0.0318 0.5 -> 0.178 Inexact Rounded
1606
+ pwsx3575 power 0.319 0.5 -> 0.565 Inexact Rounded
1607
+ pwsx3576 power 0.0319 0.5 -> 0.179 Inexact Rounded
1608
+ pwsx3577 power 0.321 0.5 -> 0.567 Inexact Rounded
1609
+ pwsx3578 power 0.0321 0.5 -> 0.179 Inexact Rounded
1610
+ pwsx3579 power 0.322 0.5 -> 0.567 Inexact Rounded
1611
+ pwsx3580 power 0.0322 0.5 -> 0.179 Inexact Rounded
1612
+ pwsx3581 power 0.323 0.5 -> 0.568 Inexact Rounded
1613
+ pwsx3582 power 0.0323 0.5 -> 0.180 Inexact Rounded
1614
+ pwsx3583 power 0.324 0.5 -> 0.569 Inexact Rounded
1615
+ pwsx3584 power 0.0324 0.5 -> 0.180 Inexact Rounded
1616
+ pwsx3585 power 0.325 0.5 -> 0.570 Inexact Rounded
1617
+ pwsx3586 power 0.0325 0.5 -> 0.180 Inexact Rounded
1618
+ pwsx3587 power 0.326 0.5 -> 0.571 Inexact Rounded
1619
+ pwsx3588 power 0.0326 0.5 -> 0.181 Inexact Rounded
1620
+ pwsx3589 power 0.327 0.5 -> 0.572 Inexact Rounded
1621
+ pwsx3590 power 0.0327 0.5 -> 0.181 Inexact Rounded
1622
+ pwsx3591 power 0.328 0.5 -> 0.573 Inexact Rounded
1623
+ pwsx3592 power 0.0328 0.5 -> 0.181 Inexact Rounded
1624
+ pwsx3593 power 0.329 0.5 -> 0.574 Inexact Rounded
1625
+ pwsx3594 power 0.0329 0.5 -> 0.181 Inexact Rounded
1626
+ pwsx3595 power 0.331 0.5 -> 0.575 Inexact Rounded
1627
+ pwsx3596 power 0.0331 0.5 -> 0.182 Inexact Rounded
1628
+ pwsx3597 power 0.332 0.5 -> 0.576 Inexact Rounded
1629
+ pwsx3598 power 0.0332 0.5 -> 0.182 Inexact Rounded
1630
+ pwsx3599 power 0.333 0.5 -> 0.577 Inexact Rounded
1631
+ pwsx3600 power 0.0333 0.5 -> 0.182 Inexact Rounded
1632
+ pwsx3601 power 0.334 0.5 -> 0.578 Inexact Rounded
1633
+ pwsx3602 power 0.0334 0.5 -> 0.183 Inexact Rounded
1634
+ pwsx3603 power 0.335 0.5 -> 0.579 Inexact Rounded
1635
+ pwsx3604 power 0.0335 0.5 -> 0.183 Inexact Rounded
1636
+ pwsx3605 power 0.336 0.5 -> 0.580 Inexact Rounded
1637
+ pwsx3606 power 0.0336 0.5 -> 0.183 Inexact Rounded
1638
+ pwsx3607 power 0.337 0.5 -> 0.581 Inexact Rounded
1639
+ pwsx3608 power 0.0337 0.5 -> 0.184 Inexact Rounded
1640
+ pwsx3609 power 0.338 0.5 -> 0.581 Inexact Rounded
1641
+ pwsx3610 power 0.0338 0.5 -> 0.184 Inexact Rounded
1642
+ pwsx3611 power 0.339 0.5 -> 0.582 Inexact Rounded
1643
+ pwsx3612 power 0.0339 0.5 -> 0.184 Inexact Rounded
1644
+ pwsx3613 power 0.341 0.5 -> 0.584 Inexact Rounded
1645
+ pwsx3614 power 0.0341 0.5 -> 0.185 Inexact Rounded
1646
+ pwsx3615 power 0.342 0.5 -> 0.585 Inexact Rounded
1647
+ pwsx3616 power 0.0342 0.5 -> 0.185 Inexact Rounded
1648
+ pwsx3617 power 0.343 0.5 -> 0.586 Inexact Rounded
1649
+ pwsx3618 power 0.0343 0.5 -> 0.185 Inexact Rounded
1650
+ pwsx3619 power 0.344 0.5 -> 0.587 Inexact Rounded
1651
+ pwsx3620 power 0.0344 0.5 -> 0.185 Inexact Rounded
1652
+ pwsx3621 power 0.345 0.5 -> 0.587 Inexact Rounded
1653
+ pwsx3622 power 0.0345 0.5 -> 0.186 Inexact Rounded
1654
+ pwsx3623 power 0.346 0.5 -> 0.588 Inexact Rounded
1655
+ pwsx3624 power 0.0346 0.5 -> 0.186 Inexact Rounded
1656
+ pwsx3625 power 0.347 0.5 -> 0.589 Inexact Rounded
1657
+ pwsx3626 power 0.0347 0.5 -> 0.186 Inexact Rounded
1658
+ pwsx3627 power 0.348 0.5 -> 0.590 Inexact Rounded
1659
+ pwsx3628 power 0.0348 0.5 -> 0.187 Inexact Rounded
1660
+ pwsx3629 power 0.349 0.5 -> 0.591 Inexact Rounded
1661
+ pwsx3630 power 0.0349 0.5 -> 0.187 Inexact Rounded
1662
+ pwsx3631 power 0.351 0.5 -> 0.592 Inexact Rounded
1663
+ pwsx3632 power 0.0351 0.5 -> 0.187 Inexact Rounded
1664
+ pwsx3633 power 0.352 0.5 -> 0.593 Inexact Rounded
1665
+ pwsx3634 power 0.0352 0.5 -> 0.188 Inexact Rounded
1666
+ pwsx3635 power 0.353 0.5 -> 0.594 Inexact Rounded
1667
+ pwsx3636 power 0.0353 0.5 -> 0.188 Inexact Rounded
1668
+ pwsx3637 power 0.354 0.5 -> 0.595 Inexact Rounded
1669
+ pwsx3638 power 0.0354 0.5 -> 0.188 Inexact Rounded
1670
+ pwsx3639 power 0.355 0.5 -> 0.596 Inexact Rounded
1671
+ pwsx3640 power 0.0355 0.5 -> 0.188 Inexact Rounded
1672
+ pwsx3641 power 0.356 0.5 -> 0.597 Inexact Rounded
1673
+ pwsx3642 power 0.0356 0.5 -> 0.189 Inexact Rounded
1674
+ pwsx3643 power 0.357 0.5 -> 0.597 Inexact Rounded
1675
+ pwsx3644 power 0.0357 0.5 -> 0.189 Inexact Rounded
1676
+ pwsx3645 power 0.358 0.5 -> 0.598 Inexact Rounded
1677
+ pwsx3646 power 0.0358 0.5 -> 0.189 Inexact Rounded
1678
+ pwsx3647 power 0.359 0.5 -> 0.599 Inexact Rounded
1679
+ pwsx3648 power 0.0359 0.5 -> 0.189 Inexact Rounded
1680
+ pwsx3649 power 0.361 0.5 -> 0.601 Inexact Rounded
1681
+ pwsx3650 power 0.0361 0.5 -> 0.190 Inexact Rounded
1682
+ pwsx3651 power 0.362 0.5 -> 0.602 Inexact Rounded
1683
+ pwsx3652 power 0.0362 0.5 -> 0.190 Inexact Rounded
1684
+ pwsx3653 power 0.363 0.5 -> 0.602 Inexact Rounded
1685
+ pwsx3654 power 0.0363 0.5 -> 0.191 Inexact Rounded
1686
+ pwsx3655 power 0.364 0.5 -> 0.603 Inexact Rounded
1687
+ pwsx3656 power 0.0364 0.5 -> 0.191 Inexact Rounded
1688
+ pwsx3657 power 0.365 0.5 -> 0.604 Inexact Rounded
1689
+ pwsx3658 power 0.0365 0.5 -> 0.191 Inexact Rounded
1690
+ pwsx3659 power 0.366 0.5 -> 0.605 Inexact Rounded
1691
+ pwsx3660 power 0.0366 0.5 -> 0.191 Inexact Rounded
1692
+ pwsx3661 power 0.367 0.5 -> 0.606 Inexact Rounded
1693
+ pwsx3662 power 0.0367 0.5 -> 0.192 Inexact Rounded
1694
+ pwsx3663 power 0.368 0.5 -> 0.607 Inexact Rounded
1695
+ pwsx3664 power 0.0368 0.5 -> 0.192 Inexact Rounded
1696
+ pwsx3665 power 0.369 0.5 -> 0.607 Inexact Rounded
1697
+ pwsx3666 power 0.0369 0.5 -> 0.192 Inexact Rounded
1698
+ pwsx3667 power 0.371 0.5 -> 0.609 Inexact Rounded
1699
+ pwsx3668 power 0.0371 0.5 -> 0.193 Inexact Rounded
1700
+ pwsx3669 power 0.372 0.5 -> 0.610 Inexact Rounded
1701
+ pwsx3670 power 0.0372 0.5 -> 0.193 Inexact Rounded
1702
+ pwsx3671 power 0.373 0.5 -> 0.611 Inexact Rounded
1703
+ pwsx3672 power 0.0373 0.5 -> 0.193 Inexact Rounded
1704
+ pwsx3673 power 0.374 0.5 -> 0.612 Inexact Rounded
1705
+ pwsx3674 power 0.0374 0.5 -> 0.193 Inexact Rounded
1706
+ pwsx3675 power 0.375 0.5 -> 0.612 Inexact Rounded
1707
+ pwsx3676 power 0.0375 0.5 -> 0.194 Inexact Rounded
1708
+ pwsx3677 power 0.376 0.5 -> 0.613 Inexact Rounded
1709
+ pwsx3678 power 0.0376 0.5 -> 0.194 Inexact Rounded
1710
+ pwsx3679 power 0.377 0.5 -> 0.614 Inexact Rounded
1711
+ pwsx3680 power 0.0377 0.5 -> 0.194 Inexact Rounded
1712
+ pwsx3681 power 0.378 0.5 -> 0.615 Inexact Rounded
1713
+ pwsx3682 power 0.0378 0.5 -> 0.194 Inexact Rounded
1714
+ pwsx3683 power 0.379 0.5 -> 0.616 Inexact Rounded
1715
+ pwsx3684 power 0.0379 0.5 -> 0.195 Inexact Rounded
1716
+ pwsx3685 power 0.381 0.5 -> 0.617 Inexact Rounded
1717
+ pwsx3686 power 0.0381 0.5 -> 0.195 Inexact Rounded
1718
+ pwsx3687 power 0.382 0.5 -> 0.618 Inexact Rounded
1719
+ pwsx3688 power 0.0382 0.5 -> 0.195 Inexact Rounded
1720
+ pwsx3689 power 0.383 0.5 -> 0.619 Inexact Rounded
1721
+ pwsx3690 power 0.0383 0.5 -> 0.196 Inexact Rounded
1722
+ pwsx3691 power 0.384 0.5 -> 0.620 Inexact Rounded
1723
+ pwsx3692 power 0.0384 0.5 -> 0.196 Inexact Rounded
1724
+ pwsx3693 power 0.385 0.5 -> 0.620 Inexact Rounded
1725
+ pwsx3694 power 0.0385 0.5 -> 0.196 Inexact Rounded
1726
+ pwsx3695 power 0.386 0.5 -> 0.621 Inexact Rounded
1727
+ pwsx3696 power 0.0386 0.5 -> 0.196 Inexact Rounded
1728
+ pwsx3697 power 0.387 0.5 -> 0.622 Inexact Rounded
1729
+ pwsx3698 power 0.0387 0.5 -> 0.197 Inexact Rounded
1730
+ pwsx3699 power 0.388 0.5 -> 0.623 Inexact Rounded
1731
+ pwsx3700 power 0.0388 0.5 -> 0.197 Inexact Rounded
1732
+ pwsx3701 power 0.389 0.5 -> 0.624 Inexact Rounded
1733
+ pwsx3702 power 0.0389 0.5 -> 0.197 Inexact Rounded
1734
+ pwsx3703 power 0.391 0.5 -> 0.625 Inexact Rounded
1735
+ pwsx3704 power 0.0391 0.5 -> 0.198 Inexact Rounded
1736
+ pwsx3705 power 0.392 0.5 -> 0.626 Inexact Rounded
1737
+ pwsx3706 power 0.0392 0.5 -> 0.198 Inexact Rounded
1738
+ pwsx3707 power 0.393 0.5 -> 0.627 Inexact Rounded
1739
+ pwsx3708 power 0.0393 0.5 -> 0.198 Inexact Rounded
1740
+ pwsx3709 power 0.394 0.5 -> 0.628 Inexact Rounded
1741
+ pwsx3710 power 0.0394 0.5 -> 0.198 Inexact Rounded
1742
+ pwsx3711 power 0.395 0.5 -> 0.628 Inexact Rounded
1743
+ pwsx3712 power 0.0395 0.5 -> 0.199 Inexact Rounded
1744
+ pwsx3713 power 0.396 0.5 -> 0.629 Inexact Rounded
1745
+ pwsx3714 power 0.0396 0.5 -> 0.199 Inexact Rounded
1746
+ pwsx3715 power 0.397 0.5 -> 0.630 Inexact Rounded
1747
+ pwsx3716 power 0.0397 0.5 -> 0.199 Inexact Rounded
1748
+ pwsx3717 power 0.398 0.5 -> 0.631 Inexact Rounded
1749
+ pwsx3718 power 0.0398 0.5 -> 0.199 Inexact Rounded
1750
+ pwsx3719 power 0.399 0.5 -> 0.632 Inexact Rounded
1751
+ pwsx3720 power 0.0399 0.5 -> 0.200 Inexact Rounded
1752
+ pwsx3721 power 0.401 0.5 -> 0.633 Inexact Rounded
1753
+ pwsx3722 power 0.0401 0.5 -> 0.200 Inexact Rounded
1754
+ pwsx3723 power 0.402 0.5 -> 0.634 Inexact Rounded
1755
+ pwsx3724 power 0.0402 0.5 -> 0.200 Inexact Rounded
1756
+ pwsx3725 power 0.403 0.5 -> 0.635 Inexact Rounded
1757
+ pwsx3726 power 0.0403 0.5 -> 0.201 Inexact Rounded
1758
+ pwsx3727 power 0.404 0.5 -> 0.636 Inexact Rounded
1759
+ pwsx3728 power 0.0404 0.5 -> 0.201 Inexact Rounded
1760
+ pwsx3729 power 0.405 0.5 -> 0.636 Inexact Rounded
1761
+ pwsx3730 power 0.0405 0.5 -> 0.201 Inexact Rounded
1762
+ pwsx3731 power 0.406 0.5 -> 0.637 Inexact Rounded
1763
+ pwsx3732 power 0.0406 0.5 -> 0.201 Inexact Rounded
1764
+ pwsx3733 power 0.407 0.5 -> 0.638 Inexact Rounded
1765
+ pwsx3734 power 0.0407 0.5 -> 0.202 Inexact Rounded
1766
+ pwsx3735 power 0.408 0.5 -> 0.639 Inexact Rounded
1767
+ pwsx3736 power 0.0408 0.5 -> 0.202 Inexact Rounded
1768
+ pwsx3737 power 0.409 0.5 -> 0.640 Inexact Rounded
1769
+ pwsx3738 power 0.0409 0.5 -> 0.202 Inexact Rounded
1770
+ pwsx3739 power 0.411 0.5 -> 0.641 Inexact Rounded
1771
+ pwsx3740 power 0.0411 0.5 -> 0.203 Inexact Rounded
1772
+ pwsx3741 power 0.412 0.5 -> 0.642 Inexact Rounded
1773
+ pwsx3742 power 0.0412 0.5 -> 0.203 Inexact Rounded
1774
+ pwsx3743 power 0.413 0.5 -> 0.643 Inexact Rounded
1775
+ pwsx3744 power 0.0413 0.5 -> 0.203 Inexact Rounded
1776
+ pwsx3745 power 0.414 0.5 -> 0.643 Inexact Rounded
1777
+ pwsx3746 power 0.0414 0.5 -> 0.203 Inexact Rounded
1778
+ pwsx3747 power 0.415 0.5 -> 0.644 Inexact Rounded
1779
+ pwsx3748 power 0.0415 0.5 -> 0.204 Inexact Rounded
1780
+ pwsx3749 power 0.416 0.5 -> 0.645 Inexact Rounded
1781
+ pwsx3750 power 0.0416 0.5 -> 0.204 Inexact Rounded
1782
+ pwsx3751 power 0.417 0.5 -> 0.646 Inexact Rounded
1783
+ pwsx3752 power 0.0417 0.5 -> 0.204 Inexact Rounded
1784
+ pwsx3753 power 0.418 0.5 -> 0.647 Inexact Rounded
1785
+ pwsx3754 power 0.0418 0.5 -> 0.204 Inexact Rounded
1786
+ pwsx3755 power 0.419 0.5 -> 0.647 Inexact Rounded
1787
+ pwsx3756 power 0.0419 0.5 -> 0.205 Inexact Rounded
1788
+ pwsx3757 power 0.421 0.5 -> 0.649 Inexact Rounded
1789
+ pwsx3758 power 0.0421 0.5 -> 0.205 Inexact Rounded
1790
+ pwsx3759 power 0.422 0.5 -> 0.650 Inexact Rounded
1791
+ pwsx3760 power 0.0422 0.5 -> 0.205 Inexact Rounded
1792
+ pwsx3761 power 0.423 0.5 -> 0.650 Inexact Rounded
1793
+ pwsx3762 power 0.0423 0.5 -> 0.206 Inexact Rounded
1794
+ pwsx3763 power 0.424 0.5 -> 0.651 Inexact Rounded
1795
+ pwsx3764 power 0.0424 0.5 -> 0.206 Inexact Rounded
1796
+ pwsx3765 power 0.425 0.5 -> 0.652 Inexact Rounded
1797
+ pwsx3766 power 0.0425 0.5 -> 0.206 Inexact Rounded
1798
+ pwsx3767 power 0.426 0.5 -> 0.653 Inexact Rounded
1799
+ pwsx3768 power 0.0426 0.5 -> 0.206 Inexact Rounded
1800
+ pwsx3769 power 0.427 0.5 -> 0.653 Inexact Rounded
1801
+ pwsx3770 power 0.0427 0.5 -> 0.207 Inexact Rounded
1802
+ pwsx3771 power 0.428 0.5 -> 0.654 Inexact Rounded
1803
+ pwsx3772 power 0.0428 0.5 -> 0.207 Inexact Rounded
1804
+ pwsx3773 power 0.429 0.5 -> 0.655 Inexact Rounded
1805
+ pwsx3774 power 0.0429 0.5 -> 0.207 Inexact Rounded
1806
+ pwsx3775 power 0.431 0.5 -> 0.657 Inexact Rounded
1807
+ pwsx3776 power 0.0431 0.5 -> 0.208 Inexact Rounded
1808
+ pwsx3777 power 0.432 0.5 -> 0.657 Inexact Rounded
1809
+ pwsx3778 power 0.0432 0.5 -> 0.208 Inexact Rounded
1810
+ pwsx3779 power 0.433 0.5 -> 0.658 Inexact Rounded
1811
+ pwsx3780 power 0.0433 0.5 -> 0.208 Inexact Rounded
1812
+ pwsx3781 power 0.434 0.5 -> 0.659 Inexact Rounded
1813
+ pwsx3782 power 0.0434 0.5 -> 0.208 Inexact Rounded
1814
+ pwsx3783 power 0.435 0.5 -> 0.660 Inexact Rounded
1815
+ pwsx3784 power 0.0435 0.5 -> 0.209 Inexact Rounded
1816
+ pwsx3785 power 0.436 0.5 -> 0.660 Inexact Rounded
1817
+ pwsx3786 power 0.0436 0.5 -> 0.209 Inexact Rounded
1818
+ pwsx3787 power 0.437 0.5 -> 0.661 Inexact Rounded
1819
+ pwsx3788 power 0.0437 0.5 -> 0.209 Inexact Rounded
1820
+ pwsx3789 power 0.438 0.5 -> 0.662 Inexact Rounded
1821
+ pwsx3790 power 0.0438 0.5 -> 0.209 Inexact Rounded
1822
+ pwsx3791 power 0.439 0.5 -> 0.663 Inexact Rounded
1823
+ pwsx3792 power 0.0439 0.5 -> 0.210 Inexact Rounded
1824
+ pwsx3793 power 0.441 0.5 -> 0.664 Inexact Rounded
1825
+ pwsx3794 power 0.0441 0.5 -> 0.210 Inexact Rounded
1826
+ pwsx3795 power 0.442 0.5 -> 0.665 Inexact Rounded
1827
+ pwsx3796 power 0.0442 0.5 -> 0.210 Inexact Rounded
1828
+ pwsx3797 power 0.443 0.5 -> 0.666 Inexact Rounded
1829
+ pwsx3798 power 0.0443 0.5 -> 0.210 Inexact Rounded
1830
+ pwsx3799 power 0.444 0.5 -> 0.666 Inexact Rounded
1831
+ pwsx3800 power 0.0444 0.5 -> 0.211 Inexact Rounded
1832
+ pwsx3801 power 0.445 0.5 -> 0.667 Inexact Rounded
1833
+ pwsx3802 power 0.0445 0.5 -> 0.211 Inexact Rounded
1834
+ pwsx3803 power 0.446 0.5 -> 0.668 Inexact Rounded
1835
+ pwsx3804 power 0.0446 0.5 -> 0.211 Inexact Rounded
1836
+ pwsx3805 power 0.447 0.5 -> 0.669 Inexact Rounded
1837
+ pwsx3806 power 0.0447 0.5 -> 0.211 Inexact Rounded
1838
+ pwsx3807 power 0.448 0.5 -> 0.669 Inexact Rounded
1839
+ pwsx3808 power 0.0448 0.5 -> 0.212 Inexact Rounded
1840
+ pwsx3809 power 0.449 0.5 -> 0.670 Inexact Rounded
1841
+ pwsx3810 power 0.0449 0.5 -> 0.212 Inexact Rounded
1842
+ pwsx3811 power 0.451 0.5 -> 0.672 Inexact Rounded
1843
+ pwsx3812 power 0.0451 0.5 -> 0.212 Inexact Rounded
1844
+ pwsx3813 power 0.452 0.5 -> 0.672 Inexact Rounded
1845
+ pwsx3814 power 0.0452 0.5 -> 0.213 Inexact Rounded
1846
+ pwsx3815 power 0.453 0.5 -> 0.673 Inexact Rounded
1847
+ pwsx3816 power 0.0453 0.5 -> 0.213 Inexact Rounded
1848
+ pwsx3817 power 0.454 0.5 -> 0.674 Inexact Rounded
1849
+ pwsx3818 power 0.0454 0.5 -> 0.213 Inexact Rounded
1850
+ pwsx3819 power 0.455 0.5 -> 0.675 Inexact Rounded
1851
+ pwsx3820 power 0.0455 0.5 -> 0.213 Inexact Rounded
1852
+ pwsx3821 power 0.456 0.5 -> 0.675 Inexact Rounded
1853
+ pwsx3822 power 0.0456 0.5 -> 0.214 Inexact Rounded
1854
+ pwsx3823 power 0.457 0.5 -> 0.676 Inexact Rounded
1855
+ pwsx3824 power 0.0457 0.5 -> 0.214 Inexact Rounded
1856
+ pwsx3825 power 0.458 0.5 -> 0.677 Inexact Rounded
1857
+ pwsx3826 power 0.0458 0.5 -> 0.214 Inexact Rounded
1858
+ pwsx3827 power 0.459 0.5 -> 0.677 Inexact Rounded
1859
+ pwsx3828 power 0.0459 0.5 -> 0.214 Inexact Rounded
1860
+ pwsx3829 power 0.461 0.5 -> 0.679 Inexact Rounded
1861
+ pwsx3830 power 0.0461 0.5 -> 0.215 Inexact Rounded
1862
+ pwsx3831 power 0.462 0.5 -> 0.680 Inexact Rounded
1863
+ pwsx3832 power 0.0462 0.5 -> 0.215 Inexact Rounded
1864
+ pwsx3833 power 0.463 0.5 -> 0.680 Inexact Rounded
1865
+ pwsx3834 power 0.0463 0.5 -> 0.215 Inexact Rounded
1866
+ pwsx3835 power 0.464 0.5 -> 0.681 Inexact Rounded
1867
+ pwsx3836 power 0.0464 0.5 -> 0.215 Inexact Rounded
1868
+ pwsx3837 power 0.465 0.5 -> 0.682 Inexact Rounded
1869
+ pwsx3838 power 0.0465 0.5 -> 0.216 Inexact Rounded
1870
+ pwsx3839 power 0.466 0.5 -> 0.683 Inexact Rounded
1871
+ pwsx3840 power 0.0466 0.5 -> 0.216 Inexact Rounded
1872
+ pwsx3841 power 0.467 0.5 -> 0.683 Inexact Rounded
1873
+ pwsx3842 power 0.0467 0.5 -> 0.216 Inexact Rounded
1874
+ pwsx3843 power 0.468 0.5 -> 0.684 Inexact Rounded
1875
+ pwsx3844 power 0.0468 0.5 -> 0.216 Inexact Rounded
1876
+ pwsx3845 power 0.469 0.5 -> 0.685 Inexact Rounded
1877
+ pwsx3846 power 0.0469 0.5 -> 0.217 Inexact Rounded
1878
+ pwsx3847 power 0.471 0.5 -> 0.686 Inexact Rounded
1879
+ pwsx3848 power 0.0471 0.5 -> 0.217 Inexact Rounded
1880
+ pwsx3849 power 0.472 0.5 -> 0.687 Inexact Rounded
1881
+ pwsx3850 power 0.0472 0.5 -> 0.217 Inexact Rounded
1882
+ pwsx3851 power 0.473 0.5 -> 0.688 Inexact Rounded
1883
+ pwsx3852 power 0.0473 0.5 -> 0.217 Inexact Rounded
1884
+ pwsx3853 power 0.474 0.5 -> 0.688 Inexact Rounded
1885
+ pwsx3854 power 0.0474 0.5 -> 0.218 Inexact Rounded
1886
+ pwsx3855 power 0.475 0.5 -> 0.689 Inexact Rounded
1887
+ pwsx3856 power 0.0475 0.5 -> 0.218 Inexact Rounded
1888
+ pwsx3857 power 0.476 0.5 -> 0.690 Inexact Rounded
1889
+ pwsx3858 power 0.0476 0.5 -> 0.218 Inexact Rounded
1890
+ pwsx3859 power 0.477 0.5 -> 0.691 Inexact Rounded
1891
+ pwsx3860 power 0.0477 0.5 -> 0.218 Inexact Rounded
1892
+ pwsx3861 power 0.478 0.5 -> 0.691 Inexact Rounded
1893
+ pwsx3862 power 0.0478 0.5 -> 0.219 Inexact Rounded
1894
+ pwsx3863 power 0.479 0.5 -> 0.692 Inexact Rounded
1895
+ pwsx3864 power 0.0479 0.5 -> 0.219 Inexact Rounded
1896
+ pwsx3865 power 0.481 0.5 -> 0.694 Inexact Rounded
1897
+ pwsx3866 power 0.0481 0.5 -> 0.219 Inexact Rounded
1898
+ pwsx3867 power 0.482 0.5 -> 0.694 Inexact Rounded
1899
+ pwsx3868 power 0.0482 0.5 -> 0.220 Inexact Rounded
1900
+ pwsx3869 power 0.483 0.5 -> 0.695 Inexact Rounded
1901
+ pwsx3870 power 0.0483 0.5 -> 0.220 Inexact Rounded
1902
+ pwsx3871 power 0.484 0.5 -> 0.696 Inexact Rounded
1903
+ pwsx3872 power 0.0484 0.5 -> 0.220 Inexact Rounded
1904
+ pwsx3873 power 0.485 0.5 -> 0.696 Inexact Rounded
1905
+ pwsx3874 power 0.0485 0.5 -> 0.220 Inexact Rounded
1906
+ pwsx3875 power 0.486 0.5 -> 0.697 Inexact Rounded
1907
+ pwsx3876 power 0.0486 0.5 -> 0.220 Inexact Rounded
1908
+ pwsx3877 power 0.487 0.5 -> 0.698 Inexact Rounded
1909
+ pwsx3878 power 0.0487 0.5 -> 0.221 Inexact Rounded
1910
+ pwsx3879 power 0.488 0.5 -> 0.699 Inexact Rounded
1911
+ pwsx3880 power 0.0488 0.5 -> 0.221 Inexact Rounded
1912
+ pwsx3881 power 0.489 0.5 -> 0.699 Inexact Rounded
1913
+ pwsx3882 power 0.0489 0.5 -> 0.221 Inexact Rounded
1914
+ pwsx3883 power 0.491 0.5 -> 0.701 Inexact Rounded
1915
+ pwsx3884 power 0.0491 0.5 -> 0.222 Inexact Rounded
1916
+ pwsx3885 power 0.492 0.5 -> 0.701 Inexact Rounded
1917
+ pwsx3886 power 0.0492 0.5 -> 0.222 Inexact Rounded
1918
+ pwsx3887 power 0.493 0.5 -> 0.702 Inexact Rounded
1919
+ pwsx3888 power 0.0493 0.5 -> 0.222 Inexact Rounded
1920
+ pwsx3889 power 0.494 0.5 -> 0.703 Inexact Rounded
1921
+ pwsx3890 power 0.0494 0.5 -> 0.222 Inexact Rounded
1922
+ pwsx3891 power 0.495 0.5 -> 0.704 Inexact Rounded
1923
+ pwsx3892 power 0.0495 0.5 -> 0.222 Inexact Rounded
1924
+ pwsx3893 power 0.496 0.5 -> 0.704 Inexact Rounded
1925
+ pwsx3894 power 0.0496 0.5 -> 0.223 Inexact Rounded
1926
+ pwsx3895 power 0.497 0.5 -> 0.705 Inexact Rounded
1927
+ pwsx3896 power 0.0497 0.5 -> 0.223 Inexact Rounded
1928
+ pwsx3897 power 0.498 0.5 -> 0.706 Inexact Rounded
1929
+ pwsx3898 power 0.0498 0.5 -> 0.223 Inexact Rounded
1930
+ pwsx3899 power 0.499 0.5 -> 0.706 Inexact Rounded
1931
+ pwsx3900 power 0.0499 0.5 -> 0.223 Inexact Rounded
1932
+ pwsx3901 power 0.501 0.5 -> 0.708 Inexact Rounded
1933
+ pwsx3902 power 0.0501 0.5 -> 0.224 Inexact Rounded
1934
+ pwsx3903 power 0.502 0.5 -> 0.709 Inexact Rounded
1935
+ pwsx3904 power 0.0502 0.5 -> 0.224 Inexact Rounded
1936
+ pwsx3905 power 0.503 0.5 -> 0.709 Inexact Rounded
1937
+ pwsx3906 power 0.0503 0.5 -> 0.224 Inexact Rounded
1938
+ pwsx3907 power 0.504 0.5 -> 0.710 Inexact Rounded
1939
+ pwsx3908 power 0.0504 0.5 -> 0.224 Inexact Rounded
1940
+ pwsx3909 power 0.505 0.5 -> 0.711 Inexact Rounded
1941
+ pwsx3910 power 0.0505 0.5 -> 0.225 Inexact Rounded
1942
+ pwsx3911 power 0.506 0.5 -> 0.711 Inexact Rounded
1943
+ pwsx3912 power 0.0506 0.5 -> 0.225 Inexact Rounded
1944
+ pwsx3913 power 0.507 0.5 -> 0.712 Inexact Rounded
1945
+ pwsx3914 power 0.0507 0.5 -> 0.225 Inexact Rounded
1946
+ pwsx3915 power 0.508 0.5 -> 0.713 Inexact Rounded
1947
+ pwsx3916 power 0.0508 0.5 -> 0.225 Inexact Rounded
1948
+ pwsx3917 power 0.509 0.5 -> 0.713 Inexact Rounded
1949
+ pwsx3918 power 0.0509 0.5 -> 0.226 Inexact Rounded
1950
+ pwsx3919 power 0.511 0.5 -> 0.715 Inexact Rounded
1951
+ pwsx3920 power 0.0511 0.5 -> 0.226 Inexact Rounded
1952
+ pwsx3921 power 0.512 0.5 -> 0.716 Inexact Rounded
1953
+ pwsx3922 power 0.0512 0.5 -> 0.226 Inexact Rounded
1954
+ pwsx3923 power 0.513 0.5 -> 0.716 Inexact Rounded
1955
+ pwsx3924 power 0.0513 0.5 -> 0.226 Inexact Rounded
1956
+ pwsx3925 power 0.514 0.5 -> 0.717 Inexact Rounded
1957
+ pwsx3926 power 0.0514 0.5 -> 0.227 Inexact Rounded
1958
+ pwsx3927 power 0.515 0.5 -> 0.718 Inexact Rounded
1959
+ pwsx3928 power 0.0515 0.5 -> 0.227 Inexact Rounded
1960
+ pwsx3929 power 0.516 0.5 -> 0.718 Inexact Rounded
1961
+ pwsx3930 power 0.0516 0.5 -> 0.227 Inexact Rounded
1962
+ pwsx3931 power 0.517 0.5 -> 0.719 Inexact Rounded
1963
+ pwsx3932 power 0.0517 0.5 -> 0.227 Inexact Rounded
1964
+ pwsx3933 power 0.518 0.5 -> 0.720 Inexact Rounded
1965
+ pwsx3934 power 0.0518 0.5 -> 0.228 Inexact Rounded
1966
+ pwsx3935 power 0.519 0.5 -> 0.720 Inexact Rounded
1967
+ pwsx3936 power 0.0519 0.5 -> 0.228 Inexact Rounded
1968
+ pwsx3937 power 0.521 0.5 -> 0.722 Inexact Rounded
1969
+ pwsx3938 power 0.0521 0.5 -> 0.228 Inexact Rounded
1970
+ pwsx3939 power 0.522 0.5 -> 0.722 Inexact Rounded
1971
+ pwsx3940 power 0.0522 0.5 -> 0.228 Inexact Rounded
1972
+ pwsx3941 power 0.523 0.5 -> 0.723 Inexact Rounded
1973
+ pwsx3942 power 0.0523 0.5 -> 0.229 Inexact Rounded
1974
+ pwsx3943 power 0.524 0.5 -> 0.724 Inexact Rounded
1975
+ pwsx3944 power 0.0524 0.5 -> 0.229 Inexact Rounded
1976
+ pwsx3945 power 0.525 0.5 -> 0.725 Inexact Rounded
1977
+ pwsx3946 power 0.0525 0.5 -> 0.229 Inexact Rounded
1978
+ pwsx3947 power 0.526 0.5 -> 0.725 Inexact Rounded
1979
+ pwsx3948 power 0.0526 0.5 -> 0.229 Inexact Rounded
1980
+ pwsx3949 power 0.527 0.5 -> 0.726 Inexact Rounded
1981
+ pwsx3950 power 0.0527 0.5 -> 0.230 Inexact Rounded
1982
+ pwsx3951 power 0.528 0.5 -> 0.727 Inexact Rounded
1983
+ pwsx3952 power 0.0528 0.5 -> 0.230 Inexact Rounded
1984
+ pwsx3953 power 0.529 0.5 -> 0.727 Inexact Rounded
1985
+ pwsx3954 power 0.0529 0.5 -> 0.230 Inexact Rounded
1986
+ pwsx3955 power 0.531 0.5 -> 0.729 Inexact Rounded
1987
+ pwsx3956 power 0.0531 0.5 -> 0.230 Inexact Rounded
1988
+ pwsx3957 power 0.532 0.5 -> 0.729 Inexact Rounded
1989
+ pwsx3958 power 0.0532 0.5 -> 0.231 Inexact Rounded
1990
+ pwsx3959 power 0.533 0.5 -> 0.730 Inexact Rounded
1991
+ pwsx3960 power 0.0533 0.5 -> 0.231 Inexact Rounded
1992
+ pwsx3961 power 0.534 0.5 -> 0.731 Inexact Rounded
1993
+ pwsx3962 power 0.0534 0.5 -> 0.231 Inexact Rounded
1994
+ pwsx3963 power 0.535 0.5 -> 0.731 Inexact Rounded
1995
+ pwsx3964 power 0.0535 0.5 -> 0.231 Inexact Rounded
1996
+ pwsx3965 power 0.536 0.5 -> 0.732 Inexact Rounded
1997
+ pwsx3966 power 0.0536 0.5 -> 0.232 Inexact Rounded
1998
+ pwsx3967 power 0.537 0.5 -> 0.733 Inexact Rounded
1999
+ pwsx3968 power 0.0537 0.5 -> 0.232 Inexact Rounded
2000
+ pwsx3969 power 0.538 0.5 -> 0.733 Inexact Rounded
2001
+ pwsx3970 power 0.0538 0.5 -> 0.232 Inexact Rounded
2002
+ pwsx3971 power 0.539 0.5 -> 0.734 Inexact Rounded
2003
+ pwsx3972 power 0.0539 0.5 -> 0.232 Inexact Rounded
2004
+ pwsx3973 power 0.541 0.5 -> 0.736 Inexact Rounded
2005
+ pwsx3974 power 0.0541 0.5 -> 0.233 Inexact Rounded
2006
+ pwsx3975 power 0.542 0.5 -> 0.736 Inexact Rounded
2007
+ pwsx3976 power 0.0542 0.5 -> 0.233 Inexact Rounded
2008
+ pwsx3977 power 0.543 0.5 -> 0.737 Inexact Rounded
2009
+ pwsx3978 power 0.0543 0.5 -> 0.233 Inexact Rounded
2010
+ pwsx3979 power 0.544 0.5 -> 0.738 Inexact Rounded
2011
+ pwsx3980 power 0.0544 0.5 -> 0.233 Inexact Rounded
2012
+ pwsx3981 power 0.545 0.5 -> 0.738 Inexact Rounded
2013
+ pwsx3982 power 0.0545 0.5 -> 0.233 Inexact Rounded
2014
+ pwsx3983 power 0.546 0.5 -> 0.739 Inexact Rounded
2015
+ pwsx3984 power 0.0546 0.5 -> 0.234 Inexact Rounded
2016
+ pwsx3985 power 0.547 0.5 -> 0.740 Inexact Rounded
2017
+ pwsx3986 power 0.0547 0.5 -> 0.234 Inexact Rounded
2018
+ pwsx3987 power 0.548 0.5 -> 0.740 Inexact Rounded
2019
+ pwsx3988 power 0.0548 0.5 -> 0.234 Inexact Rounded
2020
+ pwsx3989 power 0.549 0.5 -> 0.741 Inexact Rounded
2021
+ pwsx3990 power 0.0549 0.5 -> 0.234 Inexact Rounded
2022
+ pwsx3991 power 0.551 0.5 -> 0.742 Inexact Rounded
2023
+ pwsx3992 power 0.0551 0.5 -> 0.235 Inexact Rounded
2024
+ pwsx3993 power 0.552 0.5 -> 0.743 Inexact Rounded
2025
+ pwsx3994 power 0.0552 0.5 -> 0.235 Inexact Rounded
2026
+ pwsx3995 power 0.553 0.5 -> 0.744 Inexact Rounded
2027
+ pwsx3996 power 0.0553 0.5 -> 0.235 Inexact Rounded
2028
+ pwsx3997 power 0.554 0.5 -> 0.744 Inexact Rounded
2029
+ pwsx3998 power 0.0554 0.5 -> 0.235 Inexact Rounded
2030
+ pwsx3999 power 0.555 0.5 -> 0.745 Inexact Rounded
2031
+ pwsx4000 power 0.0555 0.5 -> 0.236 Inexact Rounded
2032
+ pwsx4001 power 0.556 0.5 -> 0.746 Inexact Rounded
2033
+ pwsx4002 power 0.0556 0.5 -> 0.236 Inexact Rounded
2034
+ pwsx4003 power 0.557 0.5 -> 0.746 Inexact Rounded
2035
+ pwsx4004 power 0.0557 0.5 -> 0.236 Inexact Rounded
2036
+ pwsx4005 power 0.558 0.5 -> 0.747 Inexact Rounded
2037
+ pwsx4006 power 0.0558 0.5 -> 0.236 Inexact Rounded
2038
+ pwsx4007 power 0.559 0.5 -> 0.748 Inexact Rounded
2039
+ pwsx4008 power 0.0559 0.5 -> 0.236 Inexact Rounded
2040
+ pwsx4009 power 0.561 0.5 -> 0.749 Inexact Rounded
2041
+ pwsx4010 power 0.0561 0.5 -> 0.237 Inexact Rounded
2042
+ pwsx4011 power 0.562 0.5 -> 0.750 Inexact Rounded
2043
+ pwsx4012 power 0.0562 0.5 -> 0.237 Inexact Rounded
2044
+ pwsx4013 power 0.563 0.5 -> 0.750 Inexact Rounded
2045
+ pwsx4014 power 0.0563 0.5 -> 0.237 Inexact Rounded
2046
+ pwsx4015 power 0.564 0.5 -> 0.751 Inexact Rounded
2047
+ pwsx4016 power 0.0564 0.5 -> 0.237 Inexact Rounded
2048
+ pwsx4017 power 0.565 0.5 -> 0.752 Inexact Rounded
2049
+ pwsx4018 power 0.0565 0.5 -> 0.238 Inexact Rounded
2050
+ pwsx4019 power 0.566 0.5 -> 0.752 Inexact Rounded
2051
+ pwsx4020 power 0.0566 0.5 -> 0.238 Inexact Rounded
2052
+ pwsx4021 power 0.567 0.5 -> 0.753 Inexact Rounded
2053
+ pwsx4022 power 0.0567 0.5 -> 0.238 Inexact Rounded
2054
+ pwsx4023 power 0.568 0.5 -> 0.754 Inexact Rounded
2055
+ pwsx4024 power 0.0568 0.5 -> 0.238 Inexact Rounded
2056
+ pwsx4025 power 0.569 0.5 -> 0.754 Inexact Rounded
2057
+ pwsx4026 power 0.0569 0.5 -> 0.239 Inexact Rounded
2058
+ pwsx4027 power 0.571 0.5 -> 0.756 Inexact Rounded
2059
+ pwsx4028 power 0.0571 0.5 -> 0.239 Inexact Rounded
2060
+ pwsx4029 power 0.572 0.5 -> 0.756 Inexact Rounded
2061
+ pwsx4030 power 0.0572 0.5 -> 0.239 Inexact Rounded
2062
+ pwsx4031 power 0.573 0.5 -> 0.757 Inexact Rounded
2063
+ pwsx4032 power 0.0573 0.5 -> 0.239 Inexact Rounded
2064
+ pwsx4033 power 0.574 0.5 -> 0.758 Inexact Rounded
2065
+ pwsx4034 power 0.0574 0.5 -> 0.240 Inexact Rounded
2066
+ pwsx4035 power 0.575 0.5 -> 0.758 Inexact Rounded
2067
+ pwsx4036 power 0.0575 0.5 -> 0.240 Inexact Rounded
2068
+ pwsx4037 power 0.576 0.5 -> 0.759 Inexact Rounded
2069
+ pwsx4038 power 0.0576 0.5 -> 0.240 Inexact Rounded
2070
+ pwsx4039 power 0.577 0.5 -> 0.760 Inexact Rounded
2071
+ pwsx4040 power 0.0577 0.5 -> 0.240 Inexact Rounded
2072
+ pwsx4041 power 0.578 0.5 -> 0.760 Inexact Rounded
2073
+ pwsx4042 power 0.0578 0.5 -> 0.240 Inexact Rounded
2074
+ pwsx4043 power 0.579 0.5 -> 0.761 Inexact Rounded
2075
+ pwsx4044 power 0.0579 0.5 -> 0.241 Inexact Rounded
2076
+ pwsx4045 power 0.581 0.5 -> 0.762 Inexact Rounded
2077
+ pwsx4046 power 0.0581 0.5 -> 0.241 Inexact Rounded
2078
+ pwsx4047 power 0.582 0.5 -> 0.763 Inexact Rounded
2079
+ pwsx4048 power 0.0582 0.5 -> 0.241 Inexact Rounded
2080
+ pwsx4049 power 0.583 0.5 -> 0.764 Inexact Rounded
2081
+ pwsx4050 power 0.0583 0.5 -> 0.241 Inexact Rounded
2082
+ pwsx4051 power 0.584 0.5 -> 0.764 Inexact Rounded
2083
+ pwsx4052 power 0.0584 0.5 -> 0.242 Inexact Rounded
2084
+ pwsx4053 power 0.585 0.5 -> 0.765 Inexact Rounded
2085
+ pwsx4054 power 0.0585 0.5 -> 0.242 Inexact Rounded
2086
+ pwsx4055 power 0.586 0.5 -> 0.766 Inexact Rounded
2087
+ pwsx4056 power 0.0586 0.5 -> 0.242 Inexact Rounded
2088
+ pwsx4057 power 0.587 0.5 -> 0.766 Inexact Rounded
2089
+ pwsx4058 power 0.0587 0.5 -> 0.242 Inexact Rounded
2090
+ pwsx4059 power 0.588 0.5 -> 0.767 Inexact Rounded
2091
+ pwsx4060 power 0.0588 0.5 -> 0.242 Inexact Rounded
2092
+ pwsx4061 power 0.589 0.5 -> 0.767 Inexact Rounded
2093
+ pwsx4062 power 0.0589 0.5 -> 0.243 Inexact Rounded
2094
+ pwsx4063 power 0.591 0.5 -> 0.769 Inexact Rounded
2095
+ pwsx4064 power 0.0591 0.5 -> 0.243 Inexact Rounded
2096
+ pwsx4065 power 0.592 0.5 -> 0.769 Inexact Rounded
2097
+ pwsx4066 power 0.0592 0.5 -> 0.243 Inexact Rounded
2098
+ pwsx4067 power 0.593 0.5 -> 0.770 Inexact Rounded
2099
+ pwsx4068 power 0.0593 0.5 -> 0.244 Inexact Rounded
2100
+ pwsx4069 power 0.594 0.5 -> 0.771 Inexact Rounded
2101
+ pwsx4070 power 0.0594 0.5 -> 0.244 Inexact Rounded
2102
+ pwsx4071 power 0.595 0.5 -> 0.771 Inexact Rounded
2103
+ pwsx4072 power 0.0595 0.5 -> 0.244 Inexact Rounded
2104
+ pwsx4073 power 0.596 0.5 -> 0.772 Inexact Rounded
2105
+ pwsx4074 power 0.0596 0.5 -> 0.244 Inexact Rounded
2106
+ pwsx4075 power 0.597 0.5 -> 0.773 Inexact Rounded
2107
+ pwsx4076 power 0.0597 0.5 -> 0.244 Inexact Rounded
2108
+ pwsx4077 power 0.598 0.5 -> 0.773 Inexact Rounded
2109
+ pwsx4078 power 0.0598 0.5 -> 0.245 Inexact Rounded
2110
+ pwsx4079 power 0.599 0.5 -> 0.774 Inexact Rounded
2111
+ pwsx4080 power 0.0599 0.5 -> 0.245 Inexact Rounded
2112
+ pwsx4081 power 0.601 0.5 -> 0.775 Inexact Rounded
2113
+ pwsx4082 power 0.0601 0.5 -> 0.245 Inexact Rounded
2114
+ pwsx4083 power 0.602 0.5 -> 0.776 Inexact Rounded
2115
+ pwsx4084 power 0.0602 0.5 -> 0.245 Inexact Rounded
2116
+ pwsx4085 power 0.603 0.5 -> 0.777 Inexact Rounded
2117
+ pwsx4086 power 0.0603 0.5 -> 0.246 Inexact Rounded
2118
+ pwsx4087 power 0.604 0.5 -> 0.777 Inexact Rounded
2119
+ pwsx4088 power 0.0604 0.5 -> 0.246 Inexact Rounded
2120
+ pwsx4089 power 0.605 0.5 -> 0.778 Inexact Rounded
2121
+ pwsx4090 power 0.0605 0.5 -> 0.246 Inexact Rounded
2122
+ pwsx4091 power 0.606 0.5 -> 0.778 Inexact Rounded
2123
+ pwsx4092 power 0.0606 0.5 -> 0.246 Inexact Rounded
2124
+ pwsx4093 power 0.607 0.5 -> 0.779 Inexact Rounded
2125
+ pwsx4094 power 0.0607 0.5 -> 0.246 Inexact Rounded
2126
+ pwsx4095 power 0.608 0.5 -> 0.780 Inexact Rounded
2127
+ pwsx4096 power 0.0608 0.5 -> 0.247 Inexact Rounded
2128
+ pwsx4097 power 0.609 0.5 -> 0.780 Inexact Rounded
2129
+ pwsx4098 power 0.0609 0.5 -> 0.247 Inexact Rounded
2130
+ pwsx4099 power 0.611 0.5 -> 0.782 Inexact Rounded
2131
+ pwsx4100 power 0.0611 0.5 -> 0.247 Inexact Rounded
2132
+ pwsx4101 power 0.612 0.5 -> 0.782 Inexact Rounded
2133
+ pwsx4102 power 0.0612 0.5 -> 0.247 Inexact Rounded
2134
+ pwsx4103 power 0.613 0.5 -> 0.783 Inexact Rounded
2135
+ pwsx4104 power 0.0613 0.5 -> 0.248 Inexact Rounded
2136
+ pwsx4105 power 0.614 0.5 -> 0.784 Inexact Rounded
2137
+ pwsx4106 power 0.0614 0.5 -> 0.248 Inexact Rounded
2138
+ pwsx4107 power 0.615 0.5 -> 0.784 Inexact Rounded
2139
+ pwsx4108 power 0.0615 0.5 -> 0.248 Inexact Rounded
2140
+ pwsx4109 power 0.616 0.5 -> 0.785 Inexact Rounded
2141
+ pwsx4110 power 0.0616 0.5 -> 0.248 Inexact Rounded
2142
+ pwsx4111 power 0.617 0.5 -> 0.785 Inexact Rounded
2143
+ pwsx4112 power 0.0617 0.5 -> 0.248 Inexact Rounded
2144
+ pwsx4113 power 0.618 0.5 -> 0.786 Inexact Rounded
2145
+ pwsx4114 power 0.0618 0.5 -> 0.249 Inexact Rounded
2146
+ pwsx4115 power 0.619 0.5 -> 0.787 Inexact Rounded
2147
+ pwsx4116 power 0.0619 0.5 -> 0.249 Inexact Rounded
2148
+ pwsx4117 power 0.621 0.5 -> 0.788 Inexact Rounded
2149
+ pwsx4118 power 0.0621 0.5 -> 0.249 Inexact Rounded
2150
+ pwsx4119 power 0.622 0.5 -> 0.789 Inexact Rounded
2151
+ pwsx4120 power 0.0622 0.5 -> 0.249 Inexact Rounded
2152
+ pwsx4121 power 0.623 0.5 -> 0.789 Inexact Rounded
2153
+ pwsx4122 power 0.0623 0.5 -> 0.250 Inexact Rounded
2154
+ pwsx4123 power 0.624 0.5 -> 0.790 Inexact Rounded
2155
+ pwsx4124 power 0.0624 0.5 -> 0.250 Inexact Rounded
2156
+ pwsx4125 power 0.625 0.5 -> 0.791 Inexact Rounded
2157
+ pwsx4126 power 0.0625 0.5 -> 0.250 Inexact Rounded
2158
+ pwsx4127 power 0.626 0.5 -> 0.791 Inexact Rounded
2159
+ pwsx4128 power 0.0626 0.5 -> 0.250 Inexact Rounded
2160
+ pwsx4129 power 0.627 0.5 -> 0.792 Inexact Rounded
2161
+ pwsx4130 power 0.0627 0.5 -> 0.250 Inexact Rounded
2162
+ pwsx4131 power 0.628 0.5 -> 0.792 Inexact Rounded
2163
+ pwsx4132 power 0.0628 0.5 -> 0.251 Inexact Rounded
2164
+ pwsx4133 power 0.629 0.5 -> 0.793 Inexact Rounded
2165
+ pwsx4134 power 0.0629 0.5 -> 0.251 Inexact Rounded
2166
+ pwsx4135 power 0.631 0.5 -> 0.794 Inexact Rounded
2167
+ pwsx4136 power 0.0631 0.5 -> 0.251 Inexact Rounded
2168
+ pwsx4137 power 0.632 0.5 -> 0.795 Inexact Rounded
2169
+ pwsx4138 power 0.0632 0.5 -> 0.251 Inexact Rounded
2170
+ pwsx4139 power 0.633 0.5 -> 0.796 Inexact Rounded
2171
+ pwsx4140 power 0.0633 0.5 -> 0.252 Inexact Rounded
2172
+ pwsx4141 power 0.634 0.5 -> 0.796 Inexact Rounded
2173
+ pwsx4142 power 0.0634 0.5 -> 0.252 Inexact Rounded
2174
+ pwsx4143 power 0.635 0.5 -> 0.797 Inexact Rounded
2175
+ pwsx4144 power 0.0635 0.5 -> 0.252 Inexact Rounded
2176
+ pwsx4145 power 0.636 0.5 -> 0.797 Inexact Rounded
2177
+ pwsx4146 power 0.0636 0.5 -> 0.252 Inexact Rounded
2178
+ pwsx4147 power 0.637 0.5 -> 0.798 Inexact Rounded
2179
+ pwsx4148 power 0.0637 0.5 -> 0.252 Inexact Rounded
2180
+ pwsx4149 power 0.638 0.5 -> 0.799 Inexact Rounded
2181
+ pwsx4150 power 0.0638 0.5 -> 0.253 Inexact Rounded
2182
+ pwsx4151 power 0.639 0.5 -> 0.799 Inexact Rounded
2183
+ pwsx4152 power 0.0639 0.5 -> 0.253 Inexact Rounded
2184
+ pwsx4153 power 0.641 0.5 -> 0.801 Inexact Rounded
2185
+ pwsx4154 power 0.0641 0.5 -> 0.253 Inexact Rounded
2186
+ pwsx4155 power 0.642 0.5 -> 0.801 Inexact Rounded
2187
+ pwsx4156 power 0.0642 0.5 -> 0.253 Inexact Rounded
2188
+ pwsx4157 power 0.643 0.5 -> 0.802 Inexact Rounded
2189
+ pwsx4158 power 0.0643 0.5 -> 0.254 Inexact Rounded
2190
+ pwsx4159 power 0.644 0.5 -> 0.802 Inexact Rounded
2191
+ pwsx4160 power 0.0644 0.5 -> 0.254 Inexact Rounded
2192
+ pwsx4161 power 0.645 0.5 -> 0.803 Inexact Rounded
2193
+ pwsx4162 power 0.0645 0.5 -> 0.254 Inexact Rounded
2194
+ pwsx4163 power 0.646 0.5 -> 0.804 Inexact Rounded
2195
+ pwsx4164 power 0.0646 0.5 -> 0.254 Inexact Rounded
2196
+ pwsx4165 power 0.647 0.5 -> 0.804 Inexact Rounded
2197
+ pwsx4166 power 0.0647 0.5 -> 0.254 Inexact Rounded
2198
+ pwsx4167 power 0.648 0.5 -> 0.805 Inexact Rounded
2199
+ pwsx4168 power 0.0648 0.5 -> 0.255 Inexact Rounded
2200
+ pwsx4169 power 0.649 0.5 -> 0.806 Inexact Rounded
2201
+ pwsx4170 power 0.0649 0.5 -> 0.255 Inexact Rounded
2202
+ pwsx4171 power 0.651 0.5 -> 0.807 Inexact Rounded
2203
+ pwsx4172 power 0.0651 0.5 -> 0.255 Inexact Rounded
2204
+ pwsx4173 power 0.652 0.5 -> 0.807 Inexact Rounded
2205
+ pwsx4174 power 0.0652 0.5 -> 0.255 Inexact Rounded
2206
+ pwsx4175 power 0.653 0.5 -> 0.808 Inexact Rounded
2207
+ pwsx4176 power 0.0653 0.5 -> 0.256 Inexact Rounded
2208
+ pwsx4177 power 0.654 0.5 -> 0.809 Inexact Rounded
2209
+ pwsx4178 power 0.0654 0.5 -> 0.256 Inexact Rounded
2210
+ pwsx4179 power 0.655 0.5 -> 0.809 Inexact Rounded
2211
+ pwsx4180 power 0.0655 0.5 -> 0.256 Inexact Rounded
2212
+ pwsx4181 power 0.656 0.5 -> 0.810 Inexact Rounded
2213
+ pwsx4182 power 0.0656 0.5 -> 0.256 Inexact Rounded
2214
+ pwsx4183 power 0.657 0.5 -> 0.811 Inexact Rounded
2215
+ pwsx4184 power 0.0657 0.5 -> 0.256 Inexact Rounded
2216
+ pwsx4185 power 0.658 0.5 -> 0.811 Inexact Rounded
2217
+ pwsx4186 power 0.0658 0.5 -> 0.257 Inexact Rounded
2218
+ pwsx4187 power 0.659 0.5 -> 0.812 Inexact Rounded
2219
+ pwsx4188 power 0.0659 0.5 -> 0.257 Inexact Rounded
2220
+ pwsx4189 power 0.661 0.5 -> 0.813 Inexact Rounded
2221
+ pwsx4190 power 0.0661 0.5 -> 0.257 Inexact Rounded
2222
+ pwsx4191 power 0.662 0.5 -> 0.814 Inexact Rounded
2223
+ pwsx4192 power 0.0662 0.5 -> 0.257 Inexact Rounded
2224
+ pwsx4193 power 0.663 0.5 -> 0.814 Inexact Rounded
2225
+ pwsx4194 power 0.0663 0.5 -> 0.257 Inexact Rounded
2226
+ pwsx4195 power 0.664 0.5 -> 0.815 Inexact Rounded
2227
+ pwsx4196 power 0.0664 0.5 -> 0.258 Inexact Rounded
2228
+ pwsx4197 power 0.665 0.5 -> 0.815 Inexact Rounded
2229
+ pwsx4198 power 0.0665 0.5 -> 0.258 Inexact Rounded
2230
+ pwsx4199 power 0.666 0.5 -> 0.816 Inexact Rounded
2231
+ pwsx4200 power 0.0666 0.5 -> 0.258 Inexact Rounded
2232
+ pwsx4201 power 0.667 0.5 -> 0.817 Inexact Rounded
2233
+ pwsx4202 power 0.0667 0.5 -> 0.258 Inexact Rounded
2234
+ pwsx4203 power 0.668 0.5 -> 0.817 Inexact Rounded
2235
+ pwsx4204 power 0.0668 0.5 -> 0.258 Inexact Rounded
2236
+ pwsx4205 power 0.669 0.5 -> 0.818 Inexact Rounded
2237
+ pwsx4206 power 0.0669 0.5 -> 0.259 Inexact Rounded
2238
+ pwsx4207 power 0.671 0.5 -> 0.819 Inexact Rounded
2239
+ pwsx4208 power 0.0671 0.5 -> 0.259 Inexact Rounded
2240
+ pwsx4209 power 0.672 0.5 -> 0.820 Inexact Rounded
2241
+ pwsx4210 power 0.0672 0.5 -> 0.259 Inexact Rounded
2242
+ pwsx4211 power 0.673 0.5 -> 0.820 Inexact Rounded
2243
+ pwsx4212 power 0.0673 0.5 -> 0.259 Inexact Rounded
2244
+ pwsx4213 power 0.674 0.5 -> 0.821 Inexact Rounded
2245
+ pwsx4214 power 0.0674 0.5 -> 0.260 Inexact Rounded
2246
+ pwsx4215 power 0.675 0.5 -> 0.822 Inexact Rounded
2247
+ pwsx4216 power 0.0675 0.5 -> 0.260 Inexact Rounded
2248
+ pwsx4217 power 0.676 0.5 -> 0.822 Inexact Rounded
2249
+ pwsx4218 power 0.0676 0.5 -> 0.260 Inexact Rounded
2250
+ pwsx4219 power 0.677 0.5 -> 0.823 Inexact Rounded
2251
+ pwsx4220 power 0.0677 0.5 -> 0.260 Inexact Rounded
2252
+ pwsx4221 power 0.678 0.5 -> 0.823 Inexact Rounded
2253
+ pwsx4222 power 0.0678 0.5 -> 0.260 Inexact Rounded
2254
+ pwsx4223 power 0.679 0.5 -> 0.824 Inexact Rounded
2255
+ pwsx4224 power 0.0679 0.5 -> 0.261 Inexact Rounded
2256
+ pwsx4225 power 0.681 0.5 -> 0.825 Inexact Rounded
2257
+ pwsx4226 power 0.0681 0.5 -> 0.261 Inexact Rounded
2258
+ pwsx4227 power 0.682 0.5 -> 0.826 Inexact Rounded
2259
+ pwsx4228 power 0.0682 0.5 -> 0.261 Inexact Rounded
2260
+ pwsx4229 power 0.683 0.5 -> 0.826 Inexact Rounded
2261
+ pwsx4230 power 0.0683 0.5 -> 0.261 Inexact Rounded
2262
+ pwsx4231 power 0.684 0.5 -> 0.827 Inexact Rounded
2263
+ pwsx4232 power 0.0684 0.5 -> 0.262 Inexact Rounded
2264
+ pwsx4233 power 0.685 0.5 -> 0.828 Inexact Rounded
2265
+ pwsx4234 power 0.0685 0.5 -> 0.262 Inexact Rounded
2266
+ pwsx4235 power 0.686 0.5 -> 0.828 Inexact Rounded
2267
+ pwsx4236 power 0.0686 0.5 -> 0.262 Inexact Rounded
2268
+ pwsx4237 power 0.687 0.5 -> 0.829 Inexact Rounded
2269
+ pwsx4238 power 0.0687 0.5 -> 0.262 Inexact Rounded
2270
+ pwsx4239 power 0.688 0.5 -> 0.829 Inexact Rounded
2271
+ pwsx4240 power 0.0688 0.5 -> 0.262 Inexact Rounded
2272
+ pwsx4241 power 0.689 0.5 -> 0.830 Inexact Rounded
2273
+ pwsx4242 power 0.0689 0.5 -> 0.262 Inexact Rounded
2274
+ pwsx4243 power 0.691 0.5 -> 0.831 Inexact Rounded
2275
+ pwsx4244 power 0.0691 0.5 -> 0.263 Inexact Rounded
2276
+ pwsx4245 power 0.692 0.5 -> 0.832 Inexact Rounded
2277
+ pwsx4246 power 0.0692 0.5 -> 0.263 Inexact Rounded
2278
+ pwsx4247 power 0.693 0.5 -> 0.832 Inexact Rounded
2279
+ pwsx4248 power 0.0693 0.5 -> 0.263 Inexact Rounded
2280
+ pwsx4249 power 0.694 0.5 -> 0.833 Inexact Rounded
2281
+ pwsx4250 power 0.0694 0.5 -> 0.263 Inexact Rounded
2282
+ pwsx4251 power 0.695 0.5 -> 0.834 Inexact Rounded
2283
+ pwsx4252 power 0.0695 0.5 -> 0.264 Inexact Rounded
2284
+ pwsx4253 power 0.696 0.5 -> 0.834 Inexact Rounded
2285
+ pwsx4254 power 0.0696 0.5 -> 0.264 Inexact Rounded
2286
+ pwsx4255 power 0.697 0.5 -> 0.835 Inexact Rounded
2287
+ pwsx4256 power 0.0697 0.5 -> 0.264 Inexact Rounded
2288
+ pwsx4257 power 0.698 0.5 -> 0.835 Inexact Rounded
2289
+ pwsx4258 power 0.0698 0.5 -> 0.264 Inexact Rounded
2290
+ pwsx4259 power 0.699 0.5 -> 0.836 Inexact Rounded
2291
+ pwsx4260 power 0.0699 0.5 -> 0.264 Inexact Rounded
2292
+ pwsx4261 power 0.701 0.5 -> 0.837 Inexact Rounded
2293
+ pwsx4262 power 0.0701 0.5 -> 0.265 Inexact Rounded
2294
+ pwsx4263 power 0.702 0.5 -> 0.838 Inexact Rounded
2295
+ pwsx4264 power 0.0702 0.5 -> 0.265 Inexact Rounded
2296
+ pwsx4265 power 0.703 0.5 -> 0.838 Inexact Rounded
2297
+ pwsx4266 power 0.0703 0.5 -> 0.265 Inexact Rounded
2298
+ pwsx4267 power 0.704 0.5 -> 0.839 Inexact Rounded
2299
+ pwsx4268 power 0.0704 0.5 -> 0.265 Inexact Rounded
2300
+ pwsx4269 power 0.705 0.5 -> 0.840 Inexact Rounded
2301
+ pwsx4270 power 0.0705 0.5 -> 0.266 Inexact Rounded
2302
+ pwsx4271 power 0.706 0.5 -> 0.840 Inexact Rounded
2303
+ pwsx4272 power 0.0706 0.5 -> 0.266 Inexact Rounded
2304
+ pwsx4273 power 0.707 0.5 -> 0.841 Inexact Rounded
2305
+ pwsx4274 power 0.0707 0.5 -> 0.266 Inexact Rounded
2306
+ pwsx4275 power 0.708 0.5 -> 0.841 Inexact Rounded
2307
+ pwsx4276 power 0.0708 0.5 -> 0.266 Inexact Rounded
2308
+ pwsx4277 power 0.709 0.5 -> 0.842 Inexact Rounded
2309
+ pwsx4278 power 0.0709 0.5 -> 0.266 Inexact Rounded
2310
+ pwsx4279 power 0.711 0.5 -> 0.843 Inexact Rounded
2311
+ pwsx4280 power 0.0711 0.5 -> 0.267 Inexact Rounded
2312
+ pwsx4281 power 0.712 0.5 -> 0.844 Inexact Rounded
2313
+ pwsx4282 power 0.0712 0.5 -> 0.267 Inexact Rounded
2314
+ pwsx4283 power 0.713 0.5 -> 0.844 Inexact Rounded
2315
+ pwsx4284 power 0.0713 0.5 -> 0.267 Inexact Rounded
2316
+ pwsx4285 power 0.714 0.5 -> 0.845 Inexact Rounded
2317
+ pwsx4286 power 0.0714 0.5 -> 0.267 Inexact Rounded
2318
+ pwsx4287 power 0.715 0.5 -> 0.846 Inexact Rounded
2319
+ pwsx4288 power 0.0715 0.5 -> 0.267 Inexact Rounded
2320
+ pwsx4289 power 0.716 0.5 -> 0.846 Inexact Rounded
2321
+ pwsx4290 power 0.0716 0.5 -> 0.268 Inexact Rounded
2322
+ pwsx4291 power 0.717 0.5 -> 0.847 Inexact Rounded
2323
+ pwsx4292 power 0.0717 0.5 -> 0.268 Inexact Rounded
2324
+ pwsx4293 power 0.718 0.5 -> 0.847 Inexact Rounded
2325
+ pwsx4294 power 0.0718 0.5 -> 0.268 Inexact Rounded
2326
+ pwsx4295 power 0.719 0.5 -> 0.848 Inexact Rounded
2327
+ pwsx4296 power 0.0719 0.5 -> 0.268 Inexact Rounded
2328
+ pwsx4297 power 0.721 0.5 -> 0.849 Inexact Rounded
2329
+ pwsx4298 power 0.0721 0.5 -> 0.269 Inexact Rounded
2330
+ pwsx4299 power 0.722 0.5 -> 0.850 Inexact Rounded
2331
+ pwsx4300 power 0.0722 0.5 -> 0.269 Inexact Rounded
2332
+ pwsx4301 power 0.723 0.5 -> 0.850 Inexact Rounded
2333
+ pwsx4302 power 0.0723 0.5 -> 0.269 Inexact Rounded
2334
+ pwsx4303 power 0.724 0.5 -> 0.851 Inexact Rounded
2335
+ pwsx4304 power 0.0724 0.5 -> 0.269 Inexact Rounded
2336
+ pwsx4305 power 0.725 0.5 -> 0.851 Inexact Rounded
2337
+ pwsx4306 power 0.0725 0.5 -> 0.269 Inexact Rounded
2338
+ pwsx4307 power 0.726 0.5 -> 0.852 Inexact Rounded
2339
+ pwsx4308 power 0.0726 0.5 -> 0.269 Inexact Rounded
2340
+ pwsx4309 power 0.727 0.5 -> 0.853 Inexact Rounded
2341
+ pwsx4310 power 0.0727 0.5 -> 0.270 Inexact Rounded
2342
+ pwsx4311 power 0.728 0.5 -> 0.853 Inexact Rounded
2343
+ pwsx4312 power 0.0728 0.5 -> 0.270 Inexact Rounded
2344
+ pwsx4313 power 0.729 0.5 -> 0.854 Inexact Rounded
2345
+ pwsx4314 power 0.0729 0.5 -> 0.270 Inexact Rounded
2346
+ pwsx4315 power 0.731 0.5 -> 0.855 Inexact Rounded
2347
+ pwsx4316 power 0.0731 0.5 -> 0.270 Inexact Rounded
2348
+ pwsx4317 power 0.732 0.5 -> 0.856 Inexact Rounded
2349
+ pwsx4318 power 0.0732 0.5 -> 0.271 Inexact Rounded
2350
+ pwsx4319 power 0.733 0.5 -> 0.856 Inexact Rounded
2351
+ pwsx4320 power 0.0733 0.5 -> 0.271 Inexact Rounded
2352
+ pwsx4321 power 0.734 0.5 -> 0.857 Inexact Rounded
2353
+ pwsx4322 power 0.0734 0.5 -> 0.271 Inexact Rounded
2354
+ pwsx4323 power 0.735 0.5 -> 0.857 Inexact Rounded
2355
+ pwsx4324 power 0.0735 0.5 -> 0.271 Inexact Rounded
2356
+ pwsx4325 power 0.736 0.5 -> 0.858 Inexact Rounded
2357
+ pwsx4326 power 0.0736 0.5 -> 0.271 Inexact Rounded
2358
+ pwsx4327 power 0.737 0.5 -> 0.858 Inexact Rounded
2359
+ pwsx4328 power 0.0737 0.5 -> 0.271 Inexact Rounded
2360
+ pwsx4329 power 0.738 0.5 -> 0.859 Inexact Rounded
2361
+ pwsx4330 power 0.0738 0.5 -> 0.272 Inexact Rounded
2362
+ pwsx4331 power 0.739 0.5 -> 0.860 Inexact Rounded
2363
+ pwsx4332 power 0.0739 0.5 -> 0.272 Inexact Rounded
2364
+ pwsx4333 power 0.741 0.5 -> 0.861 Inexact Rounded
2365
+ pwsx4334 power 0.0741 0.5 -> 0.272 Inexact Rounded
2366
+ pwsx4335 power 0.742 0.5 -> 0.861 Inexact Rounded
2367
+ pwsx4336 power 0.0742 0.5 -> 0.272 Inexact Rounded
2368
+ pwsx4337 power 0.743 0.5 -> 0.862 Inexact Rounded
2369
+ pwsx4338 power 0.0743 0.5 -> 0.273 Inexact Rounded
2370
+ pwsx4339 power 0.744 0.5 -> 0.863 Inexact Rounded
2371
+ pwsx4340 power 0.0744 0.5 -> 0.273 Inexact Rounded
2372
+ pwsx4341 power 0.745 0.5 -> 0.863 Inexact Rounded
2373
+ pwsx4342 power 0.0745 0.5 -> 0.273 Inexact Rounded
2374
+ pwsx4343 power 0.746 0.5 -> 0.864 Inexact Rounded
2375
+ pwsx4344 power 0.0746 0.5 -> 0.273 Inexact Rounded
2376
+ pwsx4345 power 0.747 0.5 -> 0.864 Inexact Rounded
2377
+ pwsx4346 power 0.0747 0.5 -> 0.273 Inexact Rounded
2378
+ pwsx4347 power 0.748 0.5 -> 0.865 Inexact Rounded
2379
+ pwsx4348 power 0.0748 0.5 -> 0.273 Inexact Rounded
2380
+ pwsx4349 power 0.749 0.5 -> 0.865 Inexact Rounded
2381
+ pwsx4350 power 0.0749 0.5 -> 0.274 Inexact Rounded
2382
+ pwsx4351 power 0.751 0.5 -> 0.867 Inexact Rounded
2383
+ pwsx4352 power 0.0751 0.5 -> 0.274 Inexact Rounded
2384
+ pwsx4353 power 0.752 0.5 -> 0.867 Inexact Rounded
2385
+ pwsx4354 power 0.0752 0.5 -> 0.274 Inexact Rounded
2386
+ pwsx4355 power 0.753 0.5 -> 0.868 Inexact Rounded
2387
+ pwsx4356 power 0.0753 0.5 -> 0.274 Inexact Rounded
2388
+ pwsx4357 power 0.754 0.5 -> 0.868 Inexact Rounded
2389
+ pwsx4358 power 0.0754 0.5 -> 0.275 Inexact Rounded
2390
+ pwsx4359 power 0.755 0.5 -> 0.869 Inexact Rounded
2391
+ pwsx4360 power 0.0755 0.5 -> 0.275 Inexact Rounded
2392
+ pwsx4361 power 0.756 0.5 -> 0.869 Inexact Rounded
2393
+ pwsx4362 power 0.0756 0.5 -> 0.275 Inexact Rounded
2394
+ pwsx4363 power 0.757 0.5 -> 0.870 Inexact Rounded
2395
+ pwsx4364 power 0.0757 0.5 -> 0.275 Inexact Rounded
2396
+ pwsx4365 power 0.758 0.5 -> 0.871 Inexact Rounded
2397
+ pwsx4366 power 0.0758 0.5 -> 0.275 Inexact Rounded
2398
+ pwsx4367 power 0.759 0.5 -> 0.871 Inexact Rounded
2399
+ pwsx4368 power 0.0759 0.5 -> 0.275 Inexact Rounded
2400
+ pwsx4369 power 0.761 0.5 -> 0.872 Inexact Rounded
2401
+ pwsx4370 power 0.0761 0.5 -> 0.276 Inexact Rounded
2402
+ pwsx4371 power 0.762 0.5 -> 0.873 Inexact Rounded
2403
+ pwsx4372 power 0.0762 0.5 -> 0.276 Inexact Rounded
2404
+ pwsx4373 power 0.763 0.5 -> 0.873 Inexact Rounded
2405
+ pwsx4374 power 0.0763 0.5 -> 0.276 Inexact Rounded
2406
+ pwsx4375 power 0.764 0.5 -> 0.874 Inexact Rounded
2407
+ pwsx4376 power 0.0764 0.5 -> 0.276 Inexact Rounded
2408
+ pwsx4377 power 0.765 0.5 -> 0.875 Inexact Rounded
2409
+ pwsx4378 power 0.0765 0.5 -> 0.277 Inexact Rounded
2410
+ pwsx4379 power 0.766 0.5 -> 0.875 Inexact Rounded
2411
+ pwsx4380 power 0.0766 0.5 -> 0.277 Inexact Rounded
2412
+ pwsx4381 power 0.767 0.5 -> 0.876 Inexact Rounded
2413
+ pwsx4382 power 0.0767 0.5 -> 0.277 Inexact Rounded
2414
+ pwsx4383 power 0.768 0.5 -> 0.876 Inexact Rounded
2415
+ pwsx4384 power 0.0768 0.5 -> 0.277 Inexact Rounded
2416
+ pwsx4385 power 0.769 0.5 -> 0.877 Inexact Rounded
2417
+ pwsx4386 power 0.0769 0.5 -> 0.277 Inexact Rounded
2418
+ pwsx4387 power 0.771 0.5 -> 0.878 Inexact Rounded
2419
+ pwsx4388 power 0.0771 0.5 -> 0.278 Inexact Rounded
2420
+ pwsx4389 power 0.772 0.5 -> 0.879 Inexact Rounded
2421
+ pwsx4390 power 0.0772 0.5 -> 0.278 Inexact Rounded
2422
+ pwsx4391 power 0.773 0.5 -> 0.879 Inexact Rounded
2423
+ pwsx4392 power 0.0773 0.5 -> 0.278 Inexact Rounded
2424
+ pwsx4393 power 0.774 0.5 -> 0.880 Inexact Rounded
2425
+ pwsx4394 power 0.0774 0.5 -> 0.278 Inexact Rounded
2426
+ pwsx4395 power 0.775 0.5 -> 0.880 Inexact Rounded
2427
+ pwsx4396 power 0.0775 0.5 -> 0.278 Inexact Rounded
2428
+ pwsx4397 power 0.776 0.5 -> 0.881 Inexact Rounded
2429
+ pwsx4398 power 0.0776 0.5 -> 0.279 Inexact Rounded
2430
+ pwsx4399 power 0.777 0.5 -> 0.881 Inexact Rounded
2431
+ pwsx4400 power 0.0777 0.5 -> 0.279 Inexact Rounded
2432
+ pwsx4401 power 0.778 0.5 -> 0.882 Inexact Rounded
2433
+ pwsx4402 power 0.0778 0.5 -> 0.279 Inexact Rounded
2434
+ pwsx4403 power 0.779 0.5 -> 0.883 Inexact Rounded
2435
+ pwsx4404 power 0.0779 0.5 -> 0.279 Inexact Rounded
2436
+ pwsx4405 power 0.781 0.5 -> 0.884 Inexact Rounded
2437
+ pwsx4406 power 0.0781 0.5 -> 0.279 Inexact Rounded
2438
+ pwsx4407 power 0.782 0.5 -> 0.884 Inexact Rounded
2439
+ pwsx4408 power 0.0782 0.5 -> 0.280 Inexact Rounded
2440
+ pwsx4409 power 0.783 0.5 -> 0.885 Inexact Rounded
2441
+ pwsx4410 power 0.0783 0.5 -> 0.280 Inexact Rounded
2442
+ pwsx4411 power 0.784 0.5 -> 0.885 Inexact Rounded
2443
+ pwsx4412 power 0.0784 0.5 -> 0.280 Inexact Rounded
2444
+ pwsx4413 power 0.785 0.5 -> 0.886 Inexact Rounded
2445
+ pwsx4414 power 0.0785 0.5 -> 0.280 Inexact Rounded
2446
+ pwsx4415 power 0.786 0.5 -> 0.887 Inexact Rounded
2447
+ pwsx4416 power 0.0786 0.5 -> 0.280 Inexact Rounded
2448
+ pwsx4417 power 0.787 0.5 -> 0.887 Inexact Rounded
2449
+ pwsx4418 power 0.0787 0.5 -> 0.281 Inexact Rounded
2450
+ pwsx4419 power 0.788 0.5 -> 0.888 Inexact Rounded
2451
+ pwsx4420 power 0.0788 0.5 -> 0.281 Inexact Rounded
2452
+ pwsx4421 power 0.789 0.5 -> 0.888 Inexact Rounded
2453
+ pwsx4422 power 0.0789 0.5 -> 0.281 Inexact Rounded
2454
+ pwsx4423 power 0.791 0.5 -> 0.889 Inexact Rounded
2455
+ pwsx4424 power 0.0791 0.5 -> 0.281 Inexact Rounded
2456
+ pwsx4425 power 0.792 0.5 -> 0.890 Inexact Rounded
2457
+ pwsx4426 power 0.0792 0.5 -> 0.281 Inexact Rounded
2458
+ pwsx4427 power 0.793 0.5 -> 0.891 Inexact Rounded
2459
+ pwsx4428 power 0.0793 0.5 -> 0.282 Inexact Rounded
2460
+ pwsx4429 power 0.794 0.5 -> 0.891 Inexact Rounded
2461
+ pwsx4430 power 0.0794 0.5 -> 0.282 Inexact Rounded
2462
+ pwsx4431 power 0.795 0.5 -> 0.892 Inexact Rounded
2463
+ pwsx4432 power 0.0795 0.5 -> 0.282 Inexact Rounded
2464
+ pwsx4433 power 0.796 0.5 -> 0.892 Inexact Rounded
2465
+ pwsx4434 power 0.0796 0.5 -> 0.282 Inexact Rounded
2466
+ pwsx4435 power 0.797 0.5 -> 0.893 Inexact Rounded
2467
+ pwsx4436 power 0.0797 0.5 -> 0.282 Inexact Rounded
2468
+ pwsx4437 power 0.798 0.5 -> 0.893 Inexact Rounded
2469
+ pwsx4438 power 0.0798 0.5 -> 0.282 Inexact Rounded
2470
+ pwsx4439 power 0.799 0.5 -> 0.894 Inexact Rounded
2471
+ pwsx4440 power 0.0799 0.5 -> 0.283 Inexact Rounded
2472
+ pwsx4441 power 0.801 0.5 -> 0.895 Inexact Rounded
2473
+ pwsx4442 power 0.0801 0.5 -> 0.283 Inexact Rounded
2474
+ pwsx4443 power 0.802 0.5 -> 0.896 Inexact Rounded
2475
+ pwsx4444 power 0.0802 0.5 -> 0.283 Inexact Rounded
2476
+ pwsx4445 power 0.803 0.5 -> 0.896 Inexact Rounded
2477
+ pwsx4446 power 0.0803 0.5 -> 0.283 Inexact Rounded
2478
+ pwsx4447 power 0.804 0.5 -> 0.897 Inexact Rounded
2479
+ pwsx4448 power 0.0804 0.5 -> 0.284 Inexact Rounded
2480
+ pwsx4449 power 0.805 0.5 -> 0.897 Inexact Rounded
2481
+ pwsx4450 power 0.0805 0.5 -> 0.284 Inexact Rounded
2482
+ pwsx4451 power 0.806 0.5 -> 0.898 Inexact Rounded
2483
+ pwsx4452 power 0.0806 0.5 -> 0.284 Inexact Rounded
2484
+ pwsx4453 power 0.807 0.5 -> 0.898 Inexact Rounded
2485
+ pwsx4454 power 0.0807 0.5 -> 0.284 Inexact Rounded
2486
+ pwsx4455 power 0.808 0.5 -> 0.899 Inexact Rounded
2487
+ pwsx4456 power 0.0808 0.5 -> 0.284 Inexact Rounded
2488
+ pwsx4457 power 0.809 0.5 -> 0.899 Inexact Rounded
2489
+ pwsx4458 power 0.0809 0.5 -> 0.284 Inexact Rounded
2490
+ pwsx4459 power 0.811 0.5 -> 0.901 Inexact Rounded
2491
+ pwsx4460 power 0.0811 0.5 -> 0.285 Inexact Rounded
2492
+ pwsx4461 power 0.812 0.5 -> 0.901 Inexact Rounded
2493
+ pwsx4462 power 0.0812 0.5 -> 0.285 Inexact Rounded
2494
+ pwsx4463 power 0.813 0.5 -> 0.902 Inexact Rounded
2495
+ pwsx4464 power 0.0813 0.5 -> 0.285 Inexact Rounded
2496
+ pwsx4465 power 0.814 0.5 -> 0.902 Inexact Rounded
2497
+ pwsx4466 power 0.0814 0.5 -> 0.285 Inexact Rounded
2498
+ pwsx4467 power 0.815 0.5 -> 0.903 Inexact Rounded
2499
+ pwsx4468 power 0.0815 0.5 -> 0.285 Inexact Rounded
2500
+ pwsx4469 power 0.816 0.5 -> 0.903 Inexact Rounded
2501
+ pwsx4470 power 0.0816 0.5 -> 0.286 Inexact Rounded
2502
+ pwsx4471 power 0.817 0.5 -> 0.904 Inexact Rounded
2503
+ pwsx4472 power 0.0817 0.5 -> 0.286 Inexact Rounded
2504
+ pwsx4473 power 0.818 0.5 -> 0.904 Inexact Rounded
2505
+ pwsx4474 power 0.0818 0.5 -> 0.286 Inexact Rounded
2506
+ pwsx4475 power 0.819 0.5 -> 0.905 Inexact Rounded
2507
+ pwsx4476 power 0.0819 0.5 -> 0.286 Inexact Rounded
2508
+ pwsx4477 power 0.821 0.5 -> 0.906 Inexact Rounded
2509
+ pwsx4478 power 0.0821 0.5 -> 0.287 Inexact Rounded
2510
+ pwsx4479 power 0.822 0.5 -> 0.907 Inexact Rounded
2511
+ pwsx4480 power 0.0822 0.5 -> 0.287 Inexact Rounded
2512
+ pwsx4481 power 0.823 0.5 -> 0.907 Inexact Rounded
2513
+ pwsx4482 power 0.0823 0.5 -> 0.287 Inexact Rounded
2514
+ pwsx4483 power 0.824 0.5 -> 0.908 Inexact Rounded
2515
+ pwsx4484 power 0.0824 0.5 -> 0.287 Inexact Rounded
2516
+ pwsx4485 power 0.825 0.5 -> 0.908 Inexact Rounded
2517
+ pwsx4486 power 0.0825 0.5 -> 0.287 Inexact Rounded
2518
+ pwsx4487 power 0.826 0.5 -> 0.909 Inexact Rounded
2519
+ pwsx4488 power 0.0826 0.5 -> 0.287 Inexact Rounded
2520
+ pwsx4489 power 0.827 0.5 -> 0.909 Inexact Rounded
2521
+ pwsx4490 power 0.0827 0.5 -> 0.288 Inexact Rounded
2522
+ pwsx4491 power 0.828 0.5 -> 0.910 Inexact Rounded
2523
+ pwsx4492 power 0.0828 0.5 -> 0.288 Inexact Rounded
2524
+ pwsx4493 power 0.829 0.5 -> 0.910 Inexact Rounded
2525
+ pwsx4494 power 0.0829 0.5 -> 0.288 Inexact Rounded
2526
+ pwsx4495 power 0.831 0.5 -> 0.912 Inexact Rounded
2527
+ pwsx4496 power 0.0831 0.5 -> 0.288 Inexact Rounded
2528
+ pwsx4497 power 0.832 0.5 -> 0.912 Inexact Rounded
2529
+ pwsx4498 power 0.0832 0.5 -> 0.288 Inexact Rounded
2530
+ pwsx4499 power 0.833 0.5 -> 0.913 Inexact Rounded
2531
+ pwsx4500 power 0.0833 0.5 -> 0.289 Inexact Rounded
2532
+ pwsx4501 power 0.834 0.5 -> 0.913 Inexact Rounded
2533
+ pwsx4502 power 0.0834 0.5 -> 0.289 Inexact Rounded
2534
+ pwsx4503 power 0.835 0.5 -> 0.914 Inexact Rounded
2535
+ pwsx4504 power 0.0835 0.5 -> 0.289 Inexact Rounded
2536
+ pwsx4505 power 0.836 0.5 -> 0.914 Inexact Rounded
2537
+ pwsx4506 power 0.0836 0.5 -> 0.289 Inexact Rounded
2538
+ pwsx4507 power 0.837 0.5 -> 0.915 Inexact Rounded
2539
+ pwsx4508 power 0.0837 0.5 -> 0.289 Inexact Rounded
2540
+ pwsx4509 power 0.838 0.5 -> 0.915 Inexact Rounded
2541
+ pwsx4510 power 0.0838 0.5 -> 0.289 Inexact Rounded
2542
+ pwsx4511 power 0.839 0.5 -> 0.916 Inexact Rounded
2543
+ pwsx4512 power 0.0839 0.5 -> 0.290 Inexact Rounded
2544
+ pwsx4513 power 0.841 0.5 -> 0.917 Inexact Rounded
2545
+ pwsx4514 power 0.0841 0.5 -> 0.290 Inexact Rounded
2546
+ pwsx4515 power 0.842 0.5 -> 0.918 Inexact Rounded
2547
+ pwsx4516 power 0.0842 0.5 -> 0.290 Inexact Rounded
2548
+ pwsx4517 power 0.843 0.5 -> 0.918 Inexact Rounded
2549
+ pwsx4518 power 0.0843 0.5 -> 0.290 Inexact Rounded
2550
+ pwsx4519 power 0.844 0.5 -> 0.919 Inexact Rounded
2551
+ pwsx4520 power 0.0844 0.5 -> 0.291 Inexact Rounded
2552
+ pwsx4521 power 0.845 0.5 -> 0.919 Inexact Rounded
2553
+ pwsx4522 power 0.0845 0.5 -> 0.291 Inexact Rounded
2554
+ pwsx4523 power 0.846 0.5 -> 0.920 Inexact Rounded
2555
+ pwsx4524 power 0.0846 0.5 -> 0.291 Inexact Rounded
2556
+ pwsx4525 power 0.847 0.5 -> 0.920 Inexact Rounded
2557
+ pwsx4526 power 0.0847 0.5 -> 0.291 Inexact Rounded
2558
+ pwsx4527 power 0.848 0.5 -> 0.921 Inexact Rounded
2559
+ pwsx4528 power 0.0848 0.5 -> 0.291 Inexact Rounded
2560
+ pwsx4529 power 0.849 0.5 -> 0.921 Inexact Rounded
2561
+ pwsx4530 power 0.0849 0.5 -> 0.291 Inexact Rounded
2562
+ pwsx4531 power 0.851 0.5 -> 0.922 Inexact Rounded
2563
+ pwsx4532 power 0.0851 0.5 -> 0.292 Inexact Rounded
2564
+ pwsx4533 power 0.852 0.5 -> 0.923 Inexact Rounded
2565
+ pwsx4534 power 0.0852 0.5 -> 0.292 Inexact Rounded
2566
+ pwsx4535 power 0.853 0.5 -> 0.924 Inexact Rounded
2567
+ pwsx4536 power 0.0853 0.5 -> 0.292 Inexact Rounded
2568
+ pwsx4537 power 0.854 0.5 -> 0.924 Inexact Rounded
2569
+ pwsx4538 power 0.0854 0.5 -> 0.292 Inexact Rounded
2570
+ pwsx4539 power 0.855 0.5 -> 0.925 Inexact Rounded
2571
+ pwsx4540 power 0.0855 0.5 -> 0.292 Inexact Rounded
2572
+ pwsx4541 power 0.856 0.5 -> 0.925 Inexact Rounded
2573
+ pwsx4542 power 0.0856 0.5 -> 0.293 Inexact Rounded
2574
+ pwsx4543 power 0.857 0.5 -> 0.926 Inexact Rounded
2575
+ pwsx4544 power 0.0857 0.5 -> 0.293 Inexact Rounded
2576
+ pwsx4545 power 0.858 0.5 -> 0.926 Inexact Rounded
2577
+ pwsx4546 power 0.0858 0.5 -> 0.293 Inexact Rounded
2578
+ pwsx4547 power 0.859 0.5 -> 0.927 Inexact Rounded
2579
+ pwsx4548 power 0.0859 0.5 -> 0.293 Inexact Rounded
2580
+ pwsx4549 power 0.861 0.5 -> 0.928 Inexact Rounded
2581
+ pwsx4550 power 0.0861 0.5 -> 0.293 Inexact Rounded
2582
+ pwsx4551 power 0.862 0.5 -> 0.928 Inexact Rounded
2583
+ pwsx4552 power 0.0862 0.5 -> 0.294 Inexact Rounded
2584
+ pwsx4553 power 0.863 0.5 -> 0.929 Inexact Rounded
2585
+ pwsx4554 power 0.0863 0.5 -> 0.294 Inexact Rounded
2586
+ pwsx4555 power 0.864 0.5 -> 0.930 Inexact Rounded
2587
+ pwsx4556 power 0.0864 0.5 -> 0.294 Inexact Rounded
2588
+ pwsx4557 power 0.865 0.5 -> 0.930 Inexact Rounded
2589
+ pwsx4558 power 0.0865 0.5 -> 0.294 Inexact Rounded
2590
+ pwsx4559 power 0.866 0.5 -> 0.931 Inexact Rounded
2591
+ pwsx4560 power 0.0866 0.5 -> 0.294 Inexact Rounded
2592
+ pwsx4561 power 0.867 0.5 -> 0.931 Inexact Rounded
2593
+ pwsx4562 power 0.0867 0.5 -> 0.294 Inexact Rounded
2594
+ pwsx4563 power 0.868 0.5 -> 0.932 Inexact Rounded
2595
+ pwsx4564 power 0.0868 0.5 -> 0.295 Inexact Rounded
2596
+ pwsx4565 power 0.869 0.5 -> 0.932 Inexact Rounded
2597
+ pwsx4566 power 0.0869 0.5 -> 0.295 Inexact Rounded
2598
+ pwsx4567 power 0.871 0.5 -> 0.933 Inexact Rounded
2599
+ pwsx4568 power 0.0871 0.5 -> 0.295 Inexact Rounded
2600
+ pwsx4569 power 0.872 0.5 -> 0.934 Inexact Rounded
2601
+ pwsx4570 power 0.0872 0.5 -> 0.295 Inexact Rounded
2602
+ pwsx4571 power 0.873 0.5 -> 0.934 Inexact Rounded
2603
+ pwsx4572 power 0.0873 0.5 -> 0.295 Inexact Rounded
2604
+ pwsx4573 power 0.874 0.5 -> 0.935 Inexact Rounded
2605
+ pwsx4574 power 0.0874 0.5 -> 0.296 Inexact Rounded
2606
+ pwsx4575 power 0.875 0.5 -> 0.935 Inexact Rounded
2607
+ pwsx4576 power 0.0875 0.5 -> 0.296 Inexact Rounded
2608
+ pwsx4577 power 0.876 0.5 -> 0.936 Inexact Rounded
2609
+ pwsx4578 power 0.0876 0.5 -> 0.296 Inexact Rounded
2610
+ pwsx4579 power 0.877 0.5 -> 0.936 Inexact Rounded
2611
+ pwsx4580 power 0.0877 0.5 -> 0.296 Inexact Rounded
2612
+ pwsx4581 power 0.878 0.5 -> 0.937 Inexact Rounded
2613
+ pwsx4582 power 0.0878 0.5 -> 0.296 Inexact Rounded
2614
+ pwsx4583 power 0.879 0.5 -> 0.938 Inexact Rounded
2615
+ pwsx4584 power 0.0879 0.5 -> 0.296 Inexact Rounded
2616
+ pwsx4585 power 0.881 0.5 -> 0.939 Inexact Rounded
2617
+ pwsx4586 power 0.0881 0.5 -> 0.297 Inexact Rounded
2618
+ pwsx4587 power 0.882 0.5 -> 0.939 Inexact Rounded
2619
+ pwsx4588 power 0.0882 0.5 -> 0.297 Inexact Rounded
2620
+ pwsx4589 power 0.883 0.5 -> 0.940 Inexact Rounded
2621
+ pwsx4590 power 0.0883 0.5 -> 0.297 Inexact Rounded
2622
+ pwsx4591 power 0.884 0.5 -> 0.940 Inexact Rounded
2623
+ pwsx4592 power 0.0884 0.5 -> 0.297 Inexact Rounded
2624
+ pwsx4593 power 0.885 0.5 -> 0.941 Inexact Rounded
2625
+ pwsx4594 power 0.0885 0.5 -> 0.297 Inexact Rounded
2626
+ pwsx4595 power 0.886 0.5 -> 0.941 Inexact Rounded
2627
+ pwsx4596 power 0.0886 0.5 -> 0.298 Inexact Rounded
2628
+ pwsx4597 power 0.887 0.5 -> 0.942 Inexact Rounded
2629
+ pwsx4598 power 0.0887 0.5 -> 0.298 Inexact Rounded
2630
+ pwsx4599 power 0.888 0.5 -> 0.942 Inexact Rounded
2631
+ pwsx4600 power 0.0888 0.5 -> 0.298 Inexact Rounded
2632
+ pwsx4601 power 0.889 0.5 -> 0.943 Inexact Rounded
2633
+ pwsx4602 power 0.0889 0.5 -> 0.298 Inexact Rounded
2634
+ pwsx4603 power 0.891 0.5 -> 0.944 Inexact Rounded
2635
+ pwsx4604 power 0.0891 0.5 -> 0.298 Inexact Rounded
2636
+ pwsx4605 power 0.892 0.5 -> 0.944 Inexact Rounded
2637
+ pwsx4606 power 0.0892 0.5 -> 0.299 Inexact Rounded
2638
+ pwsx4607 power 0.893 0.5 -> 0.945 Inexact Rounded
2639
+ pwsx4608 power 0.0893 0.5 -> 0.299 Inexact Rounded
2640
+ pwsx4609 power 0.894 0.5 -> 0.946 Inexact Rounded
2641
+ pwsx4610 power 0.0894 0.5 -> 0.299 Inexact Rounded
2642
+ pwsx4611 power 0.895 0.5 -> 0.946 Inexact Rounded
2643
+ pwsx4612 power 0.0895 0.5 -> 0.299 Inexact Rounded
2644
+ pwsx4613 power 0.896 0.5 -> 0.947 Inexact Rounded
2645
+ pwsx4614 power 0.0896 0.5 -> 0.299 Inexact Rounded
2646
+ pwsx4615 power 0.897 0.5 -> 0.947 Inexact Rounded
2647
+ pwsx4616 power 0.0897 0.5 -> 0.299 Inexact Rounded
2648
+ pwsx4617 power 0.898 0.5 -> 0.948 Inexact Rounded
2649
+ pwsx4618 power 0.0898 0.5 -> 0.300 Inexact Rounded
2650
+ pwsx4619 power 0.899 0.5 -> 0.948 Inexact Rounded
2651
+ pwsx4620 power 0.0899 0.5 -> 0.300 Inexact Rounded
2652
+ pwsx4621 power 0.901 0.5 -> 0.949 Inexact Rounded
2653
+ pwsx4622 power 0.0901 0.5 -> 0.300 Inexact Rounded
2654
+ pwsx4623 power 0.902 0.5 -> 0.950 Inexact Rounded
2655
+ pwsx4624 power 0.0902 0.5 -> 0.300 Inexact Rounded
2656
+ pwsx4625 power 0.903 0.5 -> 0.950 Inexact Rounded
2657
+ pwsx4626 power 0.0903 0.5 -> 0.300 Inexact Rounded
2658
+ pwsx4627 power 0.904 0.5 -> 0.951 Inexact Rounded
2659
+ pwsx4628 power 0.0904 0.5 -> 0.301 Inexact Rounded
2660
+ pwsx4629 power 0.905 0.5 -> 0.951 Inexact Rounded
2661
+ pwsx4630 power 0.0905 0.5 -> 0.301 Inexact Rounded
2662
+ pwsx4631 power 0.906 0.5 -> 0.952 Inexact Rounded
2663
+ pwsx4632 power 0.0906 0.5 -> 0.301 Inexact Rounded
2664
+ pwsx4633 power 0.907 0.5 -> 0.952 Inexact Rounded
2665
+ pwsx4634 power 0.0907 0.5 -> 0.301 Inexact Rounded
2666
+ pwsx4635 power 0.908 0.5 -> 0.953 Inexact Rounded
2667
+ pwsx4636 power 0.0908 0.5 -> 0.301 Inexact Rounded
2668
+ pwsx4637 power 0.909 0.5 -> 0.953 Inexact Rounded
2669
+ pwsx4638 power 0.0909 0.5 -> 0.301 Inexact Rounded
2670
+ pwsx4639 power 0.911 0.5 -> 0.954 Inexact Rounded
2671
+ pwsx4640 power 0.0911 0.5 -> 0.302 Inexact Rounded
2672
+ pwsx4641 power 0.912 0.5 -> 0.955 Inexact Rounded
2673
+ pwsx4642 power 0.0912 0.5 -> 0.302 Inexact Rounded
2674
+ pwsx4643 power 0.913 0.5 -> 0.956 Inexact Rounded
2675
+ pwsx4644 power 0.0913 0.5 -> 0.302 Inexact Rounded
2676
+ pwsx4645 power 0.914 0.5 -> 0.956 Inexact Rounded
2677
+ pwsx4646 power 0.0914 0.5 -> 0.302 Inexact Rounded
2678
+ pwsx4647 power 0.915 0.5 -> 0.957 Inexact Rounded
2679
+ pwsx4648 power 0.0915 0.5 -> 0.302 Inexact Rounded
2680
+ pwsx4649 power 0.916 0.5 -> 0.957 Inexact Rounded
2681
+ pwsx4650 power 0.0916 0.5 -> 0.303 Inexact Rounded
2682
+ pwsx4651 power 0.917 0.5 -> 0.958 Inexact Rounded
2683
+ pwsx4652 power 0.0917 0.5 -> 0.303 Inexact Rounded
2684
+ pwsx4653 power 0.918 0.5 -> 0.958 Inexact Rounded
2685
+ pwsx4654 power 0.0918 0.5 -> 0.303 Inexact Rounded
2686
+ pwsx4655 power 0.919 0.5 -> 0.959 Inexact Rounded
2687
+ pwsx4656 power 0.0919 0.5 -> 0.303 Inexact Rounded
2688
+ pwsx4657 power 0.921 0.5 -> 0.960 Inexact Rounded
2689
+ pwsx4658 power 0.0921 0.5 -> 0.303 Inexact Rounded
2690
+ pwsx4659 power 0.922 0.5 -> 0.960 Inexact Rounded
2691
+ pwsx4660 power 0.0922 0.5 -> 0.304 Inexact Rounded
2692
+ pwsx4661 power 0.923 0.5 -> 0.961 Inexact Rounded
2693
+ pwsx4662 power 0.0923 0.5 -> 0.304 Inexact Rounded
2694
+ pwsx4663 power 0.924 0.5 -> 0.961 Inexact Rounded
2695
+ pwsx4664 power 0.0924 0.5 -> 0.304 Inexact Rounded
2696
+ pwsx4665 power 0.925 0.5 -> 0.962 Inexact Rounded
2697
+ pwsx4666 power 0.0925 0.5 -> 0.304 Inexact Rounded
2698
+ pwsx4667 power 0.926 0.5 -> 0.962 Inexact Rounded
2699
+ pwsx4668 power 0.0926 0.5 -> 0.304 Inexact Rounded
2700
+ pwsx4669 power 0.927 0.5 -> 0.963 Inexact Rounded
2701
+ pwsx4670 power 0.0927 0.5 -> 0.304 Inexact Rounded
2702
+ pwsx4671 power 0.928 0.5 -> 0.963 Inexact Rounded
2703
+ pwsx4672 power 0.0928 0.5 -> 0.305 Inexact Rounded
2704
+ pwsx4673 power 0.929 0.5 -> 0.964 Inexact Rounded
2705
+ pwsx4674 power 0.0929 0.5 -> 0.305 Inexact Rounded
2706
+ pwsx4675 power 0.931 0.5 -> 0.965 Inexact Rounded
2707
+ pwsx4676 power 0.0931 0.5 -> 0.305 Inexact Rounded
2708
+ pwsx4677 power 0.932 0.5 -> 0.965 Inexact Rounded
2709
+ pwsx4678 power 0.0932 0.5 -> 0.305 Inexact Rounded
2710
+ pwsx4679 power 0.933 0.5 -> 0.966 Inexact Rounded
2711
+ pwsx4680 power 0.0933 0.5 -> 0.305 Inexact Rounded
2712
+ pwsx4681 power 0.934 0.5 -> 0.966 Inexact Rounded
2713
+ pwsx4682 power 0.0934 0.5 -> 0.306 Inexact Rounded
2714
+ pwsx4683 power 0.935 0.5 -> 0.967 Inexact Rounded
2715
+ pwsx4684 power 0.0935 0.5 -> 0.306 Inexact Rounded
2716
+ pwsx4685 power 0.936 0.5 -> 0.967 Inexact Rounded
2717
+ pwsx4686 power 0.0936 0.5 -> 0.306 Inexact Rounded
2718
+ pwsx4687 power 0.937 0.5 -> 0.968 Inexact Rounded
2719
+ pwsx4688 power 0.0937 0.5 -> 0.306 Inexact Rounded
2720
+ pwsx4689 power 0.938 0.5 -> 0.969 Inexact Rounded
2721
+ pwsx4690 power 0.0938 0.5 -> 0.306 Inexact Rounded
2722
+ pwsx4691 power 0.939 0.5 -> 0.969 Inexact Rounded
2723
+ pwsx4692 power 0.0939 0.5 -> 0.306 Inexact Rounded
2724
+ pwsx4693 power 0.941 0.5 -> 0.970 Inexact Rounded
2725
+ pwsx4694 power 0.0941 0.5 -> 0.307 Inexact Rounded
2726
+ pwsx4695 power 0.942 0.5 -> 0.971 Inexact Rounded
2727
+ pwsx4696 power 0.0942 0.5 -> 0.307 Inexact Rounded
2728
+ pwsx4697 power 0.943 0.5 -> 0.971 Inexact Rounded
2729
+ pwsx4698 power 0.0943 0.5 -> 0.307 Inexact Rounded
2730
+ pwsx4699 power 0.944 0.5 -> 0.972 Inexact Rounded
2731
+ pwsx4700 power 0.0944 0.5 -> 0.307 Inexact Rounded
2732
+ pwsx4701 power 0.945 0.5 -> 0.972 Inexact Rounded
2733
+ pwsx4702 power 0.0945 0.5 -> 0.307 Inexact Rounded
2734
+ pwsx4703 power 0.946 0.5 -> 0.973 Inexact Rounded
2735
+ pwsx4704 power 0.0946 0.5 -> 0.308 Inexact Rounded
2736
+ pwsx4705 power 0.947 0.5 -> 0.973 Inexact Rounded
2737
+ pwsx4706 power 0.0947 0.5 -> 0.308 Inexact Rounded
2738
+ pwsx4707 power 0.948 0.5 -> 0.974 Inexact Rounded
2739
+ pwsx4708 power 0.0948 0.5 -> 0.308 Inexact Rounded
2740
+ pwsx4709 power 0.949 0.5 -> 0.974 Inexact Rounded
2741
+ pwsx4710 power 0.0949 0.5 -> 0.308 Inexact Rounded
2742
+ pwsx4711 power 0.951 0.5 -> 0.975 Inexact Rounded
2743
+ pwsx4712 power 0.0951 0.5 -> 0.308 Inexact Rounded
2744
+ pwsx4713 power 0.952 0.5 -> 0.976 Inexact Rounded
2745
+ pwsx4714 power 0.0952 0.5 -> 0.309 Inexact Rounded
2746
+ pwsx4715 power 0.953 0.5 -> 0.976 Inexact Rounded
2747
+ pwsx4716 power 0.0953 0.5 -> 0.309 Inexact Rounded
2748
+ pwsx4717 power 0.954 0.5 -> 0.977 Inexact Rounded
2749
+ pwsx4718 power 0.0954 0.5 -> 0.309 Inexact Rounded
2750
+ pwsx4719 power 0.955 0.5 -> 0.977 Inexact Rounded
2751
+ pwsx4720 power 0.0955 0.5 -> 0.309 Inexact Rounded
2752
+ pwsx4721 power 0.956 0.5 -> 0.978 Inexact Rounded
2753
+ pwsx4722 power 0.0956 0.5 -> 0.309 Inexact Rounded
2754
+ pwsx4723 power 0.957 0.5 -> 0.978 Inexact Rounded
2755
+ pwsx4724 power 0.0957 0.5 -> 0.309 Inexact Rounded
2756
+ pwsx4725 power 0.958 0.5 -> 0.979 Inexact Rounded
2757
+ pwsx4726 power 0.0958 0.5 -> 0.310 Inexact Rounded
2758
+ pwsx4727 power 0.959 0.5 -> 0.979 Inexact Rounded
2759
+ pwsx4728 power 0.0959 0.5 -> 0.310 Inexact Rounded
2760
+ pwsx4729 power 0.961 0.5 -> 0.980 Inexact Rounded
2761
+ pwsx4730 power 0.0961 0.5 -> 0.310 Inexact Rounded
2762
+ pwsx4731 power 0.962 0.5 -> 0.981 Inexact Rounded
2763
+ pwsx4732 power 0.0962 0.5 -> 0.310 Inexact Rounded
2764
+ pwsx4733 power 0.963 0.5 -> 0.981 Inexact Rounded
2765
+ pwsx4734 power 0.0963 0.5 -> 0.310 Inexact Rounded
2766
+ pwsx4735 power 0.964 0.5 -> 0.982 Inexact Rounded
2767
+ pwsx4736 power 0.0964 0.5 -> 0.310 Inexact Rounded
2768
+ pwsx4737 power 0.965 0.5 -> 0.982 Inexact Rounded
2769
+ pwsx4738 power 0.0965 0.5 -> 0.311 Inexact Rounded
2770
+ pwsx4739 power 0.966 0.5 -> 0.983 Inexact Rounded
2771
+ pwsx4740 power 0.0966 0.5 -> 0.311 Inexact Rounded
2772
+ pwsx4741 power 0.967 0.5 -> 0.983 Inexact Rounded
2773
+ pwsx4742 power 0.0967 0.5 -> 0.311 Inexact Rounded
2774
+ pwsx4743 power 0.968 0.5 -> 0.984 Inexact Rounded
2775
+ pwsx4744 power 0.0968 0.5 -> 0.311 Inexact Rounded
2776
+ pwsx4745 power 0.969 0.5 -> 0.984 Inexact Rounded
2777
+ pwsx4746 power 0.0969 0.5 -> 0.311 Inexact Rounded
2778
+ pwsx4747 power 0.971 0.5 -> 0.985 Inexact Rounded
2779
+ pwsx4748 power 0.0971 0.5 -> 0.312 Inexact Rounded
2780
+ pwsx4749 power 0.972 0.5 -> 0.986 Inexact Rounded
2781
+ pwsx4750 power 0.0972 0.5 -> 0.312 Inexact Rounded
2782
+ pwsx4751 power 0.973 0.5 -> 0.986 Inexact Rounded
2783
+ pwsx4752 power 0.0973 0.5 -> 0.312 Inexact Rounded
2784
+ pwsx4753 power 0.974 0.5 -> 0.987 Inexact Rounded
2785
+ pwsx4754 power 0.0974 0.5 -> 0.312 Inexact Rounded
2786
+ pwsx4755 power 0.975 0.5 -> 0.987 Inexact Rounded
2787
+ pwsx4756 power 0.0975 0.5 -> 0.312 Inexact Rounded
2788
+ pwsx4757 power 0.976 0.5 -> 0.988 Inexact Rounded
2789
+ pwsx4758 power 0.0976 0.5 -> 0.312 Inexact Rounded
2790
+ pwsx4759 power 0.977 0.5 -> 0.988 Inexact Rounded
2791
+ pwsx4760 power 0.0977 0.5 -> 0.313 Inexact Rounded
2792
+ pwsx4761 power 0.978 0.5 -> 0.989 Inexact Rounded
2793
+ pwsx4762 power 0.0978 0.5 -> 0.313 Inexact Rounded
2794
+ pwsx4763 power 0.979 0.5 -> 0.989 Inexact Rounded
2795
+ pwsx4764 power 0.0979 0.5 -> 0.313 Inexact Rounded
2796
+ pwsx4765 power 0.981 0.5 -> 0.990 Inexact Rounded
2797
+ pwsx4766 power 0.0981 0.5 -> 0.313 Inexact Rounded
2798
+ pwsx4767 power 0.982 0.5 -> 0.991 Inexact Rounded
2799
+ pwsx4768 power 0.0982 0.5 -> 0.313 Inexact Rounded
2800
+ pwsx4769 power 0.983 0.5 -> 0.991 Inexact Rounded
2801
+ pwsx4770 power 0.0983 0.5 -> 0.314 Inexact Rounded
2802
+ pwsx4771 power 0.984 0.5 -> 0.992 Inexact Rounded
2803
+ pwsx4772 power 0.0984 0.5 -> 0.314 Inexact Rounded
2804
+ pwsx4773 power 0.985 0.5 -> 0.992 Inexact Rounded
2805
+ pwsx4774 power 0.0985 0.5 -> 0.314 Inexact Rounded
2806
+ pwsx4775 power 0.986 0.5 -> 0.993 Inexact Rounded
2807
+ pwsx4776 power 0.0986 0.5 -> 0.314 Inexact Rounded
2808
+ pwsx4777 power 0.987 0.5 -> 0.993 Inexact Rounded
2809
+ pwsx4778 power 0.0987 0.5 -> 0.314 Inexact Rounded
2810
+ pwsx4779 power 0.988 0.5 -> 0.994 Inexact Rounded
2811
+ pwsx4780 power 0.0988 0.5 -> 0.314 Inexact Rounded
2812
+ pwsx4781 power 0.989 0.5 -> 0.994 Inexact Rounded
2813
+ pwsx4782 power 0.0989 0.5 -> 0.314 Inexact Rounded
2814
+ pwsx4783 power 0.991 0.5 -> 0.995 Inexact Rounded
2815
+ pwsx4784 power 0.0991 0.5 -> 0.315 Inexact Rounded
2816
+ pwsx4785 power 0.992 0.5 -> 0.996 Inexact Rounded
2817
+ pwsx4786 power 0.0992 0.5 -> 0.315 Inexact Rounded
2818
+ pwsx4787 power 0.993 0.5 -> 0.996 Inexact Rounded
2819
+ pwsx4788 power 0.0993 0.5 -> 0.315 Inexact Rounded
2820
+ pwsx4789 power 0.994 0.5 -> 0.997 Inexact Rounded
2821
+ pwsx4790 power 0.0994 0.5 -> 0.315 Inexact Rounded
2822
+ pwsx4791 power 0.995 0.5 -> 0.997 Inexact Rounded
2823
+ pwsx4792 power 0.0995 0.5 -> 0.315 Inexact Rounded
2824
+ pwsx4793 power 0.996 0.5 -> 0.998 Inexact Rounded
2825
+ pwsx4794 power 0.0996 0.5 -> 0.316 Inexact Rounded
2826
+ pwsx4795 power 0.997 0.5 -> 0.998 Inexact Rounded
2827
+ pwsx4796 power 0.0997 0.5 -> 0.316 Inexact Rounded
2828
+ pwsx4797 power 0.998 0.5 -> 0.999 Inexact Rounded
2829
+ pwsx4798 power 0.0998 0.5 -> 0.316 Inexact Rounded
2830
+ pwsx4799 power 0.999 0.5 -> 0.999 Inexact Rounded
2831
+ pwsx4800 power 0.0999 0.5 -> 0.316 Inexact Rounded
2832
+
2833
+ -- A group of precision 4 tests where Hull & Abrham adjustments are
2834
+ -- needed in some cases (both up and down) [see Hull1985b]
2835
+ rounding: half_even
2836
+ maxExponent: 999
2837
+ minexponent: -999
2838
+ precision: 4
2839
+ pwsx5001 power 0.0118 0.5 -> 0.1086 Inexact Rounded
2840
+ pwsx5002 power 0.119 0.5 -> 0.3450 Inexact Rounded
2841
+ pwsx5003 power 0.0119 0.5 -> 0.1091 Inexact Rounded
2842
+ pwsx5004 power 0.121 0.5 -> 0.3479 Inexact Rounded
2843
+ pwsx5005 power 0.0121 0.5 -> 0.1100 Inexact Rounded
2844
+ pwsx5006 power 0.122 0.5 -> 0.3493 Inexact Rounded
2845
+ pwsx5007 power 0.0122 0.5 -> 0.1105 Inexact Rounded
2846
+ pwsx5008 power 0.123 0.5 -> 0.3507 Inexact Rounded
2847
+ pwsx5009 power 0.494 0.5 -> 0.7029 Inexact Rounded
2848
+ pwsx5010 power 0.0669 0.5 -> 0.2587 Inexact Rounded
2849
+ pwsx5011 power 0.9558 0.5 -> 0.9777 Inexact Rounded
2850
+ pwsx5012 power 0.9348 0.5 -> 0.9669 Inexact Rounded
2851
+ pwsx5013 power 0.9345 0.5 -> 0.9667 Inexact Rounded
2852
+ pwsx5014 power 0.09345 0.5 -> 0.3057 Inexact Rounded
2853
+ pwsx5015 power 0.9346 0.5 -> 0.9667 Inexact Rounded
2854
+ pwsx5016 power 0.09346 0.5 -> 0.3057 Inexact Rounded
2855
+ pwsx5017 power 0.9347 0.5 -> 0.9668 Inexact Rounded
2856
+
2857
+ -- examples from decArith
2858
+ precision: 9
2859
+ pwsx700 power 0 0.5 -> '0'
2860
+ pwsx701 power -0 0.5 -> '0'
2861
+ pwsx702 power 0.39 0.5 -> 0.624499800 Inexact Rounded
2862
+ pwsx703 power 100 0.5 -> '10.0000000' Inexact Rounded
2863
+ pwsx704 power 1.00 0.5 -> '1.00000000' Inexact Rounded
2864
+ pwsx705 power 7 0.5 -> '2.64575131' Inexact Rounded
2865
+ pwsx706 power 10 0.5 -> 3.16227766 Inexact Rounded
2866
+
2867
+ -- some one-offs
2868
+ precision: 9
2869
+ pwsx711 power 0.1 0.5 -> 0.316227766 Inexact Rounded
2870
+ pwsx712 power 0.2 0.5 -> 0.447213595 Inexact Rounded
2871
+ pwsx713 power 0.3 0.5 -> 0.547722558 Inexact Rounded
2872
+ pwsx714 power 0.4 0.5 -> 0.632455532 Inexact Rounded
2873
+ pwsx715 power 0.5 0.5 -> 0.707106781 Inexact Rounded
2874
+ pwsx716 power 0.6 0.5 -> 0.774596669 Inexact Rounded
2875
+ pwsx717 power 0.7 0.5 -> 0.836660027 Inexact Rounded
2876
+ pwsx718 power 0.8 0.5 -> 0.894427191 Inexact Rounded
2877
+ pwsx719 power 0.9 0.5 -> 0.948683298 Inexact Rounded
2878
+ precision: 10 -- note no normalizatoin here
2879
+ pwsx720 power +0.1 0.5 -> 0.3162277660 Inexact Rounded
2880
+ precision: 11
2881
+ pwsx721 power +0.1 0.5 -> 0.31622776602 Inexact Rounded
2882
+ precision: 12
2883
+ pwsx722 power +0.1 0.5 -> 0.316227766017 Inexact Rounded
2884
+ precision: 9
2885
+ pwsx723 power 0.39 0.5 -> 0.624499800 Inexact Rounded
2886
+ precision: 15
2887
+ pwsx724 power 0.39 0.5 -> 0.624499799839840 Inexact Rounded
2888
+
2889
+ -- discussion cases
2890
+ precision: 7
2891
+ pwsx731 power 9 0.5 -> 3.000000 Inexact Rounded
2892
+ pwsx732 power 100 0.5 -> 10.00000 Inexact Rounded
2893
+ pwsx733 power 123 0.5 -> 11.09054 Inexact Rounded
2894
+ pwsx734 power 144 0.5 -> 12.00000 Inexact Rounded
2895
+ pwsx735 power 156 0.5 -> 12.49000 Inexact Rounded
2896
+ pwsx736 power 10000 0.5 -> 100.0000 Inexact Rounded
2897
+
2898
+ -- values close to overflow (if there were input rounding)
2899
+ maxexponent: 99
2900
+ minexponent: -99
2901
+ precision: 5
2902
+ pwsx760 power 9.9997E+99 0.5 -> 9.9998E+49 Inexact Rounded
2903
+ pwsx761 power 9.9998E+99 0.5 -> 9.9999E+49 Inexact Rounded
2904
+ pwsx762 power 9.9999E+99 0.5 -> 9.9999E+49 Inexact Rounded
2905
+ pwsx763 power 9.99991E+99 0.5 -> 1.0000E+50 Inexact Rounded
2906
+ pwsx764 power 9.99994E+99 0.5 -> 1.0000E+50 Inexact Rounded
2907
+ pwsx765 power 9.99995E+99 0.5 -> 1.0000E+50 Inexact Rounded
2908
+ pwsx766 power 9.99999E+99 0.5 -> 1.0000E+50 Inexact Rounded
2909
+ precision: 9
2910
+ pwsx770 power 9.9997E+99 0.5 -> 9.99985000E+49 Inexact Rounded
2911
+ pwsx771 power 9.9998E+99 0.5 -> 9.99990000E+49 Inexact Rounded
2912
+ pwsx772 power 9.9999E+99 0.5 -> 9.99995000E+49 Inexact Rounded
2913
+ pwsx773 power 9.99991E+99 0.5 -> 9.99995500E+49 Inexact Rounded
2914
+ pwsx774 power 9.99994E+99 0.5 -> 9.99997000E+49 Inexact Rounded
2915
+ pwsx775 power 9.99995E+99 0.5 -> 9.99997500E+49 Inexact Rounded
2916
+ pwsx776 power 9.99999E+99 0.5 -> 9.99999500E+49 Inexact Rounded
2917
+ precision: 20
2918
+ pwsx780 power 9.9997E+99 0.5 -> '9.9998499988749831247E+49' Inexact Rounded
2919
+ pwsx781 power 9.9998E+99 0.5 -> '9.9998999994999949999E+49' Inexact Rounded
2920
+ pwsx782 power 9.9999E+99 0.5 -> '9.9999499998749993750E+49' Inexact Rounded
2921
+ pwsx783 power 9.99991E+99 0.5 -> '9.9999549998987495444E+49' Inexact Rounded
2922
+ pwsx784 power 9.99994E+99 0.5 -> '9.9999699999549998650E+49' Inexact Rounded
2923
+ pwsx785 power 9.99995E+99 0.5 -> '9.9999749999687499219E+49' Inexact Rounded
2924
+ pwsx786 power 9.99999E+99 0.5 -> '9.9999949999987499994E+49' Inexact Rounded
2925
+
2926
+ -- subnormals and underflows [these can only result when eMax is < digits+1]
2927
+ -- Etiny = -(Emax + (precision-1))
2928
+ -- start with subnormal operands and normal results
2929
+ maxexponent: 9
2930
+ minexponent: -9
2931
+ precision: 9 -- Etiny=-17
2932
+ pwsx800 power 1E-17 0.5 -> 3.16227766E-9 Inexact Rounded
2933
+ pwsx801 power 10E-17 0.5 -> 1.00000000E-8 Inexact Rounded
2934
+ precision: 10 -- Etiny=-18
2935
+ pwsx802 power 10E-18 0.5 -> 3.162277660E-9 Inexact Rounded
2936
+ pwsx803 power 1E-18 0.5 -> 1.000000000E-9 Inexact Rounded
2937
+
2938
+ precision: 11 -- Etiny=-19
2939
+ pwsx804 power 1E-19 0.5 -> 3.162277660E-10 Underflow Subnormal Inexact Rounded
2940
+ -- The next test should be skipped for decNumber
2941
+ pwsx805 power 10E-19 0.5 -> 1.0000000000E-9 Inexact Rounded
2942
+ precision: 12 -- Etiny=-20
2943
+ pwsx806 power 10E-20 0.5 -> 3.1622776602E-10 Underflow Subnormal Inexact Rounded
2944
+ pwsx807 power 1E-20 0.5 -> 1.0000000000E-10 Underflow Subnormal Inexact Rounded
2945
+
2946
+ precision: 13 -- Etiny=-21
2947
+ pwsx808 power 1E-21 0.5 -> 3.1622776602E-11 Underflow Subnormal Inexact Rounded
2948
+ pwsx809 power 10E-21 0.5 -> 1.00000000000E-10 Underflow Subnormal Inexact Rounded
2949
+ precision: 14 -- Etiny=-22
2950
+ pwsx810 power 1E-21 0.5 -> 3.16227766017E-11 Underflow Subnormal Inexact Rounded
2951
+ pwsx811 power 10E-22 0.5 -> 3.16227766017E-11 Underflow Subnormal Inexact Rounded
2952
+ pwsx812 power 1E-22 0.5 -> 1.00000000000E-11 Underflow Subnormal Inexact Rounded
2953
+
2954
+
2955
+ -- special values
2956
+ maxexponent: 999
2957
+ minexponent: -999
2958
+ pwsx820 power Inf 0.5 -> Infinity
2959
+ pwsx821 power -Inf 0.5 -> NaN Invalid_operation
2960
+ pwsx822 power NaN 0.5 -> NaN
2961
+ pwsx823 power sNaN 0.5 -> NaN Invalid_operation
2962
+ -- propagating NaNs
2963
+ pwsx824 power sNaN123 0.5 -> NaN123 Invalid_operation
2964
+ pwsx825 power -sNaN321 0.5 -> -NaN321 Invalid_operation
2965
+ pwsx826 power NaN456 0.5 -> NaN456
2966
+ pwsx827 power -NaN654 0.5 -> -NaN654
2967
+ pwsx828 power NaN1 0.5 -> NaN1
2968
+
2969
+ -- Null test
2970
+ pwsx900 power # 0.5 -> NaN Invalid_operation