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,3834 @@
1
+ ------------------------------------------------------------------------
2
+ -- squareroot.decTest -- decimal square root --
3
+ -- Copyright (c) IBM Corporation, 2003, 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
+ extended: 1
23
+ precision: 9
24
+ rounding: half_up
25
+ maxExponent: 384
26
+ minexponent: -383
27
+
28
+ -- basics
29
+ sqtx001 squareroot 1 -> 1
30
+ sqtx002 squareroot -1 -> NaN Invalid_operation
31
+ sqtx003 squareroot 1.00 -> 1.0
32
+ sqtx004 squareroot -1.00 -> NaN Invalid_operation
33
+ sqtx005 squareroot 0 -> 0
34
+ sqtx006 squareroot 00.0 -> 0.0
35
+ sqtx007 squareroot 0.00 -> 0.0
36
+ sqtx008 squareroot 00.00 -> 0.0
37
+ sqtx009 squareroot 00.000 -> 0.00
38
+ sqtx010 squareroot 00.0000 -> 0.00
39
+ sqtx011 squareroot 00 -> 0
40
+
41
+ sqtx012 squareroot -2 -> NaN Invalid_operation
42
+ sqtx013 squareroot 2 -> 1.41421356 Inexact Rounded
43
+ sqtx014 squareroot -2.00 -> NaN Invalid_operation
44
+ sqtx015 squareroot 2.00 -> 1.41421356 Inexact Rounded
45
+ sqtx016 squareroot -0 -> -0
46
+ sqtx017 squareroot -0.0 -> -0.0
47
+ sqtx018 squareroot -00.00 -> -0.0
48
+ sqtx019 squareroot -00.000 -> -0.00
49
+ sqtx020 squareroot -0.0000 -> -0.00
50
+ sqtx021 squareroot -0E+9 -> -0E+4
51
+ sqtx022 squareroot -0E+10 -> -0E+5
52
+ sqtx023 squareroot -0E+11 -> -0E+5
53
+ sqtx024 squareroot -0E+12 -> -0E+6
54
+ sqtx025 squareroot -00 -> -0
55
+ sqtx026 squareroot 0E+5 -> 0E+2
56
+ sqtx027 squareroot 4.0 -> 2.0
57
+ sqtx028 squareroot 4.00 -> 2.0
58
+
59
+ sqtx030 squareroot +0.1 -> 0.316227766 Inexact Rounded
60
+ sqtx031 squareroot -0.1 -> NaN Invalid_operation
61
+ sqtx032 squareroot +0.01 -> 0.1
62
+ sqtx033 squareroot -0.01 -> NaN Invalid_operation
63
+ sqtx034 squareroot +0.001 -> 0.0316227766 Inexact Rounded
64
+ sqtx035 squareroot -0.001 -> NaN Invalid_operation
65
+ sqtx036 squareroot +0.000001 -> 0.001
66
+ sqtx037 squareroot -0.000001 -> NaN Invalid_operation
67
+ sqtx038 squareroot +0.000000000001 -> 0.000001
68
+ sqtx039 squareroot -0.000000000001 -> NaN Invalid_operation
69
+
70
+ sqtx041 squareroot 1.1 -> 1.04880885 Inexact Rounded
71
+ sqtx042 squareroot 1.10 -> 1.04880885 Inexact Rounded
72
+ sqtx043 squareroot 1.100 -> 1.04880885 Inexact Rounded
73
+ sqtx044 squareroot 1.110 -> 1.05356538 Inexact Rounded
74
+ sqtx045 squareroot -1.1 -> NaN Invalid_operation
75
+ sqtx046 squareroot -1.10 -> NaN Invalid_operation
76
+ sqtx047 squareroot -1.100 -> NaN Invalid_operation
77
+ sqtx048 squareroot -1.110 -> NaN Invalid_operation
78
+ sqtx049 squareroot 9.9 -> 3.14642654 Inexact Rounded
79
+ sqtx050 squareroot 9.90 -> 3.14642654 Inexact Rounded
80
+ sqtx051 squareroot 9.900 -> 3.14642654 Inexact Rounded
81
+ sqtx052 squareroot 9.990 -> 3.16069613 Inexact Rounded
82
+ sqtx053 squareroot -9.9 -> NaN Invalid_operation
83
+ sqtx054 squareroot -9.90 -> NaN Invalid_operation
84
+ sqtx055 squareroot -9.900 -> NaN Invalid_operation
85
+ sqtx056 squareroot -9.990 -> NaN Invalid_operation
86
+
87
+ sqtx060 squareroot 1 -> 1
88
+ sqtx061 squareroot 1.0 -> 1.0
89
+ sqtx062 squareroot 1.00 -> 1.0
90
+ sqtx063 squareroot 10.0 -> 3.16227766 Inexact Rounded
91
+ sqtx064 squareroot 10.0 -> 3.16227766 Inexact Rounded
92
+ sqtx065 squareroot 10.0 -> 3.16227766 Inexact Rounded
93
+ sqtx066 squareroot 10.00 -> 3.16227766 Inexact Rounded
94
+ sqtx067 squareroot 100 -> 10
95
+ sqtx068 squareroot 100.0 -> 10.0
96
+ sqtx069 squareroot 100.00 -> 10.0
97
+ sqtx070 squareroot 1.1000E+3 -> 33.1662479 Inexact Rounded
98
+ sqtx071 squareroot 1.10000E+3 -> 33.1662479 Inexact Rounded
99
+ sqtx072 squareroot -10.0 -> NaN Invalid_operation
100
+ sqtx073 squareroot -10.00 -> NaN Invalid_operation
101
+ sqtx074 squareroot -100.0 -> NaN Invalid_operation
102
+ sqtx075 squareroot -100.00 -> NaN Invalid_operation
103
+ sqtx076 squareroot -1.1000E+3 -> NaN Invalid_operation
104
+ sqtx077 squareroot -1.10000E+3 -> NaN Invalid_operation
105
+ sqtx078 squareroot 1.000 -> 1.00
106
+ sqtx079 squareroot 1.0000 -> 1.00
107
+
108
+ -- famous squares
109
+ sqtx080 squareroot 1 -> 1
110
+ sqtx081 squareroot 4 -> 2
111
+ sqtx082 squareroot 9 -> 3
112
+ sqtx083 squareroot 16 -> 4
113
+ sqtx084 squareroot 25 -> 5
114
+ sqtx085 squareroot 36 -> 6
115
+ sqtx086 squareroot 49 -> 7
116
+ sqtx087 squareroot 64 -> 8
117
+ sqtx088 squareroot 81 -> 9
118
+ sqtx089 squareroot 100 -> 10
119
+ sqtx090 squareroot 121 -> 11
120
+ sqtx091 squareroot 144 -> 12
121
+ sqtx092 squareroot 169 -> 13
122
+ sqtx093 squareroot 256 -> 16
123
+ sqtx094 squareroot 1024 -> 32
124
+ sqtx095 squareroot 4096 -> 64
125
+ sqtx100 squareroot 0.01 -> 0.1
126
+ sqtx101 squareroot 0.04 -> 0.2
127
+ sqtx102 squareroot 0.09 -> 0.3
128
+ sqtx103 squareroot 0.16 -> 0.4
129
+ sqtx104 squareroot 0.25 -> 0.5
130
+ sqtx105 squareroot 0.36 -> 0.6
131
+ sqtx106 squareroot 0.49 -> 0.7
132
+ sqtx107 squareroot 0.64 -> 0.8
133
+ sqtx108 squareroot 0.81 -> 0.9
134
+ sqtx109 squareroot 1.00 -> 1.0
135
+ sqtx110 squareroot 1.21 -> 1.1
136
+ sqtx111 squareroot 1.44 -> 1.2
137
+ sqtx112 squareroot 1.69 -> 1.3
138
+ sqtx113 squareroot 2.56 -> 1.6
139
+ sqtx114 squareroot 10.24 -> 3.2
140
+ sqtx115 squareroot 40.96 -> 6.4
141
+
142
+ -- Precision 1 squareroot tests [exhaustive, plus exponent adjusts]
143
+ rounding: half_even
144
+ maxExponent: 999
145
+ minexponent: -999
146
+ precision: 1
147
+ sqtx1201 squareroot 0.1 -> 0.3 Inexact Rounded
148
+ sqtx1202 squareroot 0.01 -> 0.1
149
+ sqtx1203 squareroot 1.0E-1 -> 0.3 Inexact Rounded
150
+ sqtx1204 squareroot 1.00E-2 -> 0.1 Rounded
151
+ sqtx1205 squareroot 1E-3 -> 0.03 Inexact Rounded
152
+ sqtx1206 squareroot 1E+1 -> 3 Inexact Rounded
153
+ sqtx1207 squareroot 1E+2 -> 1E+1
154
+ sqtx1208 squareroot 1E+3 -> 3E+1 Inexact Rounded
155
+ sqtx1209 squareroot 0.2 -> 0.4 Inexact Rounded
156
+ sqtx1210 squareroot 0.02 -> 0.1 Inexact Rounded
157
+ sqtx1211 squareroot 2.0E-1 -> 0.4 Inexact Rounded
158
+ sqtx1212 squareroot 2.00E-2 -> 0.1 Inexact Rounded
159
+ sqtx1213 squareroot 2E-3 -> 0.04 Inexact Rounded
160
+ sqtx1214 squareroot 2E+1 -> 4 Inexact Rounded
161
+ sqtx1215 squareroot 2E+2 -> 1E+1 Inexact Rounded
162
+ sqtx1216 squareroot 2E+3 -> 4E+1 Inexact Rounded
163
+ sqtx1217 squareroot 0.3 -> 0.5 Inexact Rounded
164
+ sqtx1218 squareroot 0.03 -> 0.2 Inexact Rounded
165
+ sqtx1219 squareroot 3.0E-1 -> 0.5 Inexact Rounded
166
+ sqtx1220 squareroot 3.00E-2 -> 0.2 Inexact Rounded
167
+ sqtx1221 squareroot 3E-3 -> 0.05 Inexact Rounded
168
+ sqtx1222 squareroot 3E+1 -> 5 Inexact Rounded
169
+ sqtx1223 squareroot 3E+2 -> 2E+1 Inexact Rounded
170
+ sqtx1224 squareroot 3E+3 -> 5E+1 Inexact Rounded
171
+ sqtx1225 squareroot 0.4 -> 0.6 Inexact Rounded
172
+ sqtx1226 squareroot 0.04 -> 0.2
173
+ sqtx1227 squareroot 4.0E-1 -> 0.6 Inexact Rounded
174
+ sqtx1228 squareroot 4.00E-2 -> 0.2 Rounded
175
+ sqtx1229 squareroot 4E-3 -> 0.06 Inexact Rounded
176
+ sqtx1230 squareroot 4E+1 -> 6 Inexact Rounded
177
+ sqtx1231 squareroot 4E+2 -> 2E+1
178
+ sqtx1232 squareroot 4E+3 -> 6E+1 Inexact Rounded
179
+ sqtx1233 squareroot 0.5 -> 0.7 Inexact Rounded
180
+ sqtx1234 squareroot 0.05 -> 0.2 Inexact Rounded
181
+ sqtx1235 squareroot 5.0E-1 -> 0.7 Inexact Rounded
182
+ sqtx1236 squareroot 5.00E-2 -> 0.2 Inexact Rounded
183
+ sqtx1237 squareroot 5E-3 -> 0.07 Inexact Rounded
184
+ sqtx1238 squareroot 5E+1 -> 7 Inexact Rounded
185
+ sqtx1239 squareroot 5E+2 -> 2E+1 Inexact Rounded
186
+ sqtx1240 squareroot 5E+3 -> 7E+1 Inexact Rounded
187
+ sqtx1241 squareroot 0.6 -> 0.8 Inexact Rounded
188
+ sqtx1242 squareroot 0.06 -> 0.2 Inexact Rounded
189
+ sqtx1243 squareroot 6.0E-1 -> 0.8 Inexact Rounded
190
+ sqtx1244 squareroot 6.00E-2 -> 0.2 Inexact Rounded
191
+ sqtx1245 squareroot 6E-3 -> 0.08 Inexact Rounded
192
+ sqtx1246 squareroot 6E+1 -> 8 Inexact Rounded
193
+ sqtx1247 squareroot 6E+2 -> 2E+1 Inexact Rounded
194
+ sqtx1248 squareroot 6E+3 -> 8E+1 Inexact Rounded
195
+ sqtx1249 squareroot 0.7 -> 0.8 Inexact Rounded
196
+ sqtx1250 squareroot 0.07 -> 0.3 Inexact Rounded
197
+ sqtx1251 squareroot 7.0E-1 -> 0.8 Inexact Rounded
198
+ sqtx1252 squareroot 7.00E-2 -> 0.3 Inexact Rounded
199
+ sqtx1253 squareroot 7E-3 -> 0.08 Inexact Rounded
200
+ sqtx1254 squareroot 7E+1 -> 8 Inexact Rounded
201
+ sqtx1255 squareroot 7E+2 -> 3E+1 Inexact Rounded
202
+ sqtx1256 squareroot 7E+3 -> 8E+1 Inexact Rounded
203
+ sqtx1257 squareroot 0.8 -> 0.9 Inexact Rounded
204
+ sqtx1258 squareroot 0.08 -> 0.3 Inexact Rounded
205
+ sqtx1259 squareroot 8.0E-1 -> 0.9 Inexact Rounded
206
+ sqtx1260 squareroot 8.00E-2 -> 0.3 Inexact Rounded
207
+ sqtx1261 squareroot 8E-3 -> 0.09 Inexact Rounded
208
+ sqtx1262 squareroot 8E+1 -> 9 Inexact Rounded
209
+ sqtx1263 squareroot 8E+2 -> 3E+1 Inexact Rounded
210
+ sqtx1264 squareroot 8E+3 -> 9E+1 Inexact Rounded
211
+ sqtx1265 squareroot 0.9 -> 0.9 Inexact Rounded
212
+ sqtx1266 squareroot 0.09 -> 0.3
213
+ sqtx1267 squareroot 9.0E-1 -> 0.9 Inexact Rounded
214
+ sqtx1268 squareroot 9.00E-2 -> 0.3 Rounded
215
+ sqtx1269 squareroot 9E-3 -> 0.09 Inexact Rounded
216
+ sqtx1270 squareroot 9E+1 -> 9 Inexact Rounded
217
+ sqtx1271 squareroot 9E+2 -> 3E+1
218
+ sqtx1272 squareroot 9E+3 -> 9E+1 Inexact Rounded
219
+
220
+ -- Precision 2 squareroot tests [exhaustive, plus exponent adjusts]
221
+ rounding: half_even
222
+ maxExponent: 999
223
+ minexponent: -999
224
+ precision: 2
225
+ sqtx2201 squareroot 0.1 -> 0.32 Inexact Rounded
226
+ sqtx2202 squareroot 0.01 -> 0.1
227
+ sqtx2203 squareroot 1.0E-1 -> 0.32 Inexact Rounded
228
+ sqtx2204 squareroot 1.00E-2 -> 0.10
229
+ sqtx2205 squareroot 1E-3 -> 0.032 Inexact Rounded
230
+ sqtx2206 squareroot 1E+1 -> 3.2 Inexact Rounded
231
+ sqtx2207 squareroot 1E+2 -> 1E+1
232
+ sqtx2208 squareroot 1E+3 -> 32 Inexact Rounded
233
+ sqtx2209 squareroot 0.2 -> 0.45 Inexact Rounded
234
+ sqtx2210 squareroot 0.02 -> 0.14 Inexact Rounded
235
+ sqtx2211 squareroot 2.0E-1 -> 0.45 Inexact Rounded
236
+ sqtx2212 squareroot 2.00E-2 -> 0.14 Inexact Rounded
237
+ sqtx2213 squareroot 2E-3 -> 0.045 Inexact Rounded
238
+ sqtx2214 squareroot 2E+1 -> 4.5 Inexact Rounded
239
+ sqtx2215 squareroot 2E+2 -> 14 Inexact Rounded
240
+ sqtx2216 squareroot 2E+3 -> 45 Inexact Rounded
241
+ sqtx2217 squareroot 0.3 -> 0.55 Inexact Rounded
242
+ sqtx2218 squareroot 0.03 -> 0.17 Inexact Rounded
243
+ sqtx2219 squareroot 3.0E-1 -> 0.55 Inexact Rounded
244
+ sqtx2220 squareroot 3.00E-2 -> 0.17 Inexact Rounded
245
+ sqtx2221 squareroot 3E-3 -> 0.055 Inexact Rounded
246
+ sqtx2222 squareroot 3E+1 -> 5.5 Inexact Rounded
247
+ sqtx2223 squareroot 3E+2 -> 17 Inexact Rounded
248
+ sqtx2224 squareroot 3E+3 -> 55 Inexact Rounded
249
+ sqtx2225 squareroot 0.4 -> 0.63 Inexact Rounded
250
+ sqtx2226 squareroot 0.04 -> 0.2
251
+ sqtx2227 squareroot 4.0E-1 -> 0.63 Inexact Rounded
252
+ sqtx2228 squareroot 4.00E-2 -> 0.20
253
+ sqtx2229 squareroot 4E-3 -> 0.063 Inexact Rounded
254
+ sqtx2230 squareroot 4E+1 -> 6.3 Inexact Rounded
255
+ sqtx2231 squareroot 4E+2 -> 2E+1
256
+ sqtx2232 squareroot 4E+3 -> 63 Inexact Rounded
257
+ sqtx2233 squareroot 0.5 -> 0.71 Inexact Rounded
258
+ sqtx2234 squareroot 0.05 -> 0.22 Inexact Rounded
259
+ sqtx2235 squareroot 5.0E-1 -> 0.71 Inexact Rounded
260
+ sqtx2236 squareroot 5.00E-2 -> 0.22 Inexact Rounded
261
+ sqtx2237 squareroot 5E-3 -> 0.071 Inexact Rounded
262
+ sqtx2238 squareroot 5E+1 -> 7.1 Inexact Rounded
263
+ sqtx2239 squareroot 5E+2 -> 22 Inexact Rounded
264
+ sqtx2240 squareroot 5E+3 -> 71 Inexact Rounded
265
+ sqtx2241 squareroot 0.6 -> 0.77 Inexact Rounded
266
+ sqtx2242 squareroot 0.06 -> 0.24 Inexact Rounded
267
+ sqtx2243 squareroot 6.0E-1 -> 0.77 Inexact Rounded
268
+ sqtx2244 squareroot 6.00E-2 -> 0.24 Inexact Rounded
269
+ sqtx2245 squareroot 6E-3 -> 0.077 Inexact Rounded
270
+ sqtx2246 squareroot 6E+1 -> 7.7 Inexact Rounded
271
+ sqtx2247 squareroot 6E+2 -> 24 Inexact Rounded
272
+ sqtx2248 squareroot 6E+3 -> 77 Inexact Rounded
273
+ sqtx2249 squareroot 0.7 -> 0.84 Inexact Rounded
274
+ sqtx2250 squareroot 0.07 -> 0.26 Inexact Rounded
275
+ sqtx2251 squareroot 7.0E-1 -> 0.84 Inexact Rounded
276
+ sqtx2252 squareroot 7.00E-2 -> 0.26 Inexact Rounded
277
+ sqtx2253 squareroot 7E-3 -> 0.084 Inexact Rounded
278
+ sqtx2254 squareroot 7E+1 -> 8.4 Inexact Rounded
279
+ sqtx2255 squareroot 7E+2 -> 26 Inexact Rounded
280
+ sqtx2256 squareroot 7E+3 -> 84 Inexact Rounded
281
+ sqtx2257 squareroot 0.8 -> 0.89 Inexact Rounded
282
+ sqtx2258 squareroot 0.08 -> 0.28 Inexact Rounded
283
+ sqtx2259 squareroot 8.0E-1 -> 0.89 Inexact Rounded
284
+ sqtx2260 squareroot 8.00E-2 -> 0.28 Inexact Rounded
285
+ sqtx2261 squareroot 8E-3 -> 0.089 Inexact Rounded
286
+ sqtx2262 squareroot 8E+1 -> 8.9 Inexact Rounded
287
+ sqtx2263 squareroot 8E+2 -> 28 Inexact Rounded
288
+ sqtx2264 squareroot 8E+3 -> 89 Inexact Rounded
289
+ sqtx2265 squareroot 0.9 -> 0.95 Inexact Rounded
290
+ sqtx2266 squareroot 0.09 -> 0.3
291
+ sqtx2267 squareroot 9.0E-1 -> 0.95 Inexact Rounded
292
+ sqtx2268 squareroot 9.00E-2 -> 0.30
293
+ sqtx2269 squareroot 9E-3 -> 0.095 Inexact Rounded
294
+ sqtx2270 squareroot 9E+1 -> 9.5 Inexact Rounded
295
+ sqtx2271 squareroot 9E+2 -> 3E+1
296
+ sqtx2272 squareroot 9E+3 -> 95 Inexact Rounded
297
+ sqtx2273 squareroot 0.10 -> 0.32 Inexact Rounded
298
+ sqtx2274 squareroot 0.010 -> 0.10
299
+ sqtx2275 squareroot 10.0E-1 -> 1.0
300
+ sqtx2276 squareroot 10.00E-2 -> 0.32 Inexact Rounded
301
+ sqtx2277 squareroot 10E-3 -> 0.10
302
+ sqtx2278 squareroot 10E+1 -> 10
303
+ sqtx2279 squareroot 10E+2 -> 32 Inexact Rounded
304
+ sqtx2280 squareroot 10E+3 -> 1.0E+2
305
+ sqtx2281 squareroot 0.11 -> 0.33 Inexact Rounded
306
+ sqtx2282 squareroot 0.011 -> 0.10 Inexact Rounded
307
+ sqtx2283 squareroot 11.0E-1 -> 1.0 Inexact Rounded
308
+ sqtx2284 squareroot 11.00E-2 -> 0.33 Inexact Rounded
309
+ sqtx2285 squareroot 11E-3 -> 0.10 Inexact Rounded
310
+ sqtx2286 squareroot 11E+1 -> 10 Inexact Rounded
311
+ sqtx2287 squareroot 11E+2 -> 33 Inexact Rounded
312
+ sqtx2288 squareroot 11E+3 -> 1.0E+2 Inexact Rounded
313
+ sqtx2289 squareroot 0.12 -> 0.35 Inexact Rounded
314
+ sqtx2290 squareroot 0.012 -> 0.11 Inexact Rounded
315
+ sqtx2291 squareroot 12.0E-1 -> 1.1 Inexact Rounded
316
+ sqtx2292 squareroot 12.00E-2 -> 0.35 Inexact Rounded
317
+ sqtx2293 squareroot 12E-3 -> 0.11 Inexact Rounded
318
+ sqtx2294 squareroot 12E+1 -> 11 Inexact Rounded
319
+ sqtx2295 squareroot 12E+2 -> 35 Inexact Rounded
320
+ sqtx2296 squareroot 12E+3 -> 1.1E+2 Inexact Rounded
321
+ sqtx2297 squareroot 0.13 -> 0.36 Inexact Rounded
322
+ sqtx2298 squareroot 0.013 -> 0.11 Inexact Rounded
323
+ sqtx2299 squareroot 13.0E-1 -> 1.1 Inexact Rounded
324
+ sqtx2300 squareroot 13.00E-2 -> 0.36 Inexact Rounded
325
+ sqtx2301 squareroot 13E-3 -> 0.11 Inexact Rounded
326
+ sqtx2302 squareroot 13E+1 -> 11 Inexact Rounded
327
+ sqtx2303 squareroot 13E+2 -> 36 Inexact Rounded
328
+ sqtx2304 squareroot 13E+3 -> 1.1E+2 Inexact Rounded
329
+ sqtx2305 squareroot 0.14 -> 0.37 Inexact Rounded
330
+ sqtx2306 squareroot 0.014 -> 0.12 Inexact Rounded
331
+ sqtx2307 squareroot 14.0E-1 -> 1.2 Inexact Rounded
332
+ sqtx2308 squareroot 14.00E-2 -> 0.37 Inexact Rounded
333
+ sqtx2309 squareroot 14E-3 -> 0.12 Inexact Rounded
334
+ sqtx2310 squareroot 14E+1 -> 12 Inexact Rounded
335
+ sqtx2311 squareroot 14E+2 -> 37 Inexact Rounded
336
+ sqtx2312 squareroot 14E+3 -> 1.2E+2 Inexact Rounded
337
+ sqtx2313 squareroot 0.15 -> 0.39 Inexact Rounded
338
+ sqtx2314 squareroot 0.015 -> 0.12 Inexact Rounded
339
+ sqtx2315 squareroot 15.0E-1 -> 1.2 Inexact Rounded
340
+ sqtx2316 squareroot 15.00E-2 -> 0.39 Inexact Rounded
341
+ sqtx2317 squareroot 15E-3 -> 0.12 Inexact Rounded
342
+ sqtx2318 squareroot 15E+1 -> 12 Inexact Rounded
343
+ sqtx2319 squareroot 15E+2 -> 39 Inexact Rounded
344
+ sqtx2320 squareroot 15E+3 -> 1.2E+2 Inexact Rounded
345
+ sqtx2321 squareroot 0.16 -> 0.4
346
+ sqtx2322 squareroot 0.016 -> 0.13 Inexact Rounded
347
+ sqtx2323 squareroot 16.0E-1 -> 1.3 Inexact Rounded
348
+ sqtx2324 squareroot 16.00E-2 -> 0.40
349
+ sqtx2325 squareroot 16E-3 -> 0.13 Inexact Rounded
350
+ sqtx2326 squareroot 16E+1 -> 13 Inexact Rounded
351
+ sqtx2327 squareroot 16E+2 -> 4E+1
352
+ sqtx2328 squareroot 16E+3 -> 1.3E+2 Inexact Rounded
353
+ sqtx2329 squareroot 0.17 -> 0.41 Inexact Rounded
354
+ sqtx2330 squareroot 0.017 -> 0.13 Inexact Rounded
355
+ sqtx2331 squareroot 17.0E-1 -> 1.3 Inexact Rounded
356
+ sqtx2332 squareroot 17.00E-2 -> 0.41 Inexact Rounded
357
+ sqtx2333 squareroot 17E-3 -> 0.13 Inexact Rounded
358
+ sqtx2334 squareroot 17E+1 -> 13 Inexact Rounded
359
+ sqtx2335 squareroot 17E+2 -> 41 Inexact Rounded
360
+ sqtx2336 squareroot 17E+3 -> 1.3E+2 Inexact Rounded
361
+ sqtx2337 squareroot 0.18 -> 0.42 Inexact Rounded
362
+ sqtx2338 squareroot 0.018 -> 0.13 Inexact Rounded
363
+ sqtx2339 squareroot 18.0E-1 -> 1.3 Inexact Rounded
364
+ sqtx2340 squareroot 18.00E-2 -> 0.42 Inexact Rounded
365
+ sqtx2341 squareroot 18E-3 -> 0.13 Inexact Rounded
366
+ sqtx2342 squareroot 18E+1 -> 13 Inexact Rounded
367
+ sqtx2343 squareroot 18E+2 -> 42 Inexact Rounded
368
+ sqtx2344 squareroot 18E+3 -> 1.3E+2 Inexact Rounded
369
+ sqtx2345 squareroot 0.19 -> 0.44 Inexact Rounded
370
+ sqtx2346 squareroot 0.019 -> 0.14 Inexact Rounded
371
+ sqtx2347 squareroot 19.0E-1 -> 1.4 Inexact Rounded
372
+ sqtx2348 squareroot 19.00E-2 -> 0.44 Inexact Rounded
373
+ sqtx2349 squareroot 19E-3 -> 0.14 Inexact Rounded
374
+ sqtx2350 squareroot 19E+1 -> 14 Inexact Rounded
375
+ sqtx2351 squareroot 19E+2 -> 44 Inexact Rounded
376
+ sqtx2352 squareroot 19E+3 -> 1.4E+2 Inexact Rounded
377
+ sqtx2353 squareroot 0.20 -> 0.45 Inexact Rounded
378
+ sqtx2354 squareroot 0.020 -> 0.14 Inexact Rounded
379
+ sqtx2355 squareroot 20.0E-1 -> 1.4 Inexact Rounded
380
+ sqtx2356 squareroot 20.00E-2 -> 0.45 Inexact Rounded
381
+ sqtx2357 squareroot 20E-3 -> 0.14 Inexact Rounded
382
+ sqtx2358 squareroot 20E+1 -> 14 Inexact Rounded
383
+ sqtx2359 squareroot 20E+2 -> 45 Inexact Rounded
384
+ sqtx2360 squareroot 20E+3 -> 1.4E+2 Inexact Rounded
385
+ sqtx2361 squareroot 0.21 -> 0.46 Inexact Rounded
386
+ sqtx2362 squareroot 0.021 -> 0.14 Inexact Rounded
387
+ sqtx2363 squareroot 21.0E-1 -> 1.4 Inexact Rounded
388
+ sqtx2364 squareroot 21.00E-2 -> 0.46 Inexact Rounded
389
+ sqtx2365 squareroot 21E-3 -> 0.14 Inexact Rounded
390
+ sqtx2366 squareroot 21E+1 -> 14 Inexact Rounded
391
+ sqtx2367 squareroot 21E+2 -> 46 Inexact Rounded
392
+ sqtx2368 squareroot 21E+3 -> 1.4E+2 Inexact Rounded
393
+ sqtx2369 squareroot 0.22 -> 0.47 Inexact Rounded
394
+ sqtx2370 squareroot 0.022 -> 0.15 Inexact Rounded
395
+ sqtx2371 squareroot 22.0E-1 -> 1.5 Inexact Rounded
396
+ sqtx2372 squareroot 22.00E-2 -> 0.47 Inexact Rounded
397
+ sqtx2373 squareroot 22E-3 -> 0.15 Inexact Rounded
398
+ sqtx2374 squareroot 22E+1 -> 15 Inexact Rounded
399
+ sqtx2375 squareroot 22E+2 -> 47 Inexact Rounded
400
+ sqtx2376 squareroot 22E+3 -> 1.5E+2 Inexact Rounded
401
+ sqtx2377 squareroot 0.23 -> 0.48 Inexact Rounded
402
+ sqtx2378 squareroot 0.023 -> 0.15 Inexact Rounded
403
+ sqtx2379 squareroot 23.0E-1 -> 1.5 Inexact Rounded
404
+ sqtx2380 squareroot 23.00E-2 -> 0.48 Inexact Rounded
405
+ sqtx2381 squareroot 23E-3 -> 0.15 Inexact Rounded
406
+ sqtx2382 squareroot 23E+1 -> 15 Inexact Rounded
407
+ sqtx2383 squareroot 23E+2 -> 48 Inexact Rounded
408
+ sqtx2384 squareroot 23E+3 -> 1.5E+2 Inexact Rounded
409
+ sqtx2385 squareroot 0.24 -> 0.49 Inexact Rounded
410
+ sqtx2386 squareroot 0.024 -> 0.15 Inexact Rounded
411
+ sqtx2387 squareroot 24.0E-1 -> 1.5 Inexact Rounded
412
+ sqtx2388 squareroot 24.00E-2 -> 0.49 Inexact Rounded
413
+ sqtx2389 squareroot 24E-3 -> 0.15 Inexact Rounded
414
+ sqtx2390 squareroot 24E+1 -> 15 Inexact Rounded
415
+ sqtx2391 squareroot 24E+2 -> 49 Inexact Rounded
416
+ sqtx2392 squareroot 24E+3 -> 1.5E+2 Inexact Rounded
417
+ sqtx2393 squareroot 0.25 -> 0.5
418
+ sqtx2394 squareroot 0.025 -> 0.16 Inexact Rounded
419
+ sqtx2395 squareroot 25.0E-1 -> 1.6 Inexact Rounded
420
+ sqtx2396 squareroot 25.00E-2 -> 0.50
421
+ sqtx2397 squareroot 25E-3 -> 0.16 Inexact Rounded
422
+ sqtx2398 squareroot 25E+1 -> 16 Inexact Rounded
423
+ sqtx2399 squareroot 25E+2 -> 5E+1
424
+ sqtx2400 squareroot 25E+3 -> 1.6E+2 Inexact Rounded
425
+ sqtx2401 squareroot 0.26 -> 0.51 Inexact Rounded
426
+ sqtx2402 squareroot 0.026 -> 0.16 Inexact Rounded
427
+ sqtx2403 squareroot 26.0E-1 -> 1.6 Inexact Rounded
428
+ sqtx2404 squareroot 26.00E-2 -> 0.51 Inexact Rounded
429
+ sqtx2405 squareroot 26E-3 -> 0.16 Inexact Rounded
430
+ sqtx2406 squareroot 26E+1 -> 16 Inexact Rounded
431
+ sqtx2407 squareroot 26E+2 -> 51 Inexact Rounded
432
+ sqtx2408 squareroot 26E+3 -> 1.6E+2 Inexact Rounded
433
+ sqtx2409 squareroot 0.27 -> 0.52 Inexact Rounded
434
+ sqtx2410 squareroot 0.027 -> 0.16 Inexact Rounded
435
+ sqtx2411 squareroot 27.0E-1 -> 1.6 Inexact Rounded
436
+ sqtx2412 squareroot 27.00E-2 -> 0.52 Inexact Rounded
437
+ sqtx2413 squareroot 27E-3 -> 0.16 Inexact Rounded
438
+ sqtx2414 squareroot 27E+1 -> 16 Inexact Rounded
439
+ sqtx2415 squareroot 27E+2 -> 52 Inexact Rounded
440
+ sqtx2416 squareroot 27E+3 -> 1.6E+2 Inexact Rounded
441
+ sqtx2417 squareroot 0.28 -> 0.53 Inexact Rounded
442
+ sqtx2418 squareroot 0.028 -> 0.17 Inexact Rounded
443
+ sqtx2419 squareroot 28.0E-1 -> 1.7 Inexact Rounded
444
+ sqtx2420 squareroot 28.00E-2 -> 0.53 Inexact Rounded
445
+ sqtx2421 squareroot 28E-3 -> 0.17 Inexact Rounded
446
+ sqtx2422 squareroot 28E+1 -> 17 Inexact Rounded
447
+ sqtx2423 squareroot 28E+2 -> 53 Inexact Rounded
448
+ sqtx2424 squareroot 28E+3 -> 1.7E+2 Inexact Rounded
449
+ sqtx2425 squareroot 0.29 -> 0.54 Inexact Rounded
450
+ sqtx2426 squareroot 0.029 -> 0.17 Inexact Rounded
451
+ sqtx2427 squareroot 29.0E-1 -> 1.7 Inexact Rounded
452
+ sqtx2428 squareroot 29.00E-2 -> 0.54 Inexact Rounded
453
+ sqtx2429 squareroot 29E-3 -> 0.17 Inexact Rounded
454
+ sqtx2430 squareroot 29E+1 -> 17 Inexact Rounded
455
+ sqtx2431 squareroot 29E+2 -> 54 Inexact Rounded
456
+ sqtx2432 squareroot 29E+3 -> 1.7E+2 Inexact Rounded
457
+ sqtx2433 squareroot 0.30 -> 0.55 Inexact Rounded
458
+ sqtx2434 squareroot 0.030 -> 0.17 Inexact Rounded
459
+ sqtx2435 squareroot 30.0E-1 -> 1.7 Inexact Rounded
460
+ sqtx2436 squareroot 30.00E-2 -> 0.55 Inexact Rounded
461
+ sqtx2437 squareroot 30E-3 -> 0.17 Inexact Rounded
462
+ sqtx2438 squareroot 30E+1 -> 17 Inexact Rounded
463
+ sqtx2439 squareroot 30E+2 -> 55 Inexact Rounded
464
+ sqtx2440 squareroot 30E+3 -> 1.7E+2 Inexact Rounded
465
+ sqtx2441 squareroot 0.31 -> 0.56 Inexact Rounded
466
+ sqtx2442 squareroot 0.031 -> 0.18 Inexact Rounded
467
+ sqtx2443 squareroot 31.0E-1 -> 1.8 Inexact Rounded
468
+ sqtx2444 squareroot 31.00E-2 -> 0.56 Inexact Rounded
469
+ sqtx2445 squareroot 31E-3 -> 0.18 Inexact Rounded
470
+ sqtx2446 squareroot 31E+1 -> 18 Inexact Rounded
471
+ sqtx2447 squareroot 31E+2 -> 56 Inexact Rounded
472
+ sqtx2448 squareroot 31E+3 -> 1.8E+2 Inexact Rounded
473
+ sqtx2449 squareroot 0.32 -> 0.57 Inexact Rounded
474
+ sqtx2450 squareroot 0.032 -> 0.18 Inexact Rounded
475
+ sqtx2451 squareroot 32.0E-1 -> 1.8 Inexact Rounded
476
+ sqtx2452 squareroot 32.00E-2 -> 0.57 Inexact Rounded
477
+ sqtx2453 squareroot 32E-3 -> 0.18 Inexact Rounded
478
+ sqtx2454 squareroot 32E+1 -> 18 Inexact Rounded
479
+ sqtx2455 squareroot 32E+2 -> 57 Inexact Rounded
480
+ sqtx2456 squareroot 32E+3 -> 1.8E+2 Inexact Rounded
481
+ sqtx2457 squareroot 0.33 -> 0.57 Inexact Rounded
482
+ sqtx2458 squareroot 0.033 -> 0.18 Inexact Rounded
483
+ sqtx2459 squareroot 33.0E-1 -> 1.8 Inexact Rounded
484
+ sqtx2460 squareroot 33.00E-2 -> 0.57 Inexact Rounded
485
+ sqtx2461 squareroot 33E-3 -> 0.18 Inexact Rounded
486
+ sqtx2462 squareroot 33E+1 -> 18 Inexact Rounded
487
+ sqtx2463 squareroot 33E+2 -> 57 Inexact Rounded
488
+ sqtx2464 squareroot 33E+3 -> 1.8E+2 Inexact Rounded
489
+ sqtx2465 squareroot 0.34 -> 0.58 Inexact Rounded
490
+ sqtx2466 squareroot 0.034 -> 0.18 Inexact Rounded
491
+ sqtx2467 squareroot 34.0E-1 -> 1.8 Inexact Rounded
492
+ sqtx2468 squareroot 34.00E-2 -> 0.58 Inexact Rounded
493
+ sqtx2469 squareroot 34E-3 -> 0.18 Inexact Rounded
494
+ sqtx2470 squareroot 34E+1 -> 18 Inexact Rounded
495
+ sqtx2471 squareroot 34E+2 -> 58 Inexact Rounded
496
+ sqtx2472 squareroot 34E+3 -> 1.8E+2 Inexact Rounded
497
+ sqtx2473 squareroot 0.35 -> 0.59 Inexact Rounded
498
+ sqtx2474 squareroot 0.035 -> 0.19 Inexact Rounded
499
+ sqtx2475 squareroot 35.0E-1 -> 1.9 Inexact Rounded
500
+ sqtx2476 squareroot 35.00E-2 -> 0.59 Inexact Rounded
501
+ sqtx2477 squareroot 35E-3 -> 0.19 Inexact Rounded
502
+ sqtx2478 squareroot 35E+1 -> 19 Inexact Rounded
503
+ sqtx2479 squareroot 35E+2 -> 59 Inexact Rounded
504
+ sqtx2480 squareroot 35E+3 -> 1.9E+2 Inexact Rounded
505
+ sqtx2481 squareroot 0.36 -> 0.6
506
+ sqtx2482 squareroot 0.036 -> 0.19 Inexact Rounded
507
+ sqtx2483 squareroot 36.0E-1 -> 1.9 Inexact Rounded
508
+ sqtx2484 squareroot 36.00E-2 -> 0.60
509
+ sqtx2485 squareroot 36E-3 -> 0.19 Inexact Rounded
510
+ sqtx2486 squareroot 36E+1 -> 19 Inexact Rounded
511
+ sqtx2487 squareroot 36E+2 -> 6E+1
512
+ sqtx2488 squareroot 36E+3 -> 1.9E+2 Inexact Rounded
513
+ sqtx2489 squareroot 0.37 -> 0.61 Inexact Rounded
514
+ sqtx2490 squareroot 0.037 -> 0.19 Inexact Rounded
515
+ sqtx2491 squareroot 37.0E-1 -> 1.9 Inexact Rounded
516
+ sqtx2492 squareroot 37.00E-2 -> 0.61 Inexact Rounded
517
+ sqtx2493 squareroot 37E-3 -> 0.19 Inexact Rounded
518
+ sqtx2494 squareroot 37E+1 -> 19 Inexact Rounded
519
+ sqtx2495 squareroot 37E+2 -> 61 Inexact Rounded
520
+ sqtx2496 squareroot 37E+3 -> 1.9E+2 Inexact Rounded
521
+ sqtx2497 squareroot 0.38 -> 0.62 Inexact Rounded
522
+ sqtx2498 squareroot 0.038 -> 0.19 Inexact Rounded
523
+ sqtx2499 squareroot 38.0E-1 -> 1.9 Inexact Rounded
524
+ sqtx2500 squareroot 38.00E-2 -> 0.62 Inexact Rounded
525
+ sqtx2501 squareroot 38E-3 -> 0.19 Inexact Rounded
526
+ sqtx2502 squareroot 38E+1 -> 19 Inexact Rounded
527
+ sqtx2503 squareroot 38E+2 -> 62 Inexact Rounded
528
+ sqtx2504 squareroot 38E+3 -> 1.9E+2 Inexact Rounded
529
+ sqtx2505 squareroot 0.39 -> 0.62 Inexact Rounded
530
+ sqtx2506 squareroot 0.039 -> 0.20 Inexact Rounded
531
+ sqtx2507 squareroot 39.0E-1 -> 2.0 Inexact Rounded
532
+ sqtx2508 squareroot 39.00E-2 -> 0.62 Inexact Rounded
533
+ sqtx2509 squareroot 39E-3 -> 0.20 Inexact Rounded
534
+ sqtx2510 squareroot 39E+1 -> 20 Inexact Rounded
535
+ sqtx2511 squareroot 39E+2 -> 62 Inexact Rounded
536
+ sqtx2512 squareroot 39E+3 -> 2.0E+2 Inexact Rounded
537
+ sqtx2513 squareroot 0.40 -> 0.63 Inexact Rounded
538
+ sqtx2514 squareroot 0.040 -> 0.20
539
+ sqtx2515 squareroot 40.0E-1 -> 2.0
540
+ sqtx2516 squareroot 40.00E-2 -> 0.63 Inexact Rounded
541
+ sqtx2517 squareroot 40E-3 -> 0.20
542
+ sqtx2518 squareroot 40E+1 -> 20
543
+ sqtx2519 squareroot 40E+2 -> 63 Inexact Rounded
544
+ sqtx2520 squareroot 40E+3 -> 2.0E+2
545
+ sqtx2521 squareroot 0.41 -> 0.64 Inexact Rounded
546
+ sqtx2522 squareroot 0.041 -> 0.20 Inexact Rounded
547
+ sqtx2523 squareroot 41.0E-1 -> 2.0 Inexact Rounded
548
+ sqtx2524 squareroot 41.00E-2 -> 0.64 Inexact Rounded
549
+ sqtx2525 squareroot 41E-3 -> 0.20 Inexact Rounded
550
+ sqtx2526 squareroot 41E+1 -> 20 Inexact Rounded
551
+ sqtx2527 squareroot 41E+2 -> 64 Inexact Rounded
552
+ sqtx2528 squareroot 41E+3 -> 2.0E+2 Inexact Rounded
553
+ sqtx2529 squareroot 0.42 -> 0.65 Inexact Rounded
554
+ sqtx2530 squareroot 0.042 -> 0.20 Inexact Rounded
555
+ sqtx2531 squareroot 42.0E-1 -> 2.0 Inexact Rounded
556
+ sqtx2532 squareroot 42.00E-2 -> 0.65 Inexact Rounded
557
+ sqtx2533 squareroot 42E-3 -> 0.20 Inexact Rounded
558
+ sqtx2534 squareroot 42E+1 -> 20 Inexact Rounded
559
+ sqtx2535 squareroot 42E+2 -> 65 Inexact Rounded
560
+ sqtx2536 squareroot 42E+3 -> 2.0E+2 Inexact Rounded
561
+ sqtx2537 squareroot 0.43 -> 0.66 Inexact Rounded
562
+ sqtx2538 squareroot 0.043 -> 0.21 Inexact Rounded
563
+ sqtx2539 squareroot 43.0E-1 -> 2.1 Inexact Rounded
564
+ sqtx2540 squareroot 43.00E-2 -> 0.66 Inexact Rounded
565
+ sqtx2541 squareroot 43E-3 -> 0.21 Inexact Rounded
566
+ sqtx2542 squareroot 43E+1 -> 21 Inexact Rounded
567
+ sqtx2543 squareroot 43E+2 -> 66 Inexact Rounded
568
+ sqtx2544 squareroot 43E+3 -> 2.1E+2 Inexact Rounded
569
+ sqtx2545 squareroot 0.44 -> 0.66 Inexact Rounded
570
+ sqtx2546 squareroot 0.044 -> 0.21 Inexact Rounded
571
+ sqtx2547 squareroot 44.0E-1 -> 2.1 Inexact Rounded
572
+ sqtx2548 squareroot 44.00E-2 -> 0.66 Inexact Rounded
573
+ sqtx2549 squareroot 44E-3 -> 0.21 Inexact Rounded
574
+ sqtx2550 squareroot 44E+1 -> 21 Inexact Rounded
575
+ sqtx2551 squareroot 44E+2 -> 66 Inexact Rounded
576
+ sqtx2552 squareroot 44E+3 -> 2.1E+2 Inexact Rounded
577
+ sqtx2553 squareroot 0.45 -> 0.67 Inexact Rounded
578
+ sqtx2554 squareroot 0.045 -> 0.21 Inexact Rounded
579
+ sqtx2555 squareroot 45.0E-1 -> 2.1 Inexact Rounded
580
+ sqtx2556 squareroot 45.00E-2 -> 0.67 Inexact Rounded
581
+ sqtx2557 squareroot 45E-3 -> 0.21 Inexact Rounded
582
+ sqtx2558 squareroot 45E+1 -> 21 Inexact Rounded
583
+ sqtx2559 squareroot 45E+2 -> 67 Inexact Rounded
584
+ sqtx2560 squareroot 45E+3 -> 2.1E+2 Inexact Rounded
585
+ sqtx2561 squareroot 0.46 -> 0.68 Inexact Rounded
586
+ sqtx2562 squareroot 0.046 -> 0.21 Inexact Rounded
587
+ sqtx2563 squareroot 46.0E-1 -> 2.1 Inexact Rounded
588
+ sqtx2564 squareroot 46.00E-2 -> 0.68 Inexact Rounded
589
+ sqtx2565 squareroot 46E-3 -> 0.21 Inexact Rounded
590
+ sqtx2566 squareroot 46E+1 -> 21 Inexact Rounded
591
+ sqtx2567 squareroot 46E+2 -> 68 Inexact Rounded
592
+ sqtx2568 squareroot 46E+3 -> 2.1E+2 Inexact Rounded
593
+ sqtx2569 squareroot 0.47 -> 0.69 Inexact Rounded
594
+ sqtx2570 squareroot 0.047 -> 0.22 Inexact Rounded
595
+ sqtx2571 squareroot 47.0E-1 -> 2.2 Inexact Rounded
596
+ sqtx2572 squareroot 47.00E-2 -> 0.69 Inexact Rounded
597
+ sqtx2573 squareroot 47E-3 -> 0.22 Inexact Rounded
598
+ sqtx2574 squareroot 47E+1 -> 22 Inexact Rounded
599
+ sqtx2575 squareroot 47E+2 -> 69 Inexact Rounded
600
+ sqtx2576 squareroot 47E+3 -> 2.2E+2 Inexact Rounded
601
+ sqtx2577 squareroot 0.48 -> 0.69 Inexact Rounded
602
+ sqtx2578 squareroot 0.048 -> 0.22 Inexact Rounded
603
+ sqtx2579 squareroot 48.0E-1 -> 2.2 Inexact Rounded
604
+ sqtx2580 squareroot 48.00E-2 -> 0.69 Inexact Rounded
605
+ sqtx2581 squareroot 48E-3 -> 0.22 Inexact Rounded
606
+ sqtx2582 squareroot 48E+1 -> 22 Inexact Rounded
607
+ sqtx2583 squareroot 48E+2 -> 69 Inexact Rounded
608
+ sqtx2584 squareroot 48E+3 -> 2.2E+2 Inexact Rounded
609
+ sqtx2585 squareroot 0.49 -> 0.7
610
+ sqtx2586 squareroot 0.049 -> 0.22 Inexact Rounded
611
+ sqtx2587 squareroot 49.0E-1 -> 2.2 Inexact Rounded
612
+ sqtx2588 squareroot 49.00E-2 -> 0.70
613
+ sqtx2589 squareroot 49E-3 -> 0.22 Inexact Rounded
614
+ sqtx2590 squareroot 49E+1 -> 22 Inexact Rounded
615
+ sqtx2591 squareroot 49E+2 -> 7E+1
616
+ sqtx2592 squareroot 49E+3 -> 2.2E+2 Inexact Rounded
617
+ sqtx2593 squareroot 0.50 -> 0.71 Inexact Rounded
618
+ sqtx2594 squareroot 0.050 -> 0.22 Inexact Rounded
619
+ sqtx2595 squareroot 50.0E-1 -> 2.2 Inexact Rounded
620
+ sqtx2596 squareroot 50.00E-2 -> 0.71 Inexact Rounded
621
+ sqtx2597 squareroot 50E-3 -> 0.22 Inexact Rounded
622
+ sqtx2598 squareroot 50E+1 -> 22 Inexact Rounded
623
+ sqtx2599 squareroot 50E+2 -> 71 Inexact Rounded
624
+ sqtx2600 squareroot 50E+3 -> 2.2E+2 Inexact Rounded
625
+ sqtx2601 squareroot 0.51 -> 0.71 Inexact Rounded
626
+ sqtx2602 squareroot 0.051 -> 0.23 Inexact Rounded
627
+ sqtx2603 squareroot 51.0E-1 -> 2.3 Inexact Rounded
628
+ sqtx2604 squareroot 51.00E-2 -> 0.71 Inexact Rounded
629
+ sqtx2605 squareroot 51E-3 -> 0.23 Inexact Rounded
630
+ sqtx2606 squareroot 51E+1 -> 23 Inexact Rounded
631
+ sqtx2607 squareroot 51E+2 -> 71 Inexact Rounded
632
+ sqtx2608 squareroot 51E+3 -> 2.3E+2 Inexact Rounded
633
+ sqtx2609 squareroot 0.52 -> 0.72 Inexact Rounded
634
+ sqtx2610 squareroot 0.052 -> 0.23 Inexact Rounded
635
+ sqtx2611 squareroot 52.0E-1 -> 2.3 Inexact Rounded
636
+ sqtx2612 squareroot 52.00E-2 -> 0.72 Inexact Rounded
637
+ sqtx2613 squareroot 52E-3 -> 0.23 Inexact Rounded
638
+ sqtx2614 squareroot 52E+1 -> 23 Inexact Rounded
639
+ sqtx2615 squareroot 52E+2 -> 72 Inexact Rounded
640
+ sqtx2616 squareroot 52E+3 -> 2.3E+2 Inexact Rounded
641
+ sqtx2617 squareroot 0.53 -> 0.73 Inexact Rounded
642
+ sqtx2618 squareroot 0.053 -> 0.23 Inexact Rounded
643
+ sqtx2619 squareroot 53.0E-1 -> 2.3 Inexact Rounded
644
+ sqtx2620 squareroot 53.00E-2 -> 0.73 Inexact Rounded
645
+ sqtx2621 squareroot 53E-3 -> 0.23 Inexact Rounded
646
+ sqtx2622 squareroot 53E+1 -> 23 Inexact Rounded
647
+ sqtx2623 squareroot 53E+2 -> 73 Inexact Rounded
648
+ sqtx2624 squareroot 53E+3 -> 2.3E+2 Inexact Rounded
649
+ sqtx2625 squareroot 0.54 -> 0.73 Inexact Rounded
650
+ sqtx2626 squareroot 0.054 -> 0.23 Inexact Rounded
651
+ sqtx2627 squareroot 54.0E-1 -> 2.3 Inexact Rounded
652
+ sqtx2628 squareroot 54.00E-2 -> 0.73 Inexact Rounded
653
+ sqtx2629 squareroot 54E-3 -> 0.23 Inexact Rounded
654
+ sqtx2630 squareroot 54E+1 -> 23 Inexact Rounded
655
+ sqtx2631 squareroot 54E+2 -> 73 Inexact Rounded
656
+ sqtx2632 squareroot 54E+3 -> 2.3E+2 Inexact Rounded
657
+ sqtx2633 squareroot 0.55 -> 0.74 Inexact Rounded
658
+ sqtx2634 squareroot 0.055 -> 0.23 Inexact Rounded
659
+ sqtx2635 squareroot 55.0E-1 -> 2.3 Inexact Rounded
660
+ sqtx2636 squareroot 55.00E-2 -> 0.74 Inexact Rounded
661
+ sqtx2637 squareroot 55E-3 -> 0.23 Inexact Rounded
662
+ sqtx2638 squareroot 55E+1 -> 23 Inexact Rounded
663
+ sqtx2639 squareroot 55E+2 -> 74 Inexact Rounded
664
+ sqtx2640 squareroot 55E+3 -> 2.3E+2 Inexact Rounded
665
+ sqtx2641 squareroot 0.56 -> 0.75 Inexact Rounded
666
+ sqtx2642 squareroot 0.056 -> 0.24 Inexact Rounded
667
+ sqtx2643 squareroot 56.0E-1 -> 2.4 Inexact Rounded
668
+ sqtx2644 squareroot 56.00E-2 -> 0.75 Inexact Rounded
669
+ sqtx2645 squareroot 56E-3 -> 0.24 Inexact Rounded
670
+ sqtx2646 squareroot 56E+1 -> 24 Inexact Rounded
671
+ sqtx2647 squareroot 56E+2 -> 75 Inexact Rounded
672
+ sqtx2648 squareroot 56E+3 -> 2.4E+2 Inexact Rounded
673
+ sqtx2649 squareroot 0.57 -> 0.75 Inexact Rounded
674
+ sqtx2650 squareroot 0.057 -> 0.24 Inexact Rounded
675
+ sqtx2651 squareroot 57.0E-1 -> 2.4 Inexact Rounded
676
+ sqtx2652 squareroot 57.00E-2 -> 0.75 Inexact Rounded
677
+ sqtx2653 squareroot 57E-3 -> 0.24 Inexact Rounded
678
+ sqtx2654 squareroot 57E+1 -> 24 Inexact Rounded
679
+ sqtx2655 squareroot 57E+2 -> 75 Inexact Rounded
680
+ sqtx2656 squareroot 57E+3 -> 2.4E+2 Inexact Rounded
681
+ sqtx2657 squareroot 0.58 -> 0.76 Inexact Rounded
682
+ sqtx2658 squareroot 0.058 -> 0.24 Inexact Rounded
683
+ sqtx2659 squareroot 58.0E-1 -> 2.4 Inexact Rounded
684
+ sqtx2660 squareroot 58.00E-2 -> 0.76 Inexact Rounded
685
+ sqtx2661 squareroot 58E-3 -> 0.24 Inexact Rounded
686
+ sqtx2662 squareroot 58E+1 -> 24 Inexact Rounded
687
+ sqtx2663 squareroot 58E+2 -> 76 Inexact Rounded
688
+ sqtx2664 squareroot 58E+3 -> 2.4E+2 Inexact Rounded
689
+ sqtx2665 squareroot 0.59 -> 0.77 Inexact Rounded
690
+ sqtx2666 squareroot 0.059 -> 0.24 Inexact Rounded
691
+ sqtx2667 squareroot 59.0E-1 -> 2.4 Inexact Rounded
692
+ sqtx2668 squareroot 59.00E-2 -> 0.77 Inexact Rounded
693
+ sqtx2669 squareroot 59E-3 -> 0.24 Inexact Rounded
694
+ sqtx2670 squareroot 59E+1 -> 24 Inexact Rounded
695
+ sqtx2671 squareroot 59E+2 -> 77 Inexact Rounded
696
+ sqtx2672 squareroot 59E+3 -> 2.4E+2 Inexact Rounded
697
+ sqtx2673 squareroot 0.60 -> 0.77 Inexact Rounded
698
+ sqtx2674 squareroot 0.060 -> 0.24 Inexact Rounded
699
+ sqtx2675 squareroot 60.0E-1 -> 2.4 Inexact Rounded
700
+ sqtx2676 squareroot 60.00E-2 -> 0.77 Inexact Rounded
701
+ sqtx2677 squareroot 60E-3 -> 0.24 Inexact Rounded
702
+ sqtx2678 squareroot 60E+1 -> 24 Inexact Rounded
703
+ sqtx2679 squareroot 60E+2 -> 77 Inexact Rounded
704
+ sqtx2680 squareroot 60E+3 -> 2.4E+2 Inexact Rounded
705
+ sqtx2681 squareroot 0.61 -> 0.78 Inexact Rounded
706
+ sqtx2682 squareroot 0.061 -> 0.25 Inexact Rounded
707
+ sqtx2683 squareroot 61.0E-1 -> 2.5 Inexact Rounded
708
+ sqtx2684 squareroot 61.00E-2 -> 0.78 Inexact Rounded
709
+ sqtx2685 squareroot 61E-3 -> 0.25 Inexact Rounded
710
+ sqtx2686 squareroot 61E+1 -> 25 Inexact Rounded
711
+ sqtx2687 squareroot 61E+2 -> 78 Inexact Rounded
712
+ sqtx2688 squareroot 61E+3 -> 2.5E+2 Inexact Rounded
713
+ sqtx2689 squareroot 0.62 -> 0.79 Inexact Rounded
714
+ sqtx2690 squareroot 0.062 -> 0.25 Inexact Rounded
715
+ sqtx2691 squareroot 62.0E-1 -> 2.5 Inexact Rounded
716
+ sqtx2692 squareroot 62.00E-2 -> 0.79 Inexact Rounded
717
+ sqtx2693 squareroot 62E-3 -> 0.25 Inexact Rounded
718
+ sqtx2694 squareroot 62E+1 -> 25 Inexact Rounded
719
+ sqtx2695 squareroot 62E+2 -> 79 Inexact Rounded
720
+ sqtx2696 squareroot 62E+3 -> 2.5E+2 Inexact Rounded
721
+ sqtx2697 squareroot 0.63 -> 0.79 Inexact Rounded
722
+ sqtx2698 squareroot 0.063 -> 0.25 Inexact Rounded
723
+ sqtx2699 squareroot 63.0E-1 -> 2.5 Inexact Rounded
724
+ sqtx2700 squareroot 63.00E-2 -> 0.79 Inexact Rounded
725
+ sqtx2701 squareroot 63E-3 -> 0.25 Inexact Rounded
726
+ sqtx2702 squareroot 63E+1 -> 25 Inexact Rounded
727
+ sqtx2703 squareroot 63E+2 -> 79 Inexact Rounded
728
+ sqtx2704 squareroot 63E+3 -> 2.5E+2 Inexact Rounded
729
+ sqtx2705 squareroot 0.64 -> 0.8
730
+ sqtx2706 squareroot 0.064 -> 0.25 Inexact Rounded
731
+ sqtx2707 squareroot 64.0E-1 -> 2.5 Inexact Rounded
732
+ sqtx2708 squareroot 64.00E-2 -> 0.80
733
+ sqtx2709 squareroot 64E-3 -> 0.25 Inexact Rounded
734
+ sqtx2710 squareroot 64E+1 -> 25 Inexact Rounded
735
+ sqtx2711 squareroot 64E+2 -> 8E+1
736
+ sqtx2712 squareroot 64E+3 -> 2.5E+2 Inexact Rounded
737
+ sqtx2713 squareroot 0.65 -> 0.81 Inexact Rounded
738
+ sqtx2714 squareroot 0.065 -> 0.25 Inexact Rounded
739
+ sqtx2715 squareroot 65.0E-1 -> 2.5 Inexact Rounded
740
+ sqtx2716 squareroot 65.00E-2 -> 0.81 Inexact Rounded
741
+ sqtx2717 squareroot 65E-3 -> 0.25 Inexact Rounded
742
+ sqtx2718 squareroot 65E+1 -> 25 Inexact Rounded
743
+ sqtx2719 squareroot 65E+2 -> 81 Inexact Rounded
744
+ sqtx2720 squareroot 65E+3 -> 2.5E+2 Inexact Rounded
745
+ sqtx2721 squareroot 0.66 -> 0.81 Inexact Rounded
746
+ sqtx2722 squareroot 0.066 -> 0.26 Inexact Rounded
747
+ sqtx2723 squareroot 66.0E-1 -> 2.6 Inexact Rounded
748
+ sqtx2724 squareroot 66.00E-2 -> 0.81 Inexact Rounded
749
+ sqtx2725 squareroot 66E-3 -> 0.26 Inexact Rounded
750
+ sqtx2726 squareroot 66E+1 -> 26 Inexact Rounded
751
+ sqtx2727 squareroot 66E+2 -> 81 Inexact Rounded
752
+ sqtx2728 squareroot 66E+3 -> 2.6E+2 Inexact Rounded
753
+ sqtx2729 squareroot 0.67 -> 0.82 Inexact Rounded
754
+ sqtx2730 squareroot 0.067 -> 0.26 Inexact Rounded
755
+ sqtx2731 squareroot 67.0E-1 -> 2.6 Inexact Rounded
756
+ sqtx2732 squareroot 67.00E-2 -> 0.82 Inexact Rounded
757
+ sqtx2733 squareroot 67E-3 -> 0.26 Inexact Rounded
758
+ sqtx2734 squareroot 67E+1 -> 26 Inexact Rounded
759
+ sqtx2735 squareroot 67E+2 -> 82 Inexact Rounded
760
+ sqtx2736 squareroot 67E+3 -> 2.6E+2 Inexact Rounded
761
+ sqtx2737 squareroot 0.68 -> 0.82 Inexact Rounded
762
+ sqtx2738 squareroot 0.068 -> 0.26 Inexact Rounded
763
+ sqtx2739 squareroot 68.0E-1 -> 2.6 Inexact Rounded
764
+ sqtx2740 squareroot 68.00E-2 -> 0.82 Inexact Rounded
765
+ sqtx2741 squareroot 68E-3 -> 0.26 Inexact Rounded
766
+ sqtx2742 squareroot 68E+1 -> 26 Inexact Rounded
767
+ sqtx2743 squareroot 68E+2 -> 82 Inexact Rounded
768
+ sqtx2744 squareroot 68E+3 -> 2.6E+2 Inexact Rounded
769
+ sqtx2745 squareroot 0.69 -> 0.83 Inexact Rounded
770
+ sqtx2746 squareroot 0.069 -> 0.26 Inexact Rounded
771
+ sqtx2747 squareroot 69.0E-1 -> 2.6 Inexact Rounded
772
+ sqtx2748 squareroot 69.00E-2 -> 0.83 Inexact Rounded
773
+ sqtx2749 squareroot 69E-3 -> 0.26 Inexact Rounded
774
+ sqtx2750 squareroot 69E+1 -> 26 Inexact Rounded
775
+ sqtx2751 squareroot 69E+2 -> 83 Inexact Rounded
776
+ sqtx2752 squareroot 69E+3 -> 2.6E+2 Inexact Rounded
777
+ sqtx2753 squareroot 0.70 -> 0.84 Inexact Rounded
778
+ sqtx2754 squareroot 0.070 -> 0.26 Inexact Rounded
779
+ sqtx2755 squareroot 70.0E-1 -> 2.6 Inexact Rounded
780
+ sqtx2756 squareroot 70.00E-2 -> 0.84 Inexact Rounded
781
+ sqtx2757 squareroot 70E-3 -> 0.26 Inexact Rounded
782
+ sqtx2758 squareroot 70E+1 -> 26 Inexact Rounded
783
+ sqtx2759 squareroot 70E+2 -> 84 Inexact Rounded
784
+ sqtx2760 squareroot 70E+3 -> 2.6E+2 Inexact Rounded
785
+ sqtx2761 squareroot 0.71 -> 0.84 Inexact Rounded
786
+ sqtx2762 squareroot 0.071 -> 0.27 Inexact Rounded
787
+ sqtx2763 squareroot 71.0E-1 -> 2.7 Inexact Rounded
788
+ sqtx2764 squareroot 71.00E-2 -> 0.84 Inexact Rounded
789
+ sqtx2765 squareroot 71E-3 -> 0.27 Inexact Rounded
790
+ sqtx2766 squareroot 71E+1 -> 27 Inexact Rounded
791
+ sqtx2767 squareroot 71E+2 -> 84 Inexact Rounded
792
+ sqtx2768 squareroot 71E+3 -> 2.7E+2 Inexact Rounded
793
+ sqtx2769 squareroot 0.72 -> 0.85 Inexact Rounded
794
+ sqtx2770 squareroot 0.072 -> 0.27 Inexact Rounded
795
+ sqtx2771 squareroot 72.0E-1 -> 2.7 Inexact Rounded
796
+ sqtx2772 squareroot 72.00E-2 -> 0.85 Inexact Rounded
797
+ sqtx2773 squareroot 72E-3 -> 0.27 Inexact Rounded
798
+ sqtx2774 squareroot 72E+1 -> 27 Inexact Rounded
799
+ sqtx2775 squareroot 72E+2 -> 85 Inexact Rounded
800
+ sqtx2776 squareroot 72E+3 -> 2.7E+2 Inexact Rounded
801
+ sqtx2777 squareroot 0.73 -> 0.85 Inexact Rounded
802
+ sqtx2778 squareroot 0.073 -> 0.27 Inexact Rounded
803
+ sqtx2779 squareroot 73.0E-1 -> 2.7 Inexact Rounded
804
+ sqtx2780 squareroot 73.00E-2 -> 0.85 Inexact Rounded
805
+ sqtx2781 squareroot 73E-3 -> 0.27 Inexact Rounded
806
+ sqtx2782 squareroot 73E+1 -> 27 Inexact Rounded
807
+ sqtx2783 squareroot 73E+2 -> 85 Inexact Rounded
808
+ sqtx2784 squareroot 73E+3 -> 2.7E+2 Inexact Rounded
809
+ sqtx2785 squareroot 0.74 -> 0.86 Inexact Rounded
810
+ sqtx2786 squareroot 0.074 -> 0.27 Inexact Rounded
811
+ sqtx2787 squareroot 74.0E-1 -> 2.7 Inexact Rounded
812
+ sqtx2788 squareroot 74.00E-2 -> 0.86 Inexact Rounded
813
+ sqtx2789 squareroot 74E-3 -> 0.27 Inexact Rounded
814
+ sqtx2790 squareroot 74E+1 -> 27 Inexact Rounded
815
+ sqtx2791 squareroot 74E+2 -> 86 Inexact Rounded
816
+ sqtx2792 squareroot 74E+3 -> 2.7E+2 Inexact Rounded
817
+ sqtx2793 squareroot 0.75 -> 0.87 Inexact Rounded
818
+ sqtx2794 squareroot 0.075 -> 0.27 Inexact Rounded
819
+ sqtx2795 squareroot 75.0E-1 -> 2.7 Inexact Rounded
820
+ sqtx2796 squareroot 75.00E-2 -> 0.87 Inexact Rounded
821
+ sqtx2797 squareroot 75E-3 -> 0.27 Inexact Rounded
822
+ sqtx2798 squareroot 75E+1 -> 27 Inexact Rounded
823
+ sqtx2799 squareroot 75E+2 -> 87 Inexact Rounded
824
+ sqtx2800 squareroot 75E+3 -> 2.7E+2 Inexact Rounded
825
+ sqtx2801 squareroot 0.76 -> 0.87 Inexact Rounded
826
+ sqtx2802 squareroot 0.076 -> 0.28 Inexact Rounded
827
+ sqtx2803 squareroot 76.0E-1 -> 2.8 Inexact Rounded
828
+ sqtx2804 squareroot 76.00E-2 -> 0.87 Inexact Rounded
829
+ sqtx2805 squareroot 76E-3 -> 0.28 Inexact Rounded
830
+ sqtx2806 squareroot 76E+1 -> 28 Inexact Rounded
831
+ sqtx2807 squareroot 76E+2 -> 87 Inexact Rounded
832
+ sqtx2808 squareroot 76E+3 -> 2.8E+2 Inexact Rounded
833
+ sqtx2809 squareroot 0.77 -> 0.88 Inexact Rounded
834
+ sqtx2810 squareroot 0.077 -> 0.28 Inexact Rounded
835
+ sqtx2811 squareroot 77.0E-1 -> 2.8 Inexact Rounded
836
+ sqtx2812 squareroot 77.00E-2 -> 0.88 Inexact Rounded
837
+ sqtx2813 squareroot 77E-3 -> 0.28 Inexact Rounded
838
+ sqtx2814 squareroot 77E+1 -> 28 Inexact Rounded
839
+ sqtx2815 squareroot 77E+2 -> 88 Inexact Rounded
840
+ sqtx2816 squareroot 77E+3 -> 2.8E+2 Inexact Rounded
841
+ sqtx2817 squareroot 0.78 -> 0.88 Inexact Rounded
842
+ sqtx2818 squareroot 0.078 -> 0.28 Inexact Rounded
843
+ sqtx2819 squareroot 78.0E-1 -> 2.8 Inexact Rounded
844
+ sqtx2820 squareroot 78.00E-2 -> 0.88 Inexact Rounded
845
+ sqtx2821 squareroot 78E-3 -> 0.28 Inexact Rounded
846
+ sqtx2822 squareroot 78E+1 -> 28 Inexact Rounded
847
+ sqtx2823 squareroot 78E+2 -> 88 Inexact Rounded
848
+ sqtx2824 squareroot 78E+3 -> 2.8E+2 Inexact Rounded
849
+ sqtx2825 squareroot 0.79 -> 0.89 Inexact Rounded
850
+ sqtx2826 squareroot 0.079 -> 0.28 Inexact Rounded
851
+ sqtx2827 squareroot 79.0E-1 -> 2.8 Inexact Rounded
852
+ sqtx2828 squareroot 79.00E-2 -> 0.89 Inexact Rounded
853
+ sqtx2829 squareroot 79E-3 -> 0.28 Inexact Rounded
854
+ sqtx2830 squareroot 79E+1 -> 28 Inexact Rounded
855
+ sqtx2831 squareroot 79E+2 -> 89 Inexact Rounded
856
+ sqtx2832 squareroot 79E+3 -> 2.8E+2 Inexact Rounded
857
+ sqtx2833 squareroot 0.80 -> 0.89 Inexact Rounded
858
+ sqtx2834 squareroot 0.080 -> 0.28 Inexact Rounded
859
+ sqtx2835 squareroot 80.0E-1 -> 2.8 Inexact Rounded
860
+ sqtx2836 squareroot 80.00E-2 -> 0.89 Inexact Rounded
861
+ sqtx2837 squareroot 80E-3 -> 0.28 Inexact Rounded
862
+ sqtx2838 squareroot 80E+1 -> 28 Inexact Rounded
863
+ sqtx2839 squareroot 80E+2 -> 89 Inexact Rounded
864
+ sqtx2840 squareroot 80E+3 -> 2.8E+2 Inexact Rounded
865
+ sqtx2841 squareroot 0.81 -> 0.9
866
+ sqtx2842 squareroot 0.081 -> 0.28 Inexact Rounded
867
+ sqtx2843 squareroot 81.0E-1 -> 2.8 Inexact Rounded
868
+ sqtx2844 squareroot 81.00E-2 -> 0.90
869
+ sqtx2845 squareroot 81E-3 -> 0.28 Inexact Rounded
870
+ sqtx2846 squareroot 81E+1 -> 28 Inexact Rounded
871
+ sqtx2847 squareroot 81E+2 -> 9E+1
872
+ sqtx2848 squareroot 81E+3 -> 2.8E+2 Inexact Rounded
873
+ sqtx2849 squareroot 0.82 -> 0.91 Inexact Rounded
874
+ sqtx2850 squareroot 0.082 -> 0.29 Inexact Rounded
875
+ sqtx2851 squareroot 82.0E-1 -> 2.9 Inexact Rounded
876
+ sqtx2852 squareroot 82.00E-2 -> 0.91 Inexact Rounded
877
+ sqtx2853 squareroot 82E-3 -> 0.29 Inexact Rounded
878
+ sqtx2854 squareroot 82E+1 -> 29 Inexact Rounded
879
+ sqtx2855 squareroot 82E+2 -> 91 Inexact Rounded
880
+ sqtx2856 squareroot 82E+3 -> 2.9E+2 Inexact Rounded
881
+ sqtx2857 squareroot 0.83 -> 0.91 Inexact Rounded
882
+ sqtx2858 squareroot 0.083 -> 0.29 Inexact Rounded
883
+ sqtx2859 squareroot 83.0E-1 -> 2.9 Inexact Rounded
884
+ sqtx2860 squareroot 83.00E-2 -> 0.91 Inexact Rounded
885
+ sqtx2861 squareroot 83E-3 -> 0.29 Inexact Rounded
886
+ sqtx2862 squareroot 83E+1 -> 29 Inexact Rounded
887
+ sqtx2863 squareroot 83E+2 -> 91 Inexact Rounded
888
+ sqtx2864 squareroot 83E+3 -> 2.9E+2 Inexact Rounded
889
+ sqtx2865 squareroot 0.84 -> 0.92 Inexact Rounded
890
+ sqtx2866 squareroot 0.084 -> 0.29 Inexact Rounded
891
+ sqtx2867 squareroot 84.0E-1 -> 2.9 Inexact Rounded
892
+ sqtx2868 squareroot 84.00E-2 -> 0.92 Inexact Rounded
893
+ sqtx2869 squareroot 84E-3 -> 0.29 Inexact Rounded
894
+ sqtx2870 squareroot 84E+1 -> 29 Inexact Rounded
895
+ sqtx2871 squareroot 84E+2 -> 92 Inexact Rounded
896
+ sqtx2872 squareroot 84E+3 -> 2.9E+2 Inexact Rounded
897
+ sqtx2873 squareroot 0.85 -> 0.92 Inexact Rounded
898
+ sqtx2874 squareroot 0.085 -> 0.29 Inexact Rounded
899
+ sqtx2875 squareroot 85.0E-1 -> 2.9 Inexact Rounded
900
+ sqtx2876 squareroot 85.00E-2 -> 0.92 Inexact Rounded
901
+ sqtx2877 squareroot 85E-3 -> 0.29 Inexact Rounded
902
+ sqtx2878 squareroot 85E+1 -> 29 Inexact Rounded
903
+ sqtx2879 squareroot 85E+2 -> 92 Inexact Rounded
904
+ sqtx2880 squareroot 85E+3 -> 2.9E+2 Inexact Rounded
905
+ sqtx2881 squareroot 0.86 -> 0.93 Inexact Rounded
906
+ sqtx2882 squareroot 0.086 -> 0.29 Inexact Rounded
907
+ sqtx2883 squareroot 86.0E-1 -> 2.9 Inexact Rounded
908
+ sqtx2884 squareroot 86.00E-2 -> 0.93 Inexact Rounded
909
+ sqtx2885 squareroot 86E-3 -> 0.29 Inexact Rounded
910
+ sqtx2886 squareroot 86E+1 -> 29 Inexact Rounded
911
+ sqtx2887 squareroot 86E+2 -> 93 Inexact Rounded
912
+ sqtx2888 squareroot 86E+3 -> 2.9E+2 Inexact Rounded
913
+ sqtx2889 squareroot 0.87 -> 0.93 Inexact Rounded
914
+ sqtx2890 squareroot 0.087 -> 0.29 Inexact Rounded
915
+ sqtx2891 squareroot 87.0E-1 -> 2.9 Inexact Rounded
916
+ sqtx2892 squareroot 87.00E-2 -> 0.93 Inexact Rounded
917
+ sqtx2893 squareroot 87E-3 -> 0.29 Inexact Rounded
918
+ sqtx2894 squareroot 87E+1 -> 29 Inexact Rounded
919
+ sqtx2895 squareroot 87E+2 -> 93 Inexact Rounded
920
+ sqtx2896 squareroot 87E+3 -> 2.9E+2 Inexact Rounded
921
+ sqtx2897 squareroot 0.88 -> 0.94 Inexact Rounded
922
+ sqtx2898 squareroot 0.088 -> 0.30 Inexact Rounded
923
+ sqtx2899 squareroot 88.0E-1 -> 3.0 Inexact Rounded
924
+ sqtx2900 squareroot 88.00E-2 -> 0.94 Inexact Rounded
925
+ sqtx2901 squareroot 88E-3 -> 0.30 Inexact Rounded
926
+ sqtx2902 squareroot 88E+1 -> 30 Inexact Rounded
927
+ sqtx2903 squareroot 88E+2 -> 94 Inexact Rounded
928
+ sqtx2904 squareroot 88E+3 -> 3.0E+2 Inexact Rounded
929
+ sqtx2905 squareroot 0.89 -> 0.94 Inexact Rounded
930
+ sqtx2906 squareroot 0.089 -> 0.30 Inexact Rounded
931
+ sqtx2907 squareroot 89.0E-1 -> 3.0 Inexact Rounded
932
+ sqtx2908 squareroot 89.00E-2 -> 0.94 Inexact Rounded
933
+ sqtx2909 squareroot 89E-3 -> 0.30 Inexact Rounded
934
+ sqtx2910 squareroot 89E+1 -> 30 Inexact Rounded
935
+ sqtx2911 squareroot 89E+2 -> 94 Inexact Rounded
936
+ sqtx2912 squareroot 89E+3 -> 3.0E+2 Inexact Rounded
937
+ sqtx2913 squareroot 0.90 -> 0.95 Inexact Rounded
938
+ sqtx2914 squareroot 0.090 -> 0.30
939
+ sqtx2915 squareroot 90.0E-1 -> 3.0
940
+ sqtx2916 squareroot 90.00E-2 -> 0.95 Inexact Rounded
941
+ sqtx2917 squareroot 90E-3 -> 0.30
942
+ sqtx2918 squareroot 90E+1 -> 30
943
+ sqtx2919 squareroot 90E+2 -> 95 Inexact Rounded
944
+ sqtx2920 squareroot 90E+3 -> 3.0E+2
945
+ sqtx2921 squareroot 0.91 -> 0.95 Inexact Rounded
946
+ sqtx2922 squareroot 0.091 -> 0.30 Inexact Rounded
947
+ sqtx2923 squareroot 91.0E-1 -> 3.0 Inexact Rounded
948
+ sqtx2924 squareroot 91.00E-2 -> 0.95 Inexact Rounded
949
+ sqtx2925 squareroot 91E-3 -> 0.30 Inexact Rounded
950
+ sqtx2926 squareroot 91E+1 -> 30 Inexact Rounded
951
+ sqtx2927 squareroot 91E+2 -> 95 Inexact Rounded
952
+ sqtx2928 squareroot 91E+3 -> 3.0E+2 Inexact Rounded
953
+ sqtx2929 squareroot 0.92 -> 0.96 Inexact Rounded
954
+ sqtx2930 squareroot 0.092 -> 0.30 Inexact Rounded
955
+ sqtx2931 squareroot 92.0E-1 -> 3.0 Inexact Rounded
956
+ sqtx2932 squareroot 92.00E-2 -> 0.96 Inexact Rounded
957
+ sqtx2933 squareroot 92E-3 -> 0.30 Inexact Rounded
958
+ sqtx2934 squareroot 92E+1 -> 30 Inexact Rounded
959
+ sqtx2935 squareroot 92E+2 -> 96 Inexact Rounded
960
+ sqtx2936 squareroot 92E+3 -> 3.0E+2 Inexact Rounded
961
+ sqtx2937 squareroot 0.93 -> 0.96 Inexact Rounded
962
+ sqtx2938 squareroot 0.093 -> 0.30 Inexact Rounded
963
+ sqtx2939 squareroot 93.0E-1 -> 3.0 Inexact Rounded
964
+ sqtx2940 squareroot 93.00E-2 -> 0.96 Inexact Rounded
965
+ sqtx2941 squareroot 93E-3 -> 0.30 Inexact Rounded
966
+ sqtx2942 squareroot 93E+1 -> 30 Inexact Rounded
967
+ sqtx2943 squareroot 93E+2 -> 96 Inexact Rounded
968
+ sqtx2944 squareroot 93E+3 -> 3.0E+2 Inexact Rounded
969
+ sqtx2945 squareroot 0.94 -> 0.97 Inexact Rounded
970
+ sqtx2946 squareroot 0.094 -> 0.31 Inexact Rounded
971
+ sqtx2947 squareroot 94.0E-1 -> 3.1 Inexact Rounded
972
+ sqtx2948 squareroot 94.00E-2 -> 0.97 Inexact Rounded
973
+ sqtx2949 squareroot 94E-3 -> 0.31 Inexact Rounded
974
+ sqtx2950 squareroot 94E+1 -> 31 Inexact Rounded
975
+ sqtx2951 squareroot 94E+2 -> 97 Inexact Rounded
976
+ sqtx2952 squareroot 94E+3 -> 3.1E+2 Inexact Rounded
977
+ sqtx2953 squareroot 0.95 -> 0.97 Inexact Rounded
978
+ sqtx2954 squareroot 0.095 -> 0.31 Inexact Rounded
979
+ sqtx2955 squareroot 95.0E-1 -> 3.1 Inexact Rounded
980
+ sqtx2956 squareroot 95.00E-2 -> 0.97 Inexact Rounded
981
+ sqtx2957 squareroot 95E-3 -> 0.31 Inexact Rounded
982
+ sqtx2958 squareroot 95E+1 -> 31 Inexact Rounded
983
+ sqtx2959 squareroot 95E+2 -> 97 Inexact Rounded
984
+ sqtx2960 squareroot 95E+3 -> 3.1E+2 Inexact Rounded
985
+ sqtx2961 squareroot 0.96 -> 0.98 Inexact Rounded
986
+ sqtx2962 squareroot 0.096 -> 0.31 Inexact Rounded
987
+ sqtx2963 squareroot 96.0E-1 -> 3.1 Inexact Rounded
988
+ sqtx2964 squareroot 96.00E-2 -> 0.98 Inexact Rounded
989
+ sqtx2965 squareroot 96E-3 -> 0.31 Inexact Rounded
990
+ sqtx2966 squareroot 96E+1 -> 31 Inexact Rounded
991
+ sqtx2967 squareroot 96E+2 -> 98 Inexact Rounded
992
+ sqtx2968 squareroot 96E+3 -> 3.1E+2 Inexact Rounded
993
+ sqtx2969 squareroot 0.97 -> 0.98 Inexact Rounded
994
+ sqtx2970 squareroot 0.097 -> 0.31 Inexact Rounded
995
+ sqtx2971 squareroot 97.0E-1 -> 3.1 Inexact Rounded
996
+ sqtx2972 squareroot 97.00E-2 -> 0.98 Inexact Rounded
997
+ sqtx2973 squareroot 97E-3 -> 0.31 Inexact Rounded
998
+ sqtx2974 squareroot 97E+1 -> 31 Inexact Rounded
999
+ sqtx2975 squareroot 97E+2 -> 98 Inexact Rounded
1000
+ sqtx2976 squareroot 97E+3 -> 3.1E+2 Inexact Rounded
1001
+ sqtx2977 squareroot 0.98 -> 0.99 Inexact Rounded
1002
+ sqtx2978 squareroot 0.098 -> 0.31 Inexact Rounded
1003
+ sqtx2979 squareroot 98.0E-1 -> 3.1 Inexact Rounded
1004
+ sqtx2980 squareroot 98.00E-2 -> 0.99 Inexact Rounded
1005
+ sqtx2981 squareroot 98E-3 -> 0.31 Inexact Rounded
1006
+ sqtx2982 squareroot 98E+1 -> 31 Inexact Rounded
1007
+ sqtx2983 squareroot 98E+2 -> 99 Inexact Rounded
1008
+ sqtx2984 squareroot 98E+3 -> 3.1E+2 Inexact Rounded
1009
+ sqtx2985 squareroot 0.99 -> 0.99 Inexact Rounded
1010
+ sqtx2986 squareroot 0.099 -> 0.31 Inexact Rounded
1011
+ sqtx2987 squareroot 99.0E-1 -> 3.1 Inexact Rounded
1012
+ sqtx2988 squareroot 99.00E-2 -> 0.99 Inexact Rounded
1013
+ sqtx2989 squareroot 99E-3 -> 0.31 Inexact Rounded
1014
+ sqtx2990 squareroot 99E+1 -> 31 Inexact Rounded
1015
+ sqtx2991 squareroot 99E+2 -> 99 Inexact Rounded
1016
+ sqtx2992 squareroot 99E+3 -> 3.1E+2 Inexact Rounded
1017
+
1018
+ -- Precision 3 squareroot tests [exhaustive, f and f/10]
1019
+ rounding: half_even
1020
+ maxExponent: 999
1021
+ minexponent: -999
1022
+ precision: 3
1023
+ sqtx3001 squareroot 0.1 -> 0.316 Inexact Rounded
1024
+ sqtx3002 squareroot 0.01 -> 0.1
1025
+ sqtx3003 squareroot 0.2 -> 0.447 Inexact Rounded
1026
+ sqtx3004 squareroot 0.02 -> 0.141 Inexact Rounded
1027
+ sqtx3005 squareroot 0.3 -> 0.548 Inexact Rounded
1028
+ sqtx3006 squareroot 0.03 -> 0.173 Inexact Rounded
1029
+ sqtx3007 squareroot 0.4 -> 0.632 Inexact Rounded
1030
+ sqtx3008 squareroot 0.04 -> 0.2
1031
+ sqtx3009 squareroot 0.5 -> 0.707 Inexact Rounded
1032
+ sqtx3010 squareroot 0.05 -> 0.224 Inexact Rounded
1033
+ sqtx3011 squareroot 0.6 -> 0.775 Inexact Rounded
1034
+ sqtx3012 squareroot 0.06 -> 0.245 Inexact Rounded
1035
+ sqtx3013 squareroot 0.7 -> 0.837 Inexact Rounded
1036
+ sqtx3014 squareroot 0.07 -> 0.265 Inexact Rounded
1037
+ sqtx3015 squareroot 0.8 -> 0.894 Inexact Rounded
1038
+ sqtx3016 squareroot 0.08 -> 0.283 Inexact Rounded
1039
+ sqtx3017 squareroot 0.9 -> 0.949 Inexact Rounded
1040
+ sqtx3018 squareroot 0.09 -> 0.3
1041
+ sqtx3019 squareroot 0.11 -> 0.332 Inexact Rounded
1042
+ sqtx3020 squareroot 0.011 -> 0.105 Inexact Rounded
1043
+ sqtx3021 squareroot 0.12 -> 0.346 Inexact Rounded
1044
+ sqtx3022 squareroot 0.012 -> 0.110 Inexact Rounded
1045
+ sqtx3023 squareroot 0.13 -> 0.361 Inexact Rounded
1046
+ sqtx3024 squareroot 0.013 -> 0.114 Inexact Rounded
1047
+ sqtx3025 squareroot 0.14 -> 0.374 Inexact Rounded
1048
+ sqtx3026 squareroot 0.014 -> 0.118 Inexact Rounded
1049
+ sqtx3027 squareroot 0.15 -> 0.387 Inexact Rounded
1050
+ sqtx3028 squareroot 0.015 -> 0.122 Inexact Rounded
1051
+ sqtx3029 squareroot 0.16 -> 0.4
1052
+ sqtx3030 squareroot 0.016 -> 0.126 Inexact Rounded
1053
+ sqtx3031 squareroot 0.17 -> 0.412 Inexact Rounded
1054
+ sqtx3032 squareroot 0.017 -> 0.130 Inexact Rounded
1055
+ sqtx3033 squareroot 0.18 -> 0.424 Inexact Rounded
1056
+ sqtx3034 squareroot 0.018 -> 0.134 Inexact Rounded
1057
+ sqtx3035 squareroot 0.19 -> 0.436 Inexact Rounded
1058
+ sqtx3036 squareroot 0.019 -> 0.138 Inexact Rounded
1059
+ sqtx3037 squareroot 0.21 -> 0.458 Inexact Rounded
1060
+ sqtx3038 squareroot 0.021 -> 0.145 Inexact Rounded
1061
+ sqtx3039 squareroot 0.22 -> 0.469 Inexact Rounded
1062
+ sqtx3040 squareroot 0.022 -> 0.148 Inexact Rounded
1063
+ sqtx3041 squareroot 0.23 -> 0.480 Inexact Rounded
1064
+ sqtx3042 squareroot 0.023 -> 0.152 Inexact Rounded
1065
+ sqtx3043 squareroot 0.24 -> 0.490 Inexact Rounded
1066
+ sqtx3044 squareroot 0.024 -> 0.155 Inexact Rounded
1067
+ sqtx3045 squareroot 0.25 -> 0.5
1068
+ sqtx3046 squareroot 0.025 -> 0.158 Inexact Rounded
1069
+ sqtx3047 squareroot 0.26 -> 0.510 Inexact Rounded
1070
+ sqtx3048 squareroot 0.026 -> 0.161 Inexact Rounded
1071
+ sqtx3049 squareroot 0.27 -> 0.520 Inexact Rounded
1072
+ sqtx3050 squareroot 0.027 -> 0.164 Inexact Rounded
1073
+ sqtx3051 squareroot 0.28 -> 0.529 Inexact Rounded
1074
+ sqtx3052 squareroot 0.028 -> 0.167 Inexact Rounded
1075
+ sqtx3053 squareroot 0.29 -> 0.539 Inexact Rounded
1076
+ sqtx3054 squareroot 0.029 -> 0.170 Inexact Rounded
1077
+ sqtx3055 squareroot 0.31 -> 0.557 Inexact Rounded
1078
+ sqtx3056 squareroot 0.031 -> 0.176 Inexact Rounded
1079
+ sqtx3057 squareroot 0.32 -> 0.566 Inexact Rounded
1080
+ sqtx3058 squareroot 0.032 -> 0.179 Inexact Rounded
1081
+ sqtx3059 squareroot 0.33 -> 0.574 Inexact Rounded
1082
+ sqtx3060 squareroot 0.033 -> 0.182 Inexact Rounded
1083
+ sqtx3061 squareroot 0.34 -> 0.583 Inexact Rounded
1084
+ sqtx3062 squareroot 0.034 -> 0.184 Inexact Rounded
1085
+ sqtx3063 squareroot 0.35 -> 0.592 Inexact Rounded
1086
+ sqtx3064 squareroot 0.035 -> 0.187 Inexact Rounded
1087
+ sqtx3065 squareroot 0.36 -> 0.6
1088
+ sqtx3066 squareroot 0.036 -> 0.190 Inexact Rounded
1089
+ sqtx3067 squareroot 0.37 -> 0.608 Inexact Rounded
1090
+ sqtx3068 squareroot 0.037 -> 0.192 Inexact Rounded
1091
+ sqtx3069 squareroot 0.38 -> 0.616 Inexact Rounded
1092
+ sqtx3070 squareroot 0.038 -> 0.195 Inexact Rounded
1093
+ sqtx3071 squareroot 0.39 -> 0.624 Inexact Rounded
1094
+ sqtx3072 squareroot 0.039 -> 0.197 Inexact Rounded
1095
+ sqtx3073 squareroot 0.41 -> 0.640 Inexact Rounded
1096
+ sqtx3074 squareroot 0.041 -> 0.202 Inexact Rounded
1097
+ sqtx3075 squareroot 0.42 -> 0.648 Inexact Rounded
1098
+ sqtx3076 squareroot 0.042 -> 0.205 Inexact Rounded
1099
+ sqtx3077 squareroot 0.43 -> 0.656 Inexact Rounded
1100
+ sqtx3078 squareroot 0.043 -> 0.207 Inexact Rounded
1101
+ sqtx3079 squareroot 0.44 -> 0.663 Inexact Rounded
1102
+ sqtx3080 squareroot 0.044 -> 0.210 Inexact Rounded
1103
+ sqtx3081 squareroot 0.45 -> 0.671 Inexact Rounded
1104
+ sqtx3082 squareroot 0.045 -> 0.212 Inexact Rounded
1105
+ sqtx3083 squareroot 0.46 -> 0.678 Inexact Rounded
1106
+ sqtx3084 squareroot 0.046 -> 0.214 Inexact Rounded
1107
+ sqtx3085 squareroot 0.47 -> 0.686 Inexact Rounded
1108
+ sqtx3086 squareroot 0.047 -> 0.217 Inexact Rounded
1109
+ sqtx3087 squareroot 0.48 -> 0.693 Inexact Rounded
1110
+ sqtx3088 squareroot 0.048 -> 0.219 Inexact Rounded
1111
+ sqtx3089 squareroot 0.49 -> 0.7
1112
+ sqtx3090 squareroot 0.049 -> 0.221 Inexact Rounded
1113
+ sqtx3091 squareroot 0.51 -> 0.714 Inexact Rounded
1114
+ sqtx3092 squareroot 0.051 -> 0.226 Inexact Rounded
1115
+ sqtx3093 squareroot 0.52 -> 0.721 Inexact Rounded
1116
+ sqtx3094 squareroot 0.052 -> 0.228 Inexact Rounded
1117
+ sqtx3095 squareroot 0.53 -> 0.728 Inexact Rounded
1118
+ sqtx3096 squareroot 0.053 -> 0.230 Inexact Rounded
1119
+ sqtx3097 squareroot 0.54 -> 0.735 Inexact Rounded
1120
+ sqtx3098 squareroot 0.054 -> 0.232 Inexact Rounded
1121
+ sqtx3099 squareroot 0.55 -> 0.742 Inexact Rounded
1122
+ sqtx3100 squareroot 0.055 -> 0.235 Inexact Rounded
1123
+ sqtx3101 squareroot 0.56 -> 0.748 Inexact Rounded
1124
+ sqtx3102 squareroot 0.056 -> 0.237 Inexact Rounded
1125
+ sqtx3103 squareroot 0.57 -> 0.755 Inexact Rounded
1126
+ sqtx3104 squareroot 0.057 -> 0.239 Inexact Rounded
1127
+ sqtx3105 squareroot 0.58 -> 0.762 Inexact Rounded
1128
+ sqtx3106 squareroot 0.058 -> 0.241 Inexact Rounded
1129
+ sqtx3107 squareroot 0.59 -> 0.768 Inexact Rounded
1130
+ sqtx3108 squareroot 0.059 -> 0.243 Inexact Rounded
1131
+ sqtx3109 squareroot 0.61 -> 0.781 Inexact Rounded
1132
+ sqtx3110 squareroot 0.061 -> 0.247 Inexact Rounded
1133
+ sqtx3111 squareroot 0.62 -> 0.787 Inexact Rounded
1134
+ sqtx3112 squareroot 0.062 -> 0.249 Inexact Rounded
1135
+ sqtx3113 squareroot 0.63 -> 0.794 Inexact Rounded
1136
+ sqtx3114 squareroot 0.063 -> 0.251 Inexact Rounded
1137
+ sqtx3115 squareroot 0.64 -> 0.8
1138
+ sqtx3116 squareroot 0.064 -> 0.253 Inexact Rounded
1139
+ sqtx3117 squareroot 0.65 -> 0.806 Inexact Rounded
1140
+ sqtx3118 squareroot 0.065 -> 0.255 Inexact Rounded
1141
+ sqtx3119 squareroot 0.66 -> 0.812 Inexact Rounded
1142
+ sqtx3120 squareroot 0.066 -> 0.257 Inexact Rounded
1143
+ sqtx3121 squareroot 0.67 -> 0.819 Inexact Rounded
1144
+ sqtx3122 squareroot 0.067 -> 0.259 Inexact Rounded
1145
+ sqtx3123 squareroot 0.68 -> 0.825 Inexact Rounded
1146
+ sqtx3124 squareroot 0.068 -> 0.261 Inexact Rounded
1147
+ sqtx3125 squareroot 0.69 -> 0.831 Inexact Rounded
1148
+ sqtx3126 squareroot 0.069 -> 0.263 Inexact Rounded
1149
+ sqtx3127 squareroot 0.71 -> 0.843 Inexact Rounded
1150
+ sqtx3128 squareroot 0.071 -> 0.266 Inexact Rounded
1151
+ sqtx3129 squareroot 0.72 -> 0.849 Inexact Rounded
1152
+ sqtx3130 squareroot 0.072 -> 0.268 Inexact Rounded
1153
+ sqtx3131 squareroot 0.73 -> 0.854 Inexact Rounded
1154
+ sqtx3132 squareroot 0.073 -> 0.270 Inexact Rounded
1155
+ sqtx3133 squareroot 0.74 -> 0.860 Inexact Rounded
1156
+ sqtx3134 squareroot 0.074 -> 0.272 Inexact Rounded
1157
+ sqtx3135 squareroot 0.75 -> 0.866 Inexact Rounded
1158
+ sqtx3136 squareroot 0.075 -> 0.274 Inexact Rounded
1159
+ sqtx3137 squareroot 0.76 -> 0.872 Inexact Rounded
1160
+ sqtx3138 squareroot 0.076 -> 0.276 Inexact Rounded
1161
+ sqtx3139 squareroot 0.77 -> 0.877 Inexact Rounded
1162
+ sqtx3140 squareroot 0.077 -> 0.277 Inexact Rounded
1163
+ sqtx3141 squareroot 0.78 -> 0.883 Inexact Rounded
1164
+ sqtx3142 squareroot 0.078 -> 0.279 Inexact Rounded
1165
+ sqtx3143 squareroot 0.79 -> 0.889 Inexact Rounded
1166
+ sqtx3144 squareroot 0.079 -> 0.281 Inexact Rounded
1167
+ sqtx3145 squareroot 0.81 -> 0.9
1168
+ sqtx3146 squareroot 0.081 -> 0.285 Inexact Rounded
1169
+ sqtx3147 squareroot 0.82 -> 0.906 Inexact Rounded
1170
+ sqtx3148 squareroot 0.082 -> 0.286 Inexact Rounded
1171
+ sqtx3149 squareroot 0.83 -> 0.911 Inexact Rounded
1172
+ sqtx3150 squareroot 0.083 -> 0.288 Inexact Rounded
1173
+ sqtx3151 squareroot 0.84 -> 0.917 Inexact Rounded
1174
+ sqtx3152 squareroot 0.084 -> 0.290 Inexact Rounded
1175
+ sqtx3153 squareroot 0.85 -> 0.922 Inexact Rounded
1176
+ sqtx3154 squareroot 0.085 -> 0.292 Inexact Rounded
1177
+ sqtx3155 squareroot 0.86 -> 0.927 Inexact Rounded
1178
+ sqtx3156 squareroot 0.086 -> 0.293 Inexact Rounded
1179
+ sqtx3157 squareroot 0.87 -> 0.933 Inexact Rounded
1180
+ sqtx3158 squareroot 0.087 -> 0.295 Inexact Rounded
1181
+ sqtx3159 squareroot 0.88 -> 0.938 Inexact Rounded
1182
+ sqtx3160 squareroot 0.088 -> 0.297 Inexact Rounded
1183
+ sqtx3161 squareroot 0.89 -> 0.943 Inexact Rounded
1184
+ sqtx3162 squareroot 0.089 -> 0.298 Inexact Rounded
1185
+ sqtx3163 squareroot 0.91 -> 0.954 Inexact Rounded
1186
+ sqtx3164 squareroot 0.091 -> 0.302 Inexact Rounded
1187
+ sqtx3165 squareroot 0.92 -> 0.959 Inexact Rounded
1188
+ sqtx3166 squareroot 0.092 -> 0.303 Inexact Rounded
1189
+ sqtx3167 squareroot 0.93 -> 0.964 Inexact Rounded
1190
+ sqtx3168 squareroot 0.093 -> 0.305 Inexact Rounded
1191
+ sqtx3169 squareroot 0.94 -> 0.970 Inexact Rounded
1192
+ sqtx3170 squareroot 0.094 -> 0.307 Inexact Rounded
1193
+ sqtx3171 squareroot 0.95 -> 0.975 Inexact Rounded
1194
+ sqtx3172 squareroot 0.095 -> 0.308 Inexact Rounded
1195
+ sqtx3173 squareroot 0.96 -> 0.980 Inexact Rounded
1196
+ sqtx3174 squareroot 0.096 -> 0.310 Inexact Rounded
1197
+ sqtx3175 squareroot 0.97 -> 0.985 Inexact Rounded
1198
+ sqtx3176 squareroot 0.097 -> 0.311 Inexact Rounded
1199
+ sqtx3177 squareroot 0.98 -> 0.990 Inexact Rounded
1200
+ sqtx3178 squareroot 0.098 -> 0.313 Inexact Rounded
1201
+ sqtx3179 squareroot 0.99 -> 0.995 Inexact Rounded
1202
+ sqtx3180 squareroot 0.099 -> 0.315 Inexact Rounded
1203
+ sqtx3181 squareroot 0.101 -> 0.318 Inexact Rounded
1204
+ sqtx3182 squareroot 0.0101 -> 0.100 Inexact Rounded
1205
+ sqtx3183 squareroot 0.102 -> 0.319 Inexact Rounded
1206
+ sqtx3184 squareroot 0.0102 -> 0.101 Inexact Rounded
1207
+ sqtx3185 squareroot 0.103 -> 0.321 Inexact Rounded
1208
+ sqtx3186 squareroot 0.0103 -> 0.101 Inexact Rounded
1209
+ sqtx3187 squareroot 0.104 -> 0.322 Inexact Rounded
1210
+ sqtx3188 squareroot 0.0104 -> 0.102 Inexact Rounded
1211
+ sqtx3189 squareroot 0.105 -> 0.324 Inexact Rounded
1212
+ sqtx3190 squareroot 0.0105 -> 0.102 Inexact Rounded
1213
+ sqtx3191 squareroot 0.106 -> 0.326 Inexact Rounded
1214
+ sqtx3192 squareroot 0.0106 -> 0.103 Inexact Rounded
1215
+ sqtx3193 squareroot 0.107 -> 0.327 Inexact Rounded
1216
+ sqtx3194 squareroot 0.0107 -> 0.103 Inexact Rounded
1217
+ sqtx3195 squareroot 0.108 -> 0.329 Inexact Rounded
1218
+ sqtx3196 squareroot 0.0108 -> 0.104 Inexact Rounded
1219
+ sqtx3197 squareroot 0.109 -> 0.330 Inexact Rounded
1220
+ sqtx3198 squareroot 0.0109 -> 0.104 Inexact Rounded
1221
+ sqtx3199 squareroot 0.111 -> 0.333 Inexact Rounded
1222
+ sqtx3200 squareroot 0.0111 -> 0.105 Inexact Rounded
1223
+ sqtx3201 squareroot 0.112 -> 0.335 Inexact Rounded
1224
+ sqtx3202 squareroot 0.0112 -> 0.106 Inexact Rounded
1225
+ sqtx3203 squareroot 0.113 -> 0.336 Inexact Rounded
1226
+ sqtx3204 squareroot 0.0113 -> 0.106 Inexact Rounded
1227
+ sqtx3205 squareroot 0.114 -> 0.338 Inexact Rounded
1228
+ sqtx3206 squareroot 0.0114 -> 0.107 Inexact Rounded
1229
+ sqtx3207 squareroot 0.115 -> 0.339 Inexact Rounded
1230
+ sqtx3208 squareroot 0.0115 -> 0.107 Inexact Rounded
1231
+ sqtx3209 squareroot 0.116 -> 0.341 Inexact Rounded
1232
+ sqtx3210 squareroot 0.0116 -> 0.108 Inexact Rounded
1233
+ sqtx3211 squareroot 0.117 -> 0.342 Inexact Rounded
1234
+ sqtx3212 squareroot 0.0117 -> 0.108 Inexact Rounded
1235
+ sqtx3213 squareroot 0.118 -> 0.344 Inexact Rounded
1236
+ sqtx3214 squareroot 0.0118 -> 0.109 Inexact Rounded
1237
+ sqtx3215 squareroot 0.119 -> 0.345 Inexact Rounded
1238
+ sqtx3216 squareroot 0.0119 -> 0.109 Inexact Rounded
1239
+ sqtx3217 squareroot 0.121 -> 0.348 Inexact Rounded
1240
+ sqtx3218 squareroot 0.0121 -> 0.11
1241
+ sqtx3219 squareroot 0.122 -> 0.349 Inexact Rounded
1242
+ sqtx3220 squareroot 0.0122 -> 0.110 Inexact Rounded
1243
+ sqtx3221 squareroot 0.123 -> 0.351 Inexact Rounded
1244
+ sqtx3222 squareroot 0.0123 -> 0.111 Inexact Rounded
1245
+ sqtx3223 squareroot 0.124 -> 0.352 Inexact Rounded
1246
+ sqtx3224 squareroot 0.0124 -> 0.111 Inexact Rounded
1247
+ sqtx3225 squareroot 0.125 -> 0.354 Inexact Rounded
1248
+ sqtx3226 squareroot 0.0125 -> 0.112 Inexact Rounded
1249
+ sqtx3227 squareroot 0.126 -> 0.355 Inexact Rounded
1250
+ sqtx3228 squareroot 0.0126 -> 0.112 Inexact Rounded
1251
+ sqtx3229 squareroot 0.127 -> 0.356 Inexact Rounded
1252
+ sqtx3230 squareroot 0.0127 -> 0.113 Inexact Rounded
1253
+ sqtx3231 squareroot 0.128 -> 0.358 Inexact Rounded
1254
+ sqtx3232 squareroot 0.0128 -> 0.113 Inexact Rounded
1255
+ sqtx3233 squareroot 0.129 -> 0.359 Inexact Rounded
1256
+ sqtx3234 squareroot 0.0129 -> 0.114 Inexact Rounded
1257
+ sqtx3235 squareroot 0.131 -> 0.362 Inexact Rounded
1258
+ sqtx3236 squareroot 0.0131 -> 0.114 Inexact Rounded
1259
+ sqtx3237 squareroot 0.132 -> 0.363 Inexact Rounded
1260
+ sqtx3238 squareroot 0.0132 -> 0.115 Inexact Rounded
1261
+ sqtx3239 squareroot 0.133 -> 0.365 Inexact Rounded
1262
+ sqtx3240 squareroot 0.0133 -> 0.115 Inexact Rounded
1263
+ sqtx3241 squareroot 0.134 -> 0.366 Inexact Rounded
1264
+ sqtx3242 squareroot 0.0134 -> 0.116 Inexact Rounded
1265
+ sqtx3243 squareroot 0.135 -> 0.367 Inexact Rounded
1266
+ sqtx3244 squareroot 0.0135 -> 0.116 Inexact Rounded
1267
+ sqtx3245 squareroot 0.136 -> 0.369 Inexact Rounded
1268
+ sqtx3246 squareroot 0.0136 -> 0.117 Inexact Rounded
1269
+ sqtx3247 squareroot 0.137 -> 0.370 Inexact Rounded
1270
+ sqtx3248 squareroot 0.0137 -> 0.117 Inexact Rounded
1271
+ sqtx3249 squareroot 0.138 -> 0.371 Inexact Rounded
1272
+ sqtx3250 squareroot 0.0138 -> 0.117 Inexact Rounded
1273
+ sqtx3251 squareroot 0.139 -> 0.373 Inexact Rounded
1274
+ sqtx3252 squareroot 0.0139 -> 0.118 Inexact Rounded
1275
+ sqtx3253 squareroot 0.141 -> 0.375 Inexact Rounded
1276
+ sqtx3254 squareroot 0.0141 -> 0.119 Inexact Rounded
1277
+ sqtx3255 squareroot 0.142 -> 0.377 Inexact Rounded
1278
+ sqtx3256 squareroot 0.0142 -> 0.119 Inexact Rounded
1279
+ sqtx3257 squareroot 0.143 -> 0.378 Inexact Rounded
1280
+ sqtx3258 squareroot 0.0143 -> 0.120 Inexact Rounded
1281
+ sqtx3259 squareroot 0.144 -> 0.379 Inexact Rounded
1282
+ sqtx3260 squareroot 0.0144 -> 0.12
1283
+ sqtx3261 squareroot 0.145 -> 0.381 Inexact Rounded
1284
+ sqtx3262 squareroot 0.0145 -> 0.120 Inexact Rounded
1285
+ sqtx3263 squareroot 0.146 -> 0.382 Inexact Rounded
1286
+ sqtx3264 squareroot 0.0146 -> 0.121 Inexact Rounded
1287
+ sqtx3265 squareroot 0.147 -> 0.383 Inexact Rounded
1288
+ sqtx3266 squareroot 0.0147 -> 0.121 Inexact Rounded
1289
+ sqtx3267 squareroot 0.148 -> 0.385 Inexact Rounded
1290
+ sqtx3268 squareroot 0.0148 -> 0.122 Inexact Rounded
1291
+ sqtx3269 squareroot 0.149 -> 0.386 Inexact Rounded
1292
+ sqtx3270 squareroot 0.0149 -> 0.122 Inexact Rounded
1293
+ sqtx3271 squareroot 0.151 -> 0.389 Inexact Rounded
1294
+ sqtx3272 squareroot 0.0151 -> 0.123 Inexact Rounded
1295
+ sqtx3273 squareroot 0.152 -> 0.390 Inexact Rounded
1296
+ sqtx3274 squareroot 0.0152 -> 0.123 Inexact Rounded
1297
+ sqtx3275 squareroot 0.153 -> 0.391 Inexact Rounded
1298
+ sqtx3276 squareroot 0.0153 -> 0.124 Inexact Rounded
1299
+ sqtx3277 squareroot 0.154 -> 0.392 Inexact Rounded
1300
+ sqtx3278 squareroot 0.0154 -> 0.124 Inexact Rounded
1301
+ sqtx3279 squareroot 0.155 -> 0.394 Inexact Rounded
1302
+ sqtx3280 squareroot 0.0155 -> 0.124 Inexact Rounded
1303
+ sqtx3281 squareroot 0.156 -> 0.395 Inexact Rounded
1304
+ sqtx3282 squareroot 0.0156 -> 0.125 Inexact Rounded
1305
+ sqtx3283 squareroot 0.157 -> 0.396 Inexact Rounded
1306
+ sqtx3284 squareroot 0.0157 -> 0.125 Inexact Rounded
1307
+ sqtx3285 squareroot 0.158 -> 0.397 Inexact Rounded
1308
+ sqtx3286 squareroot 0.0158 -> 0.126 Inexact Rounded
1309
+ sqtx3287 squareroot 0.159 -> 0.399 Inexact Rounded
1310
+ sqtx3288 squareroot 0.0159 -> 0.126 Inexact Rounded
1311
+ sqtx3289 squareroot 0.161 -> 0.401 Inexact Rounded
1312
+ sqtx3290 squareroot 0.0161 -> 0.127 Inexact Rounded
1313
+ sqtx3291 squareroot 0.162 -> 0.402 Inexact Rounded
1314
+ sqtx3292 squareroot 0.0162 -> 0.127 Inexact Rounded
1315
+ sqtx3293 squareroot 0.163 -> 0.404 Inexact Rounded
1316
+ sqtx3294 squareroot 0.0163 -> 0.128 Inexact Rounded
1317
+ sqtx3295 squareroot 0.164 -> 0.405 Inexact Rounded
1318
+ sqtx3296 squareroot 0.0164 -> 0.128 Inexact Rounded
1319
+ sqtx3297 squareroot 0.165 -> 0.406 Inexact Rounded
1320
+ sqtx3298 squareroot 0.0165 -> 0.128 Inexact Rounded
1321
+ sqtx3299 squareroot 0.166 -> 0.407 Inexact Rounded
1322
+ sqtx3300 squareroot 0.0166 -> 0.129 Inexact Rounded
1323
+ sqtx3301 squareroot 0.167 -> 0.409 Inexact Rounded
1324
+ sqtx3302 squareroot 0.0167 -> 0.129 Inexact Rounded
1325
+ sqtx3303 squareroot 0.168 -> 0.410 Inexact Rounded
1326
+ sqtx3304 squareroot 0.0168 -> 0.130 Inexact Rounded
1327
+ sqtx3305 squareroot 0.169 -> 0.411 Inexact Rounded
1328
+ sqtx3306 squareroot 0.0169 -> 0.13
1329
+ sqtx3307 squareroot 0.171 -> 0.414 Inexact Rounded
1330
+ sqtx3308 squareroot 0.0171 -> 0.131 Inexact Rounded
1331
+ sqtx3309 squareroot 0.172 -> 0.415 Inexact Rounded
1332
+ sqtx3310 squareroot 0.0172 -> 0.131 Inexact Rounded
1333
+ sqtx3311 squareroot 0.173 -> 0.416 Inexact Rounded
1334
+ sqtx3312 squareroot 0.0173 -> 0.132 Inexact Rounded
1335
+ sqtx3313 squareroot 0.174 -> 0.417 Inexact Rounded
1336
+ sqtx3314 squareroot 0.0174 -> 0.132 Inexact Rounded
1337
+ sqtx3315 squareroot 0.175 -> 0.418 Inexact Rounded
1338
+ sqtx3316 squareroot 0.0175 -> 0.132 Inexact Rounded
1339
+ sqtx3317 squareroot 0.176 -> 0.420 Inexact Rounded
1340
+ sqtx3318 squareroot 0.0176 -> 0.133 Inexact Rounded
1341
+ sqtx3319 squareroot 0.177 -> 0.421 Inexact Rounded
1342
+ sqtx3320 squareroot 0.0177 -> 0.133 Inexact Rounded
1343
+ sqtx3321 squareroot 0.178 -> 0.422 Inexact Rounded
1344
+ sqtx3322 squareroot 0.0178 -> 0.133 Inexact Rounded
1345
+ sqtx3323 squareroot 0.179 -> 0.423 Inexact Rounded
1346
+ sqtx3324 squareroot 0.0179 -> 0.134 Inexact Rounded
1347
+ sqtx3325 squareroot 0.181 -> 0.425 Inexact Rounded
1348
+ sqtx3326 squareroot 0.0181 -> 0.135 Inexact Rounded
1349
+ sqtx3327 squareroot 0.182 -> 0.427 Inexact Rounded
1350
+ sqtx3328 squareroot 0.0182 -> 0.135 Inexact Rounded
1351
+ sqtx3329 squareroot 0.183 -> 0.428 Inexact Rounded
1352
+ sqtx3330 squareroot 0.0183 -> 0.135 Inexact Rounded
1353
+ sqtx3331 squareroot 0.184 -> 0.429 Inexact Rounded
1354
+ sqtx3332 squareroot 0.0184 -> 0.136 Inexact Rounded
1355
+ sqtx3333 squareroot 0.185 -> 0.430 Inexact Rounded
1356
+ sqtx3334 squareroot 0.0185 -> 0.136 Inexact Rounded
1357
+ sqtx3335 squareroot 0.186 -> 0.431 Inexact Rounded
1358
+ sqtx3336 squareroot 0.0186 -> 0.136 Inexact Rounded
1359
+ sqtx3337 squareroot 0.187 -> 0.432 Inexact Rounded
1360
+ sqtx3338 squareroot 0.0187 -> 0.137 Inexact Rounded
1361
+ sqtx3339 squareroot 0.188 -> 0.434 Inexact Rounded
1362
+ sqtx3340 squareroot 0.0188 -> 0.137 Inexact Rounded
1363
+ sqtx3341 squareroot 0.189 -> 0.435 Inexact Rounded
1364
+ sqtx3342 squareroot 0.0189 -> 0.137 Inexact Rounded
1365
+ sqtx3343 squareroot 0.191 -> 0.437 Inexact Rounded
1366
+ sqtx3344 squareroot 0.0191 -> 0.138 Inexact Rounded
1367
+ sqtx3345 squareroot 0.192 -> 0.438 Inexact Rounded
1368
+ sqtx3346 squareroot 0.0192 -> 0.139 Inexact Rounded
1369
+ sqtx3347 squareroot 0.193 -> 0.439 Inexact Rounded
1370
+ sqtx3348 squareroot 0.0193 -> 0.139 Inexact Rounded
1371
+ sqtx3349 squareroot 0.194 -> 0.440 Inexact Rounded
1372
+ sqtx3350 squareroot 0.0194 -> 0.139 Inexact Rounded
1373
+ sqtx3351 squareroot 0.195 -> 0.442 Inexact Rounded
1374
+ sqtx3352 squareroot 0.0195 -> 0.140 Inexact Rounded
1375
+ sqtx3353 squareroot 0.196 -> 0.443 Inexact Rounded
1376
+ sqtx3354 squareroot 0.0196 -> 0.14
1377
+ sqtx3355 squareroot 0.197 -> 0.444 Inexact Rounded
1378
+ sqtx3356 squareroot 0.0197 -> 0.140 Inexact Rounded
1379
+ sqtx3357 squareroot 0.198 -> 0.445 Inexact Rounded
1380
+ sqtx3358 squareroot 0.0198 -> 0.141 Inexact Rounded
1381
+ sqtx3359 squareroot 0.199 -> 0.446 Inexact Rounded
1382
+ sqtx3360 squareroot 0.0199 -> 0.141 Inexact Rounded
1383
+ sqtx3361 squareroot 0.201 -> 0.448 Inexact Rounded
1384
+ sqtx3362 squareroot 0.0201 -> 0.142 Inexact Rounded
1385
+ sqtx3363 squareroot 0.202 -> 0.449 Inexact Rounded
1386
+ sqtx3364 squareroot 0.0202 -> 0.142 Inexact Rounded
1387
+ sqtx3365 squareroot 0.203 -> 0.451 Inexact Rounded
1388
+ sqtx3366 squareroot 0.0203 -> 0.142 Inexact Rounded
1389
+ sqtx3367 squareroot 0.204 -> 0.452 Inexact Rounded
1390
+ sqtx3368 squareroot 0.0204 -> 0.143 Inexact Rounded
1391
+ sqtx3369 squareroot 0.205 -> 0.453 Inexact Rounded
1392
+ sqtx3370 squareroot 0.0205 -> 0.143 Inexact Rounded
1393
+ sqtx3371 squareroot 0.206 -> 0.454 Inexact Rounded
1394
+ sqtx3372 squareroot 0.0206 -> 0.144 Inexact Rounded
1395
+ sqtx3373 squareroot 0.207 -> 0.455 Inexact Rounded
1396
+ sqtx3374 squareroot 0.0207 -> 0.144 Inexact Rounded
1397
+ sqtx3375 squareroot 0.208 -> 0.456 Inexact Rounded
1398
+ sqtx3376 squareroot 0.0208 -> 0.144 Inexact Rounded
1399
+ sqtx3377 squareroot 0.209 -> 0.457 Inexact Rounded
1400
+ sqtx3378 squareroot 0.0209 -> 0.145 Inexact Rounded
1401
+ sqtx3379 squareroot 0.211 -> 0.459 Inexact Rounded
1402
+ sqtx3380 squareroot 0.0211 -> 0.145 Inexact Rounded
1403
+ sqtx3381 squareroot 0.212 -> 0.460 Inexact Rounded
1404
+ sqtx3382 squareroot 0.0212 -> 0.146 Inexact Rounded
1405
+ sqtx3383 squareroot 0.213 -> 0.462 Inexact Rounded
1406
+ sqtx3384 squareroot 0.0213 -> 0.146 Inexact Rounded
1407
+ sqtx3385 squareroot 0.214 -> 0.463 Inexact Rounded
1408
+ sqtx3386 squareroot 0.0214 -> 0.146 Inexact Rounded
1409
+ sqtx3387 squareroot 0.215 -> 0.464 Inexact Rounded
1410
+ sqtx3388 squareroot 0.0215 -> 0.147 Inexact Rounded
1411
+ sqtx3389 squareroot 0.216 -> 0.465 Inexact Rounded
1412
+ sqtx3390 squareroot 0.0216 -> 0.147 Inexact Rounded
1413
+ sqtx3391 squareroot 0.217 -> 0.466 Inexact Rounded
1414
+ sqtx3392 squareroot 0.0217 -> 0.147 Inexact Rounded
1415
+ sqtx3393 squareroot 0.218 -> 0.467 Inexact Rounded
1416
+ sqtx3394 squareroot 0.0218 -> 0.148 Inexact Rounded
1417
+ sqtx3395 squareroot 0.219 -> 0.468 Inexact Rounded
1418
+ sqtx3396 squareroot 0.0219 -> 0.148 Inexact Rounded
1419
+ sqtx3397 squareroot 0.221 -> 0.470 Inexact Rounded
1420
+ sqtx3398 squareroot 0.0221 -> 0.149 Inexact Rounded
1421
+ sqtx3399 squareroot 0.222 -> 0.471 Inexact Rounded
1422
+ sqtx3400 squareroot 0.0222 -> 0.149 Inexact Rounded
1423
+ sqtx3401 squareroot 0.223 -> 0.472 Inexact Rounded
1424
+ sqtx3402 squareroot 0.0223 -> 0.149 Inexact Rounded
1425
+ sqtx3403 squareroot 0.224 -> 0.473 Inexact Rounded
1426
+ sqtx3404 squareroot 0.0224 -> 0.150 Inexact Rounded
1427
+ sqtx3405 squareroot 0.225 -> 0.474 Inexact Rounded
1428
+ sqtx3406 squareroot 0.0225 -> 0.15
1429
+ sqtx3407 squareroot 0.226 -> 0.475 Inexact Rounded
1430
+ sqtx3408 squareroot 0.0226 -> 0.150 Inexact Rounded
1431
+ sqtx3409 squareroot 0.227 -> 0.476 Inexact Rounded
1432
+ sqtx3410 squareroot 0.0227 -> 0.151 Inexact Rounded
1433
+ sqtx3411 squareroot 0.228 -> 0.477 Inexact Rounded
1434
+ sqtx3412 squareroot 0.0228 -> 0.151 Inexact Rounded
1435
+ sqtx3413 squareroot 0.229 -> 0.479 Inexact Rounded
1436
+ sqtx3414 squareroot 0.0229 -> 0.151 Inexact Rounded
1437
+ sqtx3415 squareroot 0.231 -> 0.481 Inexact Rounded
1438
+ sqtx3416 squareroot 0.0231 -> 0.152 Inexact Rounded
1439
+ sqtx3417 squareroot 0.232 -> 0.482 Inexact Rounded
1440
+ sqtx3418 squareroot 0.0232 -> 0.152 Inexact Rounded
1441
+ sqtx3419 squareroot 0.233 -> 0.483 Inexact Rounded
1442
+ sqtx3420 squareroot 0.0233 -> 0.153 Inexact Rounded
1443
+ sqtx3421 squareroot 0.234 -> 0.484 Inexact Rounded
1444
+ sqtx3422 squareroot 0.0234 -> 0.153 Inexact Rounded
1445
+ sqtx3423 squareroot 0.235 -> 0.485 Inexact Rounded
1446
+ sqtx3424 squareroot 0.0235 -> 0.153 Inexact Rounded
1447
+ sqtx3425 squareroot 0.236 -> 0.486 Inexact Rounded
1448
+ sqtx3426 squareroot 0.0236 -> 0.154 Inexact Rounded
1449
+ sqtx3427 squareroot 0.237 -> 0.487 Inexact Rounded
1450
+ sqtx3428 squareroot 0.0237 -> 0.154 Inexact Rounded
1451
+ sqtx3429 squareroot 0.238 -> 0.488 Inexact Rounded
1452
+ sqtx3430 squareroot 0.0238 -> 0.154 Inexact Rounded
1453
+ sqtx3431 squareroot 0.239 -> 0.489 Inexact Rounded
1454
+ sqtx3432 squareroot 0.0239 -> 0.155 Inexact Rounded
1455
+ sqtx3433 squareroot 0.241 -> 0.491 Inexact Rounded
1456
+ sqtx3434 squareroot 0.0241 -> 0.155 Inexact Rounded
1457
+ sqtx3435 squareroot 0.242 -> 0.492 Inexact Rounded
1458
+ sqtx3436 squareroot 0.0242 -> 0.156 Inexact Rounded
1459
+ sqtx3437 squareroot 0.243 -> 0.493 Inexact Rounded
1460
+ sqtx3438 squareroot 0.0243 -> 0.156 Inexact Rounded
1461
+ sqtx3439 squareroot 0.244 -> 0.494 Inexact Rounded
1462
+ sqtx3440 squareroot 0.0244 -> 0.156 Inexact Rounded
1463
+ sqtx3441 squareroot 0.245 -> 0.495 Inexact Rounded
1464
+ sqtx3442 squareroot 0.0245 -> 0.157 Inexact Rounded
1465
+ sqtx3443 squareroot 0.246 -> 0.496 Inexact Rounded
1466
+ sqtx3444 squareroot 0.0246 -> 0.157 Inexact Rounded
1467
+ sqtx3445 squareroot 0.247 -> 0.497 Inexact Rounded
1468
+ sqtx3446 squareroot 0.0247 -> 0.157 Inexact Rounded
1469
+ sqtx3447 squareroot 0.248 -> 0.498 Inexact Rounded
1470
+ sqtx3448 squareroot 0.0248 -> 0.157 Inexact Rounded
1471
+ sqtx3449 squareroot 0.249 -> 0.499 Inexact Rounded
1472
+ sqtx3450 squareroot 0.0249 -> 0.158 Inexact Rounded
1473
+ sqtx3451 squareroot 0.251 -> 0.501 Inexact Rounded
1474
+ sqtx3452 squareroot 0.0251 -> 0.158 Inexact Rounded
1475
+ sqtx3453 squareroot 0.252 -> 0.502 Inexact Rounded
1476
+ sqtx3454 squareroot 0.0252 -> 0.159 Inexact Rounded
1477
+ sqtx3455 squareroot 0.253 -> 0.503 Inexact Rounded
1478
+ sqtx3456 squareroot 0.0253 -> 0.159 Inexact Rounded
1479
+ sqtx3457 squareroot 0.254 -> 0.504 Inexact Rounded
1480
+ sqtx3458 squareroot 0.0254 -> 0.159 Inexact Rounded
1481
+ sqtx3459 squareroot 0.255 -> 0.505 Inexact Rounded
1482
+ sqtx3460 squareroot 0.0255 -> 0.160 Inexact Rounded
1483
+ sqtx3461 squareroot 0.256 -> 0.506 Inexact Rounded
1484
+ sqtx3462 squareroot 0.0256 -> 0.16
1485
+ sqtx3463 squareroot 0.257 -> 0.507 Inexact Rounded
1486
+ sqtx3464 squareroot 0.0257 -> 0.160 Inexact Rounded
1487
+ sqtx3465 squareroot 0.258 -> 0.508 Inexact Rounded
1488
+ sqtx3466 squareroot 0.0258 -> 0.161 Inexact Rounded
1489
+ sqtx3467 squareroot 0.259 -> 0.509 Inexact Rounded
1490
+ sqtx3468 squareroot 0.0259 -> 0.161 Inexact Rounded
1491
+ sqtx3469 squareroot 0.261 -> 0.511 Inexact Rounded
1492
+ sqtx3470 squareroot 0.0261 -> 0.162 Inexact Rounded
1493
+ sqtx3471 squareroot 0.262 -> 0.512 Inexact Rounded
1494
+ sqtx3472 squareroot 0.0262 -> 0.162 Inexact Rounded
1495
+ sqtx3473 squareroot 0.263 -> 0.513 Inexact Rounded
1496
+ sqtx3474 squareroot 0.0263 -> 0.162 Inexact Rounded
1497
+ sqtx3475 squareroot 0.264 -> 0.514 Inexact Rounded
1498
+ sqtx3476 squareroot 0.0264 -> 0.162 Inexact Rounded
1499
+ sqtx3477 squareroot 0.265 -> 0.515 Inexact Rounded
1500
+ sqtx3478 squareroot 0.0265 -> 0.163 Inexact Rounded
1501
+ sqtx3479 squareroot 0.266 -> 0.516 Inexact Rounded
1502
+ sqtx3480 squareroot 0.0266 -> 0.163 Inexact Rounded
1503
+ sqtx3481 squareroot 0.267 -> 0.517 Inexact Rounded
1504
+ sqtx3482 squareroot 0.0267 -> 0.163 Inexact Rounded
1505
+ sqtx3483 squareroot 0.268 -> 0.518 Inexact Rounded
1506
+ sqtx3484 squareroot 0.0268 -> 0.164 Inexact Rounded
1507
+ sqtx3485 squareroot 0.269 -> 0.519 Inexact Rounded
1508
+ sqtx3486 squareroot 0.0269 -> 0.164 Inexact Rounded
1509
+ sqtx3487 squareroot 0.271 -> 0.521 Inexact Rounded
1510
+ sqtx3488 squareroot 0.0271 -> 0.165 Inexact Rounded
1511
+ sqtx3489 squareroot 0.272 -> 0.522 Inexact Rounded
1512
+ sqtx3490 squareroot 0.0272 -> 0.165 Inexact Rounded
1513
+ sqtx3491 squareroot 0.273 -> 0.522 Inexact Rounded
1514
+ sqtx3492 squareroot 0.0273 -> 0.165 Inexact Rounded
1515
+ sqtx3493 squareroot 0.274 -> 0.523 Inexact Rounded
1516
+ sqtx3494 squareroot 0.0274 -> 0.166 Inexact Rounded
1517
+ sqtx3495 squareroot 0.275 -> 0.524 Inexact Rounded
1518
+ sqtx3496 squareroot 0.0275 -> 0.166 Inexact Rounded
1519
+ sqtx3497 squareroot 0.276 -> 0.525 Inexact Rounded
1520
+ sqtx3498 squareroot 0.0276 -> 0.166 Inexact Rounded
1521
+ sqtx3499 squareroot 0.277 -> 0.526 Inexact Rounded
1522
+ sqtx3500 squareroot 0.0277 -> 0.166 Inexact Rounded
1523
+ sqtx3501 squareroot 0.278 -> 0.527 Inexact Rounded
1524
+ sqtx3502 squareroot 0.0278 -> 0.167 Inexact Rounded
1525
+ sqtx3503 squareroot 0.279 -> 0.528 Inexact Rounded
1526
+ sqtx3504 squareroot 0.0279 -> 0.167 Inexact Rounded
1527
+ sqtx3505 squareroot 0.281 -> 0.530 Inexact Rounded
1528
+ sqtx3506 squareroot 0.0281 -> 0.168 Inexact Rounded
1529
+ sqtx3507 squareroot 0.282 -> 0.531 Inexact Rounded
1530
+ sqtx3508 squareroot 0.0282 -> 0.168 Inexact Rounded
1531
+ sqtx3509 squareroot 0.283 -> 0.532 Inexact Rounded
1532
+ sqtx3510 squareroot 0.0283 -> 0.168 Inexact Rounded
1533
+ sqtx3511 squareroot 0.284 -> 0.533 Inexact Rounded
1534
+ sqtx3512 squareroot 0.0284 -> 0.169 Inexact Rounded
1535
+ sqtx3513 squareroot 0.285 -> 0.534 Inexact Rounded
1536
+ sqtx3514 squareroot 0.0285 -> 0.169 Inexact Rounded
1537
+ sqtx3515 squareroot 0.286 -> 0.535 Inexact Rounded
1538
+ sqtx3516 squareroot 0.0286 -> 0.169 Inexact Rounded
1539
+ sqtx3517 squareroot 0.287 -> 0.536 Inexact Rounded
1540
+ sqtx3518 squareroot 0.0287 -> 0.169 Inexact Rounded
1541
+ sqtx3519 squareroot 0.288 -> 0.537 Inexact Rounded
1542
+ sqtx3520 squareroot 0.0288 -> 0.170 Inexact Rounded
1543
+ sqtx3521 squareroot 0.289 -> 0.538 Inexact Rounded
1544
+ sqtx3522 squareroot 0.0289 -> 0.17
1545
+ sqtx3523 squareroot 0.291 -> 0.539 Inexact Rounded
1546
+ sqtx3524 squareroot 0.0291 -> 0.171 Inexact Rounded
1547
+ sqtx3525 squareroot 0.292 -> 0.540 Inexact Rounded
1548
+ sqtx3526 squareroot 0.0292 -> 0.171 Inexact Rounded
1549
+ sqtx3527 squareroot 0.293 -> 0.541 Inexact Rounded
1550
+ sqtx3528 squareroot 0.0293 -> 0.171 Inexact Rounded
1551
+ sqtx3529 squareroot 0.294 -> 0.542 Inexact Rounded
1552
+ sqtx3530 squareroot 0.0294 -> 0.171 Inexact Rounded
1553
+ sqtx3531 squareroot 0.295 -> 0.543 Inexact Rounded
1554
+ sqtx3532 squareroot 0.0295 -> 0.172 Inexact Rounded
1555
+ sqtx3533 squareroot 0.296 -> 0.544 Inexact Rounded
1556
+ sqtx3534 squareroot 0.0296 -> 0.172 Inexact Rounded
1557
+ sqtx3535 squareroot 0.297 -> 0.545 Inexact Rounded
1558
+ sqtx3536 squareroot 0.0297 -> 0.172 Inexact Rounded
1559
+ sqtx3537 squareroot 0.298 -> 0.546 Inexact Rounded
1560
+ sqtx3538 squareroot 0.0298 -> 0.173 Inexact Rounded
1561
+ sqtx3539 squareroot 0.299 -> 0.547 Inexact Rounded
1562
+ sqtx3540 squareroot 0.0299 -> 0.173 Inexact Rounded
1563
+ sqtx3541 squareroot 0.301 -> 0.549 Inexact Rounded
1564
+ sqtx3542 squareroot 0.0301 -> 0.173 Inexact Rounded
1565
+ sqtx3543 squareroot 0.302 -> 0.550 Inexact Rounded
1566
+ sqtx3544 squareroot 0.0302 -> 0.174 Inexact Rounded
1567
+ sqtx3545 squareroot 0.303 -> 0.550 Inexact Rounded
1568
+ sqtx3546 squareroot 0.0303 -> 0.174 Inexact Rounded
1569
+ sqtx3547 squareroot 0.304 -> 0.551 Inexact Rounded
1570
+ sqtx3548 squareroot 0.0304 -> 0.174 Inexact Rounded
1571
+ sqtx3549 squareroot 0.305 -> 0.552 Inexact Rounded
1572
+ sqtx3550 squareroot 0.0305 -> 0.175 Inexact Rounded
1573
+ sqtx3551 squareroot 0.306 -> 0.553 Inexact Rounded
1574
+ sqtx3552 squareroot 0.0306 -> 0.175 Inexact Rounded
1575
+ sqtx3553 squareroot 0.307 -> 0.554 Inexact Rounded
1576
+ sqtx3554 squareroot 0.0307 -> 0.175 Inexact Rounded
1577
+ sqtx3555 squareroot 0.308 -> 0.555 Inexact Rounded
1578
+ sqtx3556 squareroot 0.0308 -> 0.175 Inexact Rounded
1579
+ sqtx3557 squareroot 0.309 -> 0.556 Inexact Rounded
1580
+ sqtx3558 squareroot 0.0309 -> 0.176 Inexact Rounded
1581
+ sqtx3559 squareroot 0.311 -> 0.558 Inexact Rounded
1582
+ sqtx3560 squareroot 0.0311 -> 0.176 Inexact Rounded
1583
+ sqtx3561 squareroot 0.312 -> 0.559 Inexact Rounded
1584
+ sqtx3562 squareroot 0.0312 -> 0.177 Inexact Rounded
1585
+ sqtx3563 squareroot 0.313 -> 0.559 Inexact Rounded
1586
+ sqtx3564 squareroot 0.0313 -> 0.177 Inexact Rounded
1587
+ sqtx3565 squareroot 0.314 -> 0.560 Inexact Rounded
1588
+ sqtx3566 squareroot 0.0314 -> 0.177 Inexact Rounded
1589
+ sqtx3567 squareroot 0.315 -> 0.561 Inexact Rounded
1590
+ sqtx3568 squareroot 0.0315 -> 0.177 Inexact Rounded
1591
+ sqtx3569 squareroot 0.316 -> 0.562 Inexact Rounded
1592
+ sqtx3570 squareroot 0.0316 -> 0.178 Inexact Rounded
1593
+ sqtx3571 squareroot 0.317 -> 0.563 Inexact Rounded
1594
+ sqtx3572 squareroot 0.0317 -> 0.178 Inexact Rounded
1595
+ sqtx3573 squareroot 0.318 -> 0.564 Inexact Rounded
1596
+ sqtx3574 squareroot 0.0318 -> 0.178 Inexact Rounded
1597
+ sqtx3575 squareroot 0.319 -> 0.565 Inexact Rounded
1598
+ sqtx3576 squareroot 0.0319 -> 0.179 Inexact Rounded
1599
+ sqtx3577 squareroot 0.321 -> 0.567 Inexact Rounded
1600
+ sqtx3578 squareroot 0.0321 -> 0.179 Inexact Rounded
1601
+ sqtx3579 squareroot 0.322 -> 0.567 Inexact Rounded
1602
+ sqtx3580 squareroot 0.0322 -> 0.179 Inexact Rounded
1603
+ sqtx3581 squareroot 0.323 -> 0.568 Inexact Rounded
1604
+ sqtx3582 squareroot 0.0323 -> 0.180 Inexact Rounded
1605
+ sqtx3583 squareroot 0.324 -> 0.569 Inexact Rounded
1606
+ sqtx3584 squareroot 0.0324 -> 0.18
1607
+ sqtx3585 squareroot 0.325 -> 0.570 Inexact Rounded
1608
+ sqtx3586 squareroot 0.0325 -> 0.180 Inexact Rounded
1609
+ sqtx3587 squareroot 0.326 -> 0.571 Inexact Rounded
1610
+ sqtx3588 squareroot 0.0326 -> 0.181 Inexact Rounded
1611
+ sqtx3589 squareroot 0.327 -> 0.572 Inexact Rounded
1612
+ sqtx3590 squareroot 0.0327 -> 0.181 Inexact Rounded
1613
+ sqtx3591 squareroot 0.328 -> 0.573 Inexact Rounded
1614
+ sqtx3592 squareroot 0.0328 -> 0.181 Inexact Rounded
1615
+ sqtx3593 squareroot 0.329 -> 0.574 Inexact Rounded
1616
+ sqtx3594 squareroot 0.0329 -> 0.181 Inexact Rounded
1617
+ sqtx3595 squareroot 0.331 -> 0.575 Inexact Rounded
1618
+ sqtx3596 squareroot 0.0331 -> 0.182 Inexact Rounded
1619
+ sqtx3597 squareroot 0.332 -> 0.576 Inexact Rounded
1620
+ sqtx3598 squareroot 0.0332 -> 0.182 Inexact Rounded
1621
+ sqtx3599 squareroot 0.333 -> 0.577 Inexact Rounded
1622
+ sqtx3600 squareroot 0.0333 -> 0.182 Inexact Rounded
1623
+ sqtx3601 squareroot 0.334 -> 0.578 Inexact Rounded
1624
+ sqtx3602 squareroot 0.0334 -> 0.183 Inexact Rounded
1625
+ sqtx3603 squareroot 0.335 -> 0.579 Inexact Rounded
1626
+ sqtx3604 squareroot 0.0335 -> 0.183 Inexact Rounded
1627
+ sqtx3605 squareroot 0.336 -> 0.580 Inexact Rounded
1628
+ sqtx3606 squareroot 0.0336 -> 0.183 Inexact Rounded
1629
+ sqtx3607 squareroot 0.337 -> 0.581 Inexact Rounded
1630
+ sqtx3608 squareroot 0.0337 -> 0.184 Inexact Rounded
1631
+ sqtx3609 squareroot 0.338 -> 0.581 Inexact Rounded
1632
+ sqtx3610 squareroot 0.0338 -> 0.184 Inexact Rounded
1633
+ sqtx3611 squareroot 0.339 -> 0.582 Inexact Rounded
1634
+ sqtx3612 squareroot 0.0339 -> 0.184 Inexact Rounded
1635
+ sqtx3613 squareroot 0.341 -> 0.584 Inexact Rounded
1636
+ sqtx3614 squareroot 0.0341 -> 0.185 Inexact Rounded
1637
+ sqtx3615 squareroot 0.342 -> 0.585 Inexact Rounded
1638
+ sqtx3616 squareroot 0.0342 -> 0.185 Inexact Rounded
1639
+ sqtx3617 squareroot 0.343 -> 0.586 Inexact Rounded
1640
+ sqtx3618 squareroot 0.0343 -> 0.185 Inexact Rounded
1641
+ sqtx3619 squareroot 0.344 -> 0.587 Inexact Rounded
1642
+ sqtx3620 squareroot 0.0344 -> 0.185 Inexact Rounded
1643
+ sqtx3621 squareroot 0.345 -> 0.587 Inexact Rounded
1644
+ sqtx3622 squareroot 0.0345 -> 0.186 Inexact Rounded
1645
+ sqtx3623 squareroot 0.346 -> 0.588 Inexact Rounded
1646
+ sqtx3624 squareroot 0.0346 -> 0.186 Inexact Rounded
1647
+ sqtx3625 squareroot 0.347 -> 0.589 Inexact Rounded
1648
+ sqtx3626 squareroot 0.0347 -> 0.186 Inexact Rounded
1649
+ sqtx3627 squareroot 0.348 -> 0.590 Inexact Rounded
1650
+ sqtx3628 squareroot 0.0348 -> 0.187 Inexact Rounded
1651
+ sqtx3629 squareroot 0.349 -> 0.591 Inexact Rounded
1652
+ sqtx3630 squareroot 0.0349 -> 0.187 Inexact Rounded
1653
+ sqtx3631 squareroot 0.351 -> 0.592 Inexact Rounded
1654
+ sqtx3632 squareroot 0.0351 -> 0.187 Inexact Rounded
1655
+ sqtx3633 squareroot 0.352 -> 0.593 Inexact Rounded
1656
+ sqtx3634 squareroot 0.0352 -> 0.188 Inexact Rounded
1657
+ sqtx3635 squareroot 0.353 -> 0.594 Inexact Rounded
1658
+ sqtx3636 squareroot 0.0353 -> 0.188 Inexact Rounded
1659
+ sqtx3637 squareroot 0.354 -> 0.595 Inexact Rounded
1660
+ sqtx3638 squareroot 0.0354 -> 0.188 Inexact Rounded
1661
+ sqtx3639 squareroot 0.355 -> 0.596 Inexact Rounded
1662
+ sqtx3640 squareroot 0.0355 -> 0.188 Inexact Rounded
1663
+ sqtx3641 squareroot 0.356 -> 0.597 Inexact Rounded
1664
+ sqtx3642 squareroot 0.0356 -> 0.189 Inexact Rounded
1665
+ sqtx3643 squareroot 0.357 -> 0.597 Inexact Rounded
1666
+ sqtx3644 squareroot 0.0357 -> 0.189 Inexact Rounded
1667
+ sqtx3645 squareroot 0.358 -> 0.598 Inexact Rounded
1668
+ sqtx3646 squareroot 0.0358 -> 0.189 Inexact Rounded
1669
+ sqtx3647 squareroot 0.359 -> 0.599 Inexact Rounded
1670
+ sqtx3648 squareroot 0.0359 -> 0.189 Inexact Rounded
1671
+ sqtx3649 squareroot 0.361 -> 0.601 Inexact Rounded
1672
+ sqtx3650 squareroot 0.0361 -> 0.19
1673
+ sqtx3651 squareroot 0.362 -> 0.602 Inexact Rounded
1674
+ sqtx3652 squareroot 0.0362 -> 0.190 Inexact Rounded
1675
+ sqtx3653 squareroot 0.363 -> 0.602 Inexact Rounded
1676
+ sqtx3654 squareroot 0.0363 -> 0.191 Inexact Rounded
1677
+ sqtx3655 squareroot 0.364 -> 0.603 Inexact Rounded
1678
+ sqtx3656 squareroot 0.0364 -> 0.191 Inexact Rounded
1679
+ sqtx3657 squareroot 0.365 -> 0.604 Inexact Rounded
1680
+ sqtx3658 squareroot 0.0365 -> 0.191 Inexact Rounded
1681
+ sqtx3659 squareroot 0.366 -> 0.605 Inexact Rounded
1682
+ sqtx3660 squareroot 0.0366 -> 0.191 Inexact Rounded
1683
+ sqtx3661 squareroot 0.367 -> 0.606 Inexact Rounded
1684
+ sqtx3662 squareroot 0.0367 -> 0.192 Inexact Rounded
1685
+ sqtx3663 squareroot 0.368 -> 0.607 Inexact Rounded
1686
+ sqtx3664 squareroot 0.0368 -> 0.192 Inexact Rounded
1687
+ sqtx3665 squareroot 0.369 -> 0.607 Inexact Rounded
1688
+ sqtx3666 squareroot 0.0369 -> 0.192 Inexact Rounded
1689
+ sqtx3667 squareroot 0.371 -> 0.609 Inexact Rounded
1690
+ sqtx3668 squareroot 0.0371 -> 0.193 Inexact Rounded
1691
+ sqtx3669 squareroot 0.372 -> 0.610 Inexact Rounded
1692
+ sqtx3670 squareroot 0.0372 -> 0.193 Inexact Rounded
1693
+ sqtx3671 squareroot 0.373 -> 0.611 Inexact Rounded
1694
+ sqtx3672 squareroot 0.0373 -> 0.193 Inexact Rounded
1695
+ sqtx3673 squareroot 0.374 -> 0.612 Inexact Rounded
1696
+ sqtx3674 squareroot 0.0374 -> 0.193 Inexact Rounded
1697
+ sqtx3675 squareroot 0.375 -> 0.612 Inexact Rounded
1698
+ sqtx3676 squareroot 0.0375 -> 0.194 Inexact Rounded
1699
+ sqtx3677 squareroot 0.376 -> 0.613 Inexact Rounded
1700
+ sqtx3678 squareroot 0.0376 -> 0.194 Inexact Rounded
1701
+ sqtx3679 squareroot 0.377 -> 0.614 Inexact Rounded
1702
+ sqtx3680 squareroot 0.0377 -> 0.194 Inexact Rounded
1703
+ sqtx3681 squareroot 0.378 -> 0.615 Inexact Rounded
1704
+ sqtx3682 squareroot 0.0378 -> 0.194 Inexact Rounded
1705
+ sqtx3683 squareroot 0.379 -> 0.616 Inexact Rounded
1706
+ sqtx3684 squareroot 0.0379 -> 0.195 Inexact Rounded
1707
+ sqtx3685 squareroot 0.381 -> 0.617 Inexact Rounded
1708
+ sqtx3686 squareroot 0.0381 -> 0.195 Inexact Rounded
1709
+ sqtx3687 squareroot 0.382 -> 0.618 Inexact Rounded
1710
+ sqtx3688 squareroot 0.0382 -> 0.195 Inexact Rounded
1711
+ sqtx3689 squareroot 0.383 -> 0.619 Inexact Rounded
1712
+ sqtx3690 squareroot 0.0383 -> 0.196 Inexact Rounded
1713
+ sqtx3691 squareroot 0.384 -> 0.620 Inexact Rounded
1714
+ sqtx3692 squareroot 0.0384 -> 0.196 Inexact Rounded
1715
+ sqtx3693 squareroot 0.385 -> 0.620 Inexact Rounded
1716
+ sqtx3694 squareroot 0.0385 -> 0.196 Inexact Rounded
1717
+ sqtx3695 squareroot 0.386 -> 0.621 Inexact Rounded
1718
+ sqtx3696 squareroot 0.0386 -> 0.196 Inexact Rounded
1719
+ sqtx3697 squareroot 0.387 -> 0.622 Inexact Rounded
1720
+ sqtx3698 squareroot 0.0387 -> 0.197 Inexact Rounded
1721
+ sqtx3699 squareroot 0.388 -> 0.623 Inexact Rounded
1722
+ sqtx3700 squareroot 0.0388 -> 0.197 Inexact Rounded
1723
+ sqtx3701 squareroot 0.389 -> 0.624 Inexact Rounded
1724
+ sqtx3702 squareroot 0.0389 -> 0.197 Inexact Rounded
1725
+ sqtx3703 squareroot 0.391 -> 0.625 Inexact Rounded
1726
+ sqtx3704 squareroot 0.0391 -> 0.198 Inexact Rounded
1727
+ sqtx3705 squareroot 0.392 -> 0.626 Inexact Rounded
1728
+ sqtx3706 squareroot 0.0392 -> 0.198 Inexact Rounded
1729
+ sqtx3707 squareroot 0.393 -> 0.627 Inexact Rounded
1730
+ sqtx3708 squareroot 0.0393 -> 0.198 Inexact Rounded
1731
+ sqtx3709 squareroot 0.394 -> 0.628 Inexact Rounded
1732
+ sqtx3710 squareroot 0.0394 -> 0.198 Inexact Rounded
1733
+ sqtx3711 squareroot 0.395 -> 0.628 Inexact Rounded
1734
+ sqtx3712 squareroot 0.0395 -> 0.199 Inexact Rounded
1735
+ sqtx3713 squareroot 0.396 -> 0.629 Inexact Rounded
1736
+ sqtx3714 squareroot 0.0396 -> 0.199 Inexact Rounded
1737
+ sqtx3715 squareroot 0.397 -> 0.630 Inexact Rounded
1738
+ sqtx3716 squareroot 0.0397 -> 0.199 Inexact Rounded
1739
+ sqtx3717 squareroot 0.398 -> 0.631 Inexact Rounded
1740
+ sqtx3718 squareroot 0.0398 -> 0.199 Inexact Rounded
1741
+ sqtx3719 squareroot 0.399 -> 0.632 Inexact Rounded
1742
+ sqtx3720 squareroot 0.0399 -> 0.200 Inexact Rounded
1743
+ sqtx3721 squareroot 0.401 -> 0.633 Inexact Rounded
1744
+ sqtx3722 squareroot 0.0401 -> 0.200 Inexact Rounded
1745
+ sqtx3723 squareroot 0.402 -> 0.634 Inexact Rounded
1746
+ sqtx3724 squareroot 0.0402 -> 0.200 Inexact Rounded
1747
+ sqtx3725 squareroot 0.403 -> 0.635 Inexact Rounded
1748
+ sqtx3726 squareroot 0.0403 -> 0.201 Inexact Rounded
1749
+ sqtx3727 squareroot 0.404 -> 0.636 Inexact Rounded
1750
+ sqtx3728 squareroot 0.0404 -> 0.201 Inexact Rounded
1751
+ sqtx3729 squareroot 0.405 -> 0.636 Inexact Rounded
1752
+ sqtx3730 squareroot 0.0405 -> 0.201 Inexact Rounded
1753
+ sqtx3731 squareroot 0.406 -> 0.637 Inexact Rounded
1754
+ sqtx3732 squareroot 0.0406 -> 0.201 Inexact Rounded
1755
+ sqtx3733 squareroot 0.407 -> 0.638 Inexact Rounded
1756
+ sqtx3734 squareroot 0.0407 -> 0.202 Inexact Rounded
1757
+ sqtx3735 squareroot 0.408 -> 0.639 Inexact Rounded
1758
+ sqtx3736 squareroot 0.0408 -> 0.202 Inexact Rounded
1759
+ sqtx3737 squareroot 0.409 -> 0.640 Inexact Rounded
1760
+ sqtx3738 squareroot 0.0409 -> 0.202 Inexact Rounded
1761
+ sqtx3739 squareroot 0.411 -> 0.641 Inexact Rounded
1762
+ sqtx3740 squareroot 0.0411 -> 0.203 Inexact Rounded
1763
+ sqtx3741 squareroot 0.412 -> 0.642 Inexact Rounded
1764
+ sqtx3742 squareroot 0.0412 -> 0.203 Inexact Rounded
1765
+ sqtx3743 squareroot 0.413 -> 0.643 Inexact Rounded
1766
+ sqtx3744 squareroot 0.0413 -> 0.203 Inexact Rounded
1767
+ sqtx3745 squareroot 0.414 -> 0.643 Inexact Rounded
1768
+ sqtx3746 squareroot 0.0414 -> 0.203 Inexact Rounded
1769
+ sqtx3747 squareroot 0.415 -> 0.644 Inexact Rounded
1770
+ sqtx3748 squareroot 0.0415 -> 0.204 Inexact Rounded
1771
+ sqtx3749 squareroot 0.416 -> 0.645 Inexact Rounded
1772
+ sqtx3750 squareroot 0.0416 -> 0.204 Inexact Rounded
1773
+ sqtx3751 squareroot 0.417 -> 0.646 Inexact Rounded
1774
+ sqtx3752 squareroot 0.0417 -> 0.204 Inexact Rounded
1775
+ sqtx3753 squareroot 0.418 -> 0.647 Inexact Rounded
1776
+ sqtx3754 squareroot 0.0418 -> 0.204 Inexact Rounded
1777
+ sqtx3755 squareroot 0.419 -> 0.647 Inexact Rounded
1778
+ sqtx3756 squareroot 0.0419 -> 0.205 Inexact Rounded
1779
+ sqtx3757 squareroot 0.421 -> 0.649 Inexact Rounded
1780
+ sqtx3758 squareroot 0.0421 -> 0.205 Inexact Rounded
1781
+ sqtx3759 squareroot 0.422 -> 0.650 Inexact Rounded
1782
+ sqtx3760 squareroot 0.0422 -> 0.205 Inexact Rounded
1783
+ sqtx3761 squareroot 0.423 -> 0.650 Inexact Rounded
1784
+ sqtx3762 squareroot 0.0423 -> 0.206 Inexact Rounded
1785
+ sqtx3763 squareroot 0.424 -> 0.651 Inexact Rounded
1786
+ sqtx3764 squareroot 0.0424 -> 0.206 Inexact Rounded
1787
+ sqtx3765 squareroot 0.425 -> 0.652 Inexact Rounded
1788
+ sqtx3766 squareroot 0.0425 -> 0.206 Inexact Rounded
1789
+ sqtx3767 squareroot 0.426 -> 0.653 Inexact Rounded
1790
+ sqtx3768 squareroot 0.0426 -> 0.206 Inexact Rounded
1791
+ sqtx3769 squareroot 0.427 -> 0.653 Inexact Rounded
1792
+ sqtx3770 squareroot 0.0427 -> 0.207 Inexact Rounded
1793
+ sqtx3771 squareroot 0.428 -> 0.654 Inexact Rounded
1794
+ sqtx3772 squareroot 0.0428 -> 0.207 Inexact Rounded
1795
+ sqtx3773 squareroot 0.429 -> 0.655 Inexact Rounded
1796
+ sqtx3774 squareroot 0.0429 -> 0.207 Inexact Rounded
1797
+ sqtx3775 squareroot 0.431 -> 0.657 Inexact Rounded
1798
+ sqtx3776 squareroot 0.0431 -> 0.208 Inexact Rounded
1799
+ sqtx3777 squareroot 0.432 -> 0.657 Inexact Rounded
1800
+ sqtx3778 squareroot 0.0432 -> 0.208 Inexact Rounded
1801
+ sqtx3779 squareroot 0.433 -> 0.658 Inexact Rounded
1802
+ sqtx3780 squareroot 0.0433 -> 0.208 Inexact Rounded
1803
+ sqtx3781 squareroot 0.434 -> 0.659 Inexact Rounded
1804
+ sqtx3782 squareroot 0.0434 -> 0.208 Inexact Rounded
1805
+ sqtx3783 squareroot 0.435 -> 0.660 Inexact Rounded
1806
+ sqtx3784 squareroot 0.0435 -> 0.209 Inexact Rounded
1807
+ sqtx3785 squareroot 0.436 -> 0.660 Inexact Rounded
1808
+ sqtx3786 squareroot 0.0436 -> 0.209 Inexact Rounded
1809
+ sqtx3787 squareroot 0.437 -> 0.661 Inexact Rounded
1810
+ sqtx3788 squareroot 0.0437 -> 0.209 Inexact Rounded
1811
+ sqtx3789 squareroot 0.438 -> 0.662 Inexact Rounded
1812
+ sqtx3790 squareroot 0.0438 -> 0.209 Inexact Rounded
1813
+ sqtx3791 squareroot 0.439 -> 0.663 Inexact Rounded
1814
+ sqtx3792 squareroot 0.0439 -> 0.210 Inexact Rounded
1815
+ sqtx3793 squareroot 0.441 -> 0.664 Inexact Rounded
1816
+ sqtx3794 squareroot 0.0441 -> 0.21
1817
+ sqtx3795 squareroot 0.442 -> 0.665 Inexact Rounded
1818
+ sqtx3796 squareroot 0.0442 -> 0.210 Inexact Rounded
1819
+ sqtx3797 squareroot 0.443 -> 0.666 Inexact Rounded
1820
+ sqtx3798 squareroot 0.0443 -> 0.210 Inexact Rounded
1821
+ sqtx3799 squareroot 0.444 -> 0.666 Inexact Rounded
1822
+ sqtx3800 squareroot 0.0444 -> 0.211 Inexact Rounded
1823
+ sqtx3801 squareroot 0.445 -> 0.667 Inexact Rounded
1824
+ sqtx3802 squareroot 0.0445 -> 0.211 Inexact Rounded
1825
+ sqtx3803 squareroot 0.446 -> 0.668 Inexact Rounded
1826
+ sqtx3804 squareroot 0.0446 -> 0.211 Inexact Rounded
1827
+ sqtx3805 squareroot 0.447 -> 0.669 Inexact Rounded
1828
+ sqtx3806 squareroot 0.0447 -> 0.211 Inexact Rounded
1829
+ sqtx3807 squareroot 0.448 -> 0.669 Inexact Rounded
1830
+ sqtx3808 squareroot 0.0448 -> 0.212 Inexact Rounded
1831
+ sqtx3809 squareroot 0.449 -> 0.670 Inexact Rounded
1832
+ sqtx3810 squareroot 0.0449 -> 0.212 Inexact Rounded
1833
+ sqtx3811 squareroot 0.451 -> 0.672 Inexact Rounded
1834
+ sqtx3812 squareroot 0.0451 -> 0.212 Inexact Rounded
1835
+ sqtx3813 squareroot 0.452 -> 0.672 Inexact Rounded
1836
+ sqtx3814 squareroot 0.0452 -> 0.213 Inexact Rounded
1837
+ sqtx3815 squareroot 0.453 -> 0.673 Inexact Rounded
1838
+ sqtx3816 squareroot 0.0453 -> 0.213 Inexact Rounded
1839
+ sqtx3817 squareroot 0.454 -> 0.674 Inexact Rounded
1840
+ sqtx3818 squareroot 0.0454 -> 0.213 Inexact Rounded
1841
+ sqtx3819 squareroot 0.455 -> 0.675 Inexact Rounded
1842
+ sqtx3820 squareroot 0.0455 -> 0.213 Inexact Rounded
1843
+ sqtx3821 squareroot 0.456 -> 0.675 Inexact Rounded
1844
+ sqtx3822 squareroot 0.0456 -> 0.214 Inexact Rounded
1845
+ sqtx3823 squareroot 0.457 -> 0.676 Inexact Rounded
1846
+ sqtx3824 squareroot 0.0457 -> 0.214 Inexact Rounded
1847
+ sqtx3825 squareroot 0.458 -> 0.677 Inexact Rounded
1848
+ sqtx3826 squareroot 0.0458 -> 0.214 Inexact Rounded
1849
+ sqtx3827 squareroot 0.459 -> 0.677 Inexact Rounded
1850
+ sqtx3828 squareroot 0.0459 -> 0.214 Inexact Rounded
1851
+ sqtx3829 squareroot 0.461 -> 0.679 Inexact Rounded
1852
+ sqtx3830 squareroot 0.0461 -> 0.215 Inexact Rounded
1853
+ sqtx3831 squareroot 0.462 -> 0.680 Inexact Rounded
1854
+ sqtx3832 squareroot 0.0462 -> 0.215 Inexact Rounded
1855
+ sqtx3833 squareroot 0.463 -> 0.680 Inexact Rounded
1856
+ sqtx3834 squareroot 0.0463 -> 0.215 Inexact Rounded
1857
+ sqtx3835 squareroot 0.464 -> 0.681 Inexact Rounded
1858
+ sqtx3836 squareroot 0.0464 -> 0.215 Inexact Rounded
1859
+ sqtx3837 squareroot 0.465 -> 0.682 Inexact Rounded
1860
+ sqtx3838 squareroot 0.0465 -> 0.216 Inexact Rounded
1861
+ sqtx3839 squareroot 0.466 -> 0.683 Inexact Rounded
1862
+ sqtx3840 squareroot 0.0466 -> 0.216 Inexact Rounded
1863
+ sqtx3841 squareroot 0.467 -> 0.683 Inexact Rounded
1864
+ sqtx3842 squareroot 0.0467 -> 0.216 Inexact Rounded
1865
+ sqtx3843 squareroot 0.468 -> 0.684 Inexact Rounded
1866
+ sqtx3844 squareroot 0.0468 -> 0.216 Inexact Rounded
1867
+ sqtx3845 squareroot 0.469 -> 0.685 Inexact Rounded
1868
+ sqtx3846 squareroot 0.0469 -> 0.217 Inexact Rounded
1869
+ sqtx3847 squareroot 0.471 -> 0.686 Inexact Rounded
1870
+ sqtx3848 squareroot 0.0471 -> 0.217 Inexact Rounded
1871
+ sqtx3849 squareroot 0.472 -> 0.687 Inexact Rounded
1872
+ sqtx3850 squareroot 0.0472 -> 0.217 Inexact Rounded
1873
+ sqtx3851 squareroot 0.473 -> 0.688 Inexact Rounded
1874
+ sqtx3852 squareroot 0.0473 -> 0.217 Inexact Rounded
1875
+ sqtx3853 squareroot 0.474 -> 0.688 Inexact Rounded
1876
+ sqtx3854 squareroot 0.0474 -> 0.218 Inexact Rounded
1877
+ sqtx3855 squareroot 0.475 -> 0.689 Inexact Rounded
1878
+ sqtx3856 squareroot 0.0475 -> 0.218 Inexact Rounded
1879
+ sqtx3857 squareroot 0.476 -> 0.690 Inexact Rounded
1880
+ sqtx3858 squareroot 0.0476 -> 0.218 Inexact Rounded
1881
+ sqtx3859 squareroot 0.477 -> 0.691 Inexact Rounded
1882
+ sqtx3860 squareroot 0.0477 -> 0.218 Inexact Rounded
1883
+ sqtx3861 squareroot 0.478 -> 0.691 Inexact Rounded
1884
+ sqtx3862 squareroot 0.0478 -> 0.219 Inexact Rounded
1885
+ sqtx3863 squareroot 0.479 -> 0.692 Inexact Rounded
1886
+ sqtx3864 squareroot 0.0479 -> 0.219 Inexact Rounded
1887
+ sqtx3865 squareroot 0.481 -> 0.694 Inexact Rounded
1888
+ sqtx3866 squareroot 0.0481 -> 0.219 Inexact Rounded
1889
+ sqtx3867 squareroot 0.482 -> 0.694 Inexact Rounded
1890
+ sqtx3868 squareroot 0.0482 -> 0.220 Inexact Rounded
1891
+ sqtx3869 squareroot 0.483 -> 0.695 Inexact Rounded
1892
+ sqtx3870 squareroot 0.0483 -> 0.220 Inexact Rounded
1893
+ sqtx3871 squareroot 0.484 -> 0.696 Inexact Rounded
1894
+ sqtx3872 squareroot 0.0484 -> 0.22
1895
+ sqtx3873 squareroot 0.485 -> 0.696 Inexact Rounded
1896
+ sqtx3874 squareroot 0.0485 -> 0.220 Inexact Rounded
1897
+ sqtx3875 squareroot 0.486 -> 0.697 Inexact Rounded
1898
+ sqtx3876 squareroot 0.0486 -> 0.220 Inexact Rounded
1899
+ sqtx3877 squareroot 0.487 -> 0.698 Inexact Rounded
1900
+ sqtx3878 squareroot 0.0487 -> 0.221 Inexact Rounded
1901
+ sqtx3879 squareroot 0.488 -> 0.699 Inexact Rounded
1902
+ sqtx3880 squareroot 0.0488 -> 0.221 Inexact Rounded
1903
+ sqtx3881 squareroot 0.489 -> 0.699 Inexact Rounded
1904
+ sqtx3882 squareroot 0.0489 -> 0.221 Inexact Rounded
1905
+ sqtx3883 squareroot 0.491 -> 0.701 Inexact Rounded
1906
+ sqtx3884 squareroot 0.0491 -> 0.222 Inexact Rounded
1907
+ sqtx3885 squareroot 0.492 -> 0.701 Inexact Rounded
1908
+ sqtx3886 squareroot 0.0492 -> 0.222 Inexact Rounded
1909
+ sqtx3887 squareroot 0.493 -> 0.702 Inexact Rounded
1910
+ sqtx3888 squareroot 0.0493 -> 0.222 Inexact Rounded
1911
+ sqtx3889 squareroot 0.494 -> 0.703 Inexact Rounded
1912
+ sqtx3890 squareroot 0.0494 -> 0.222 Inexact Rounded
1913
+ sqtx3891 squareroot 0.495 -> 0.704 Inexact Rounded
1914
+ sqtx3892 squareroot 0.0495 -> 0.222 Inexact Rounded
1915
+ sqtx3893 squareroot 0.496 -> 0.704 Inexact Rounded
1916
+ sqtx3894 squareroot 0.0496 -> 0.223 Inexact Rounded
1917
+ sqtx3895 squareroot 0.497 -> 0.705 Inexact Rounded
1918
+ sqtx3896 squareroot 0.0497 -> 0.223 Inexact Rounded
1919
+ sqtx3897 squareroot 0.498 -> 0.706 Inexact Rounded
1920
+ sqtx3898 squareroot 0.0498 -> 0.223 Inexact Rounded
1921
+ sqtx3899 squareroot 0.499 -> 0.706 Inexact Rounded
1922
+ sqtx3900 squareroot 0.0499 -> 0.223 Inexact Rounded
1923
+ sqtx3901 squareroot 0.501 -> 0.708 Inexact Rounded
1924
+ sqtx3902 squareroot 0.0501 -> 0.224 Inexact Rounded
1925
+ sqtx3903 squareroot 0.502 -> 0.709 Inexact Rounded
1926
+ sqtx3904 squareroot 0.0502 -> 0.224 Inexact Rounded
1927
+ sqtx3905 squareroot 0.503 -> 0.709 Inexact Rounded
1928
+ sqtx3906 squareroot 0.0503 -> 0.224 Inexact Rounded
1929
+ sqtx3907 squareroot 0.504 -> 0.710 Inexact Rounded
1930
+ sqtx3908 squareroot 0.0504 -> 0.224 Inexact Rounded
1931
+ sqtx3909 squareroot 0.505 -> 0.711 Inexact Rounded
1932
+ sqtx3910 squareroot 0.0505 -> 0.225 Inexact Rounded
1933
+ sqtx3911 squareroot 0.506 -> 0.711 Inexact Rounded
1934
+ sqtx3912 squareroot 0.0506 -> 0.225 Inexact Rounded
1935
+ sqtx3913 squareroot 0.507 -> 0.712 Inexact Rounded
1936
+ sqtx3914 squareroot 0.0507 -> 0.225 Inexact Rounded
1937
+ sqtx3915 squareroot 0.508 -> 0.713 Inexact Rounded
1938
+ sqtx3916 squareroot 0.0508 -> 0.225 Inexact Rounded
1939
+ sqtx3917 squareroot 0.509 -> 0.713 Inexact Rounded
1940
+ sqtx3918 squareroot 0.0509 -> 0.226 Inexact Rounded
1941
+ sqtx3919 squareroot 0.511 -> 0.715 Inexact Rounded
1942
+ sqtx3920 squareroot 0.0511 -> 0.226 Inexact Rounded
1943
+ sqtx3921 squareroot 0.512 -> 0.716 Inexact Rounded
1944
+ sqtx3922 squareroot 0.0512 -> 0.226 Inexact Rounded
1945
+ sqtx3923 squareroot 0.513 -> 0.716 Inexact Rounded
1946
+ sqtx3924 squareroot 0.0513 -> 0.226 Inexact Rounded
1947
+ sqtx3925 squareroot 0.514 -> 0.717 Inexact Rounded
1948
+ sqtx3926 squareroot 0.0514 -> 0.227 Inexact Rounded
1949
+ sqtx3927 squareroot 0.515 -> 0.718 Inexact Rounded
1950
+ sqtx3928 squareroot 0.0515 -> 0.227 Inexact Rounded
1951
+ sqtx3929 squareroot 0.516 -> 0.718 Inexact Rounded
1952
+ sqtx3930 squareroot 0.0516 -> 0.227 Inexact Rounded
1953
+ sqtx3931 squareroot 0.517 -> 0.719 Inexact Rounded
1954
+ sqtx3932 squareroot 0.0517 -> 0.227 Inexact Rounded
1955
+ sqtx3933 squareroot 0.518 -> 0.720 Inexact Rounded
1956
+ sqtx3934 squareroot 0.0518 -> 0.228 Inexact Rounded
1957
+ sqtx3935 squareroot 0.519 -> 0.720 Inexact Rounded
1958
+ sqtx3936 squareroot 0.0519 -> 0.228 Inexact Rounded
1959
+ sqtx3937 squareroot 0.521 -> 0.722 Inexact Rounded
1960
+ sqtx3938 squareroot 0.0521 -> 0.228 Inexact Rounded
1961
+ sqtx3939 squareroot 0.522 -> 0.722 Inexact Rounded
1962
+ sqtx3940 squareroot 0.0522 -> 0.228 Inexact Rounded
1963
+ sqtx3941 squareroot 0.523 -> 0.723 Inexact Rounded
1964
+ sqtx3942 squareroot 0.0523 -> 0.229 Inexact Rounded
1965
+ sqtx3943 squareroot 0.524 -> 0.724 Inexact Rounded
1966
+ sqtx3944 squareroot 0.0524 -> 0.229 Inexact Rounded
1967
+ sqtx3945 squareroot 0.525 -> 0.725 Inexact Rounded
1968
+ sqtx3946 squareroot 0.0525 -> 0.229 Inexact Rounded
1969
+ sqtx3947 squareroot 0.526 -> 0.725 Inexact Rounded
1970
+ sqtx3948 squareroot 0.0526 -> 0.229 Inexact Rounded
1971
+ sqtx3949 squareroot 0.527 -> 0.726 Inexact Rounded
1972
+ sqtx3950 squareroot 0.0527 -> 0.230 Inexact Rounded
1973
+ sqtx3951 squareroot 0.528 -> 0.727 Inexact Rounded
1974
+ sqtx3952 squareroot 0.0528 -> 0.230 Inexact Rounded
1975
+ sqtx3953 squareroot 0.529 -> 0.727 Inexact Rounded
1976
+ sqtx3954 squareroot 0.0529 -> 0.23
1977
+ sqtx3955 squareroot 0.531 -> 0.729 Inexact Rounded
1978
+ sqtx3956 squareroot 0.0531 -> 0.230 Inexact Rounded
1979
+ sqtx3957 squareroot 0.532 -> 0.729 Inexact Rounded
1980
+ sqtx3958 squareroot 0.0532 -> 0.231 Inexact Rounded
1981
+ sqtx3959 squareroot 0.533 -> 0.730 Inexact Rounded
1982
+ sqtx3960 squareroot 0.0533 -> 0.231 Inexact Rounded
1983
+ sqtx3961 squareroot 0.534 -> 0.731 Inexact Rounded
1984
+ sqtx3962 squareroot 0.0534 -> 0.231 Inexact Rounded
1985
+ sqtx3963 squareroot 0.535 -> 0.731 Inexact Rounded
1986
+ sqtx3964 squareroot 0.0535 -> 0.231 Inexact Rounded
1987
+ sqtx3965 squareroot 0.536 -> 0.732 Inexact Rounded
1988
+ sqtx3966 squareroot 0.0536 -> 0.232 Inexact Rounded
1989
+ sqtx3967 squareroot 0.537 -> 0.733 Inexact Rounded
1990
+ sqtx3968 squareroot 0.0537 -> 0.232 Inexact Rounded
1991
+ sqtx3969 squareroot 0.538 -> 0.733 Inexact Rounded
1992
+ sqtx3970 squareroot 0.0538 -> 0.232 Inexact Rounded
1993
+ sqtx3971 squareroot 0.539 -> 0.734 Inexact Rounded
1994
+ sqtx3972 squareroot 0.0539 -> 0.232 Inexact Rounded
1995
+ sqtx3973 squareroot 0.541 -> 0.736 Inexact Rounded
1996
+ sqtx3974 squareroot 0.0541 -> 0.233 Inexact Rounded
1997
+ sqtx3975 squareroot 0.542 -> 0.736 Inexact Rounded
1998
+ sqtx3976 squareroot 0.0542 -> 0.233 Inexact Rounded
1999
+ sqtx3977 squareroot 0.543 -> 0.737 Inexact Rounded
2000
+ sqtx3978 squareroot 0.0543 -> 0.233 Inexact Rounded
2001
+ sqtx3979 squareroot 0.544 -> 0.738 Inexact Rounded
2002
+ sqtx3980 squareroot 0.0544 -> 0.233 Inexact Rounded
2003
+ sqtx3981 squareroot 0.545 -> 0.738 Inexact Rounded
2004
+ sqtx3982 squareroot 0.0545 -> 0.233 Inexact Rounded
2005
+ sqtx3983 squareroot 0.546 -> 0.739 Inexact Rounded
2006
+ sqtx3984 squareroot 0.0546 -> 0.234 Inexact Rounded
2007
+ sqtx3985 squareroot 0.547 -> 0.740 Inexact Rounded
2008
+ sqtx3986 squareroot 0.0547 -> 0.234 Inexact Rounded
2009
+ sqtx3987 squareroot 0.548 -> 0.740 Inexact Rounded
2010
+ sqtx3988 squareroot 0.0548 -> 0.234 Inexact Rounded
2011
+ sqtx3989 squareroot 0.549 -> 0.741 Inexact Rounded
2012
+ sqtx3990 squareroot 0.0549 -> 0.234 Inexact Rounded
2013
+ sqtx3991 squareroot 0.551 -> 0.742 Inexact Rounded
2014
+ sqtx3992 squareroot 0.0551 -> 0.235 Inexact Rounded
2015
+ sqtx3993 squareroot 0.552 -> 0.743 Inexact Rounded
2016
+ sqtx3994 squareroot 0.0552 -> 0.235 Inexact Rounded
2017
+ sqtx3995 squareroot 0.553 -> 0.744 Inexact Rounded
2018
+ sqtx3996 squareroot 0.0553 -> 0.235 Inexact Rounded
2019
+ sqtx3997 squareroot 0.554 -> 0.744 Inexact Rounded
2020
+ sqtx3998 squareroot 0.0554 -> 0.235 Inexact Rounded
2021
+ sqtx3999 squareroot 0.555 -> 0.745 Inexact Rounded
2022
+ sqtx4000 squareroot 0.0555 -> 0.236 Inexact Rounded
2023
+ sqtx4001 squareroot 0.556 -> 0.746 Inexact Rounded
2024
+ sqtx4002 squareroot 0.0556 -> 0.236 Inexact Rounded
2025
+ sqtx4003 squareroot 0.557 -> 0.746 Inexact Rounded
2026
+ sqtx4004 squareroot 0.0557 -> 0.236 Inexact Rounded
2027
+ sqtx4005 squareroot 0.558 -> 0.747 Inexact Rounded
2028
+ sqtx4006 squareroot 0.0558 -> 0.236 Inexact Rounded
2029
+ sqtx4007 squareroot 0.559 -> 0.748 Inexact Rounded
2030
+ sqtx4008 squareroot 0.0559 -> 0.236 Inexact Rounded
2031
+ sqtx4009 squareroot 0.561 -> 0.749 Inexact Rounded
2032
+ sqtx4010 squareroot 0.0561 -> 0.237 Inexact Rounded
2033
+ sqtx4011 squareroot 0.562 -> 0.750 Inexact Rounded
2034
+ sqtx4012 squareroot 0.0562 -> 0.237 Inexact Rounded
2035
+ sqtx4013 squareroot 0.563 -> 0.750 Inexact Rounded
2036
+ sqtx4014 squareroot 0.0563 -> 0.237 Inexact Rounded
2037
+ sqtx4015 squareroot 0.564 -> 0.751 Inexact Rounded
2038
+ sqtx4016 squareroot 0.0564 -> 0.237 Inexact Rounded
2039
+ sqtx4017 squareroot 0.565 -> 0.752 Inexact Rounded
2040
+ sqtx4018 squareroot 0.0565 -> 0.238 Inexact Rounded
2041
+ sqtx4019 squareroot 0.566 -> 0.752 Inexact Rounded
2042
+ sqtx4020 squareroot 0.0566 -> 0.238 Inexact Rounded
2043
+ sqtx4021 squareroot 0.567 -> 0.753 Inexact Rounded
2044
+ sqtx4022 squareroot 0.0567 -> 0.238 Inexact Rounded
2045
+ sqtx4023 squareroot 0.568 -> 0.754 Inexact Rounded
2046
+ sqtx4024 squareroot 0.0568 -> 0.238 Inexact Rounded
2047
+ sqtx4025 squareroot 0.569 -> 0.754 Inexact Rounded
2048
+ sqtx4026 squareroot 0.0569 -> 0.239 Inexact Rounded
2049
+ sqtx4027 squareroot 0.571 -> 0.756 Inexact Rounded
2050
+ sqtx4028 squareroot 0.0571 -> 0.239 Inexact Rounded
2051
+ sqtx4029 squareroot 0.572 -> 0.756 Inexact Rounded
2052
+ sqtx4030 squareroot 0.0572 -> 0.239 Inexact Rounded
2053
+ sqtx4031 squareroot 0.573 -> 0.757 Inexact Rounded
2054
+ sqtx4032 squareroot 0.0573 -> 0.239 Inexact Rounded
2055
+ sqtx4033 squareroot 0.574 -> 0.758 Inexact Rounded
2056
+ sqtx4034 squareroot 0.0574 -> 0.240 Inexact Rounded
2057
+ sqtx4035 squareroot 0.575 -> 0.758 Inexact Rounded
2058
+ sqtx4036 squareroot 0.0575 -> 0.240 Inexact Rounded
2059
+ sqtx4037 squareroot 0.576 -> 0.759 Inexact Rounded
2060
+ sqtx4038 squareroot 0.0576 -> 0.24
2061
+ sqtx4039 squareroot 0.577 -> 0.760 Inexact Rounded
2062
+ sqtx4040 squareroot 0.0577 -> 0.240 Inexact Rounded
2063
+ sqtx4041 squareroot 0.578 -> 0.760 Inexact Rounded
2064
+ sqtx4042 squareroot 0.0578 -> 0.240 Inexact Rounded
2065
+ sqtx4043 squareroot 0.579 -> 0.761 Inexact Rounded
2066
+ sqtx4044 squareroot 0.0579 -> 0.241 Inexact Rounded
2067
+ sqtx4045 squareroot 0.581 -> 0.762 Inexact Rounded
2068
+ sqtx4046 squareroot 0.0581 -> 0.241 Inexact Rounded
2069
+ sqtx4047 squareroot 0.582 -> 0.763 Inexact Rounded
2070
+ sqtx4048 squareroot 0.0582 -> 0.241 Inexact Rounded
2071
+ sqtx4049 squareroot 0.583 -> 0.764 Inexact Rounded
2072
+ sqtx4050 squareroot 0.0583 -> 0.241 Inexact Rounded
2073
+ sqtx4051 squareroot 0.584 -> 0.764 Inexact Rounded
2074
+ sqtx4052 squareroot 0.0584 -> 0.242 Inexact Rounded
2075
+ sqtx4053 squareroot 0.585 -> 0.765 Inexact Rounded
2076
+ sqtx4054 squareroot 0.0585 -> 0.242 Inexact Rounded
2077
+ sqtx4055 squareroot 0.586 -> 0.766 Inexact Rounded
2078
+ sqtx4056 squareroot 0.0586 -> 0.242 Inexact Rounded
2079
+ sqtx4057 squareroot 0.587 -> 0.766 Inexact Rounded
2080
+ sqtx4058 squareroot 0.0587 -> 0.242 Inexact Rounded
2081
+ sqtx4059 squareroot 0.588 -> 0.767 Inexact Rounded
2082
+ sqtx4060 squareroot 0.0588 -> 0.242 Inexact Rounded
2083
+ sqtx4061 squareroot 0.589 -> 0.767 Inexact Rounded
2084
+ sqtx4062 squareroot 0.0589 -> 0.243 Inexact Rounded
2085
+ sqtx4063 squareroot 0.591 -> 0.769 Inexact Rounded
2086
+ sqtx4064 squareroot 0.0591 -> 0.243 Inexact Rounded
2087
+ sqtx4065 squareroot 0.592 -> 0.769 Inexact Rounded
2088
+ sqtx4066 squareroot 0.0592 -> 0.243 Inexact Rounded
2089
+ sqtx4067 squareroot 0.593 -> 0.770 Inexact Rounded
2090
+ sqtx4068 squareroot 0.0593 -> 0.244 Inexact Rounded
2091
+ sqtx4069 squareroot 0.594 -> 0.771 Inexact Rounded
2092
+ sqtx4070 squareroot 0.0594 -> 0.244 Inexact Rounded
2093
+ sqtx4071 squareroot 0.595 -> 0.771 Inexact Rounded
2094
+ sqtx4072 squareroot 0.0595 -> 0.244 Inexact Rounded
2095
+ sqtx4073 squareroot 0.596 -> 0.772 Inexact Rounded
2096
+ sqtx4074 squareroot 0.0596 -> 0.244 Inexact Rounded
2097
+ sqtx4075 squareroot 0.597 -> 0.773 Inexact Rounded
2098
+ sqtx4076 squareroot 0.0597 -> 0.244 Inexact Rounded
2099
+ sqtx4077 squareroot 0.598 -> 0.773 Inexact Rounded
2100
+ sqtx4078 squareroot 0.0598 -> 0.245 Inexact Rounded
2101
+ sqtx4079 squareroot 0.599 -> 0.774 Inexact Rounded
2102
+ sqtx4080 squareroot 0.0599 -> 0.245 Inexact Rounded
2103
+ sqtx4081 squareroot 0.601 -> 0.775 Inexact Rounded
2104
+ sqtx4082 squareroot 0.0601 -> 0.245 Inexact Rounded
2105
+ sqtx4083 squareroot 0.602 -> 0.776 Inexact Rounded
2106
+ sqtx4084 squareroot 0.0602 -> 0.245 Inexact Rounded
2107
+ sqtx4085 squareroot 0.603 -> 0.777 Inexact Rounded
2108
+ sqtx4086 squareroot 0.0603 -> 0.246 Inexact Rounded
2109
+ sqtx4087 squareroot 0.604 -> 0.777 Inexact Rounded
2110
+ sqtx4088 squareroot 0.0604 -> 0.246 Inexact Rounded
2111
+ sqtx4089 squareroot 0.605 -> 0.778 Inexact Rounded
2112
+ sqtx4090 squareroot 0.0605 -> 0.246 Inexact Rounded
2113
+ sqtx4091 squareroot 0.606 -> 0.778 Inexact Rounded
2114
+ sqtx4092 squareroot 0.0606 -> 0.246 Inexact Rounded
2115
+ sqtx4093 squareroot 0.607 -> 0.779 Inexact Rounded
2116
+ sqtx4094 squareroot 0.0607 -> 0.246 Inexact Rounded
2117
+ sqtx4095 squareroot 0.608 -> 0.780 Inexact Rounded
2118
+ sqtx4096 squareroot 0.0608 -> 0.247 Inexact Rounded
2119
+ sqtx4097 squareroot 0.609 -> 0.780 Inexact Rounded
2120
+ sqtx4098 squareroot 0.0609 -> 0.247 Inexact Rounded
2121
+ sqtx4099 squareroot 0.611 -> 0.782 Inexact Rounded
2122
+ sqtx4100 squareroot 0.0611 -> 0.247 Inexact Rounded
2123
+ sqtx4101 squareroot 0.612 -> 0.782 Inexact Rounded
2124
+ sqtx4102 squareroot 0.0612 -> 0.247 Inexact Rounded
2125
+ sqtx4103 squareroot 0.613 -> 0.783 Inexact Rounded
2126
+ sqtx4104 squareroot 0.0613 -> 0.248 Inexact Rounded
2127
+ sqtx4105 squareroot 0.614 -> 0.784 Inexact Rounded
2128
+ sqtx4106 squareroot 0.0614 -> 0.248 Inexact Rounded
2129
+ sqtx4107 squareroot 0.615 -> 0.784 Inexact Rounded
2130
+ sqtx4108 squareroot 0.0615 -> 0.248 Inexact Rounded
2131
+ sqtx4109 squareroot 0.616 -> 0.785 Inexact Rounded
2132
+ sqtx4110 squareroot 0.0616 -> 0.248 Inexact Rounded
2133
+ sqtx4111 squareroot 0.617 -> 0.785 Inexact Rounded
2134
+ sqtx4112 squareroot 0.0617 -> 0.248 Inexact Rounded
2135
+ sqtx4113 squareroot 0.618 -> 0.786 Inexact Rounded
2136
+ sqtx4114 squareroot 0.0618 -> 0.249 Inexact Rounded
2137
+ sqtx4115 squareroot 0.619 -> 0.787 Inexact Rounded
2138
+ sqtx4116 squareroot 0.0619 -> 0.249 Inexact Rounded
2139
+ sqtx4117 squareroot 0.621 -> 0.788 Inexact Rounded
2140
+ sqtx4118 squareroot 0.0621 -> 0.249 Inexact Rounded
2141
+ sqtx4119 squareroot 0.622 -> 0.789 Inexact Rounded
2142
+ sqtx4120 squareroot 0.0622 -> 0.249 Inexact Rounded
2143
+ sqtx4121 squareroot 0.623 -> 0.789 Inexact Rounded
2144
+ sqtx4122 squareroot 0.0623 -> 0.250 Inexact Rounded
2145
+ sqtx4123 squareroot 0.624 -> 0.790 Inexact Rounded
2146
+ sqtx4124 squareroot 0.0624 -> 0.250 Inexact Rounded
2147
+ sqtx4125 squareroot 0.625 -> 0.791 Inexact Rounded
2148
+ sqtx4126 squareroot 0.0625 -> 0.25
2149
+ sqtx4127 squareroot 0.626 -> 0.791 Inexact Rounded
2150
+ sqtx4128 squareroot 0.0626 -> 0.250 Inexact Rounded
2151
+ sqtx4129 squareroot 0.627 -> 0.792 Inexact Rounded
2152
+ sqtx4130 squareroot 0.0627 -> 0.250 Inexact Rounded
2153
+ sqtx4131 squareroot 0.628 -> 0.792 Inexact Rounded
2154
+ sqtx4132 squareroot 0.0628 -> 0.251 Inexact Rounded
2155
+ sqtx4133 squareroot 0.629 -> 0.793 Inexact Rounded
2156
+ sqtx4134 squareroot 0.0629 -> 0.251 Inexact Rounded
2157
+ sqtx4135 squareroot 0.631 -> 0.794 Inexact Rounded
2158
+ sqtx4136 squareroot 0.0631 -> 0.251 Inexact Rounded
2159
+ sqtx4137 squareroot 0.632 -> 0.795 Inexact Rounded
2160
+ sqtx4138 squareroot 0.0632 -> 0.251 Inexact Rounded
2161
+ sqtx4139 squareroot 0.633 -> 0.796 Inexact Rounded
2162
+ sqtx4140 squareroot 0.0633 -> 0.252 Inexact Rounded
2163
+ sqtx4141 squareroot 0.634 -> 0.796 Inexact Rounded
2164
+ sqtx4142 squareroot 0.0634 -> 0.252 Inexact Rounded
2165
+ sqtx4143 squareroot 0.635 -> 0.797 Inexact Rounded
2166
+ sqtx4144 squareroot 0.0635 -> 0.252 Inexact Rounded
2167
+ sqtx4145 squareroot 0.636 -> 0.797 Inexact Rounded
2168
+ sqtx4146 squareroot 0.0636 -> 0.252 Inexact Rounded
2169
+ sqtx4147 squareroot 0.637 -> 0.798 Inexact Rounded
2170
+ sqtx4148 squareroot 0.0637 -> 0.252 Inexact Rounded
2171
+ sqtx4149 squareroot 0.638 -> 0.799 Inexact Rounded
2172
+ sqtx4150 squareroot 0.0638 -> 0.253 Inexact Rounded
2173
+ sqtx4151 squareroot 0.639 -> 0.799 Inexact Rounded
2174
+ sqtx4152 squareroot 0.0639 -> 0.253 Inexact Rounded
2175
+ sqtx4153 squareroot 0.641 -> 0.801 Inexact Rounded
2176
+ sqtx4154 squareroot 0.0641 -> 0.253 Inexact Rounded
2177
+ sqtx4155 squareroot 0.642 -> 0.801 Inexact Rounded
2178
+ sqtx4156 squareroot 0.0642 -> 0.253 Inexact Rounded
2179
+ sqtx4157 squareroot 0.643 -> 0.802 Inexact Rounded
2180
+ sqtx4158 squareroot 0.0643 -> 0.254 Inexact Rounded
2181
+ sqtx4159 squareroot 0.644 -> 0.802 Inexact Rounded
2182
+ sqtx4160 squareroot 0.0644 -> 0.254 Inexact Rounded
2183
+ sqtx4161 squareroot 0.645 -> 0.803 Inexact Rounded
2184
+ sqtx4162 squareroot 0.0645 -> 0.254 Inexact Rounded
2185
+ sqtx4163 squareroot 0.646 -> 0.804 Inexact Rounded
2186
+ sqtx4164 squareroot 0.0646 -> 0.254 Inexact Rounded
2187
+ sqtx4165 squareroot 0.647 -> 0.804 Inexact Rounded
2188
+ sqtx4166 squareroot 0.0647 -> 0.254 Inexact Rounded
2189
+ sqtx4167 squareroot 0.648 -> 0.805 Inexact Rounded
2190
+ sqtx4168 squareroot 0.0648 -> 0.255 Inexact Rounded
2191
+ sqtx4169 squareroot 0.649 -> 0.806 Inexact Rounded
2192
+ sqtx4170 squareroot 0.0649 -> 0.255 Inexact Rounded
2193
+ sqtx4171 squareroot 0.651 -> 0.807 Inexact Rounded
2194
+ sqtx4172 squareroot 0.0651 -> 0.255 Inexact Rounded
2195
+ sqtx4173 squareroot 0.652 -> 0.807 Inexact Rounded
2196
+ sqtx4174 squareroot 0.0652 -> 0.255 Inexact Rounded
2197
+ sqtx4175 squareroot 0.653 -> 0.808 Inexact Rounded
2198
+ sqtx4176 squareroot 0.0653 -> 0.256 Inexact Rounded
2199
+ sqtx4177 squareroot 0.654 -> 0.809 Inexact Rounded
2200
+ sqtx4178 squareroot 0.0654 -> 0.256 Inexact Rounded
2201
+ sqtx4179 squareroot 0.655 -> 0.809 Inexact Rounded
2202
+ sqtx4180 squareroot 0.0655 -> 0.256 Inexact Rounded
2203
+ sqtx4181 squareroot 0.656 -> 0.810 Inexact Rounded
2204
+ sqtx4182 squareroot 0.0656 -> 0.256 Inexact Rounded
2205
+ sqtx4183 squareroot 0.657 -> 0.811 Inexact Rounded
2206
+ sqtx4184 squareroot 0.0657 -> 0.256 Inexact Rounded
2207
+ sqtx4185 squareroot 0.658 -> 0.811 Inexact Rounded
2208
+ sqtx4186 squareroot 0.0658 -> 0.257 Inexact Rounded
2209
+ sqtx4187 squareroot 0.659 -> 0.812 Inexact Rounded
2210
+ sqtx4188 squareroot 0.0659 -> 0.257 Inexact Rounded
2211
+ sqtx4189 squareroot 0.661 -> 0.813 Inexact Rounded
2212
+ sqtx4190 squareroot 0.0661 -> 0.257 Inexact Rounded
2213
+ sqtx4191 squareroot 0.662 -> 0.814 Inexact Rounded
2214
+ sqtx4192 squareroot 0.0662 -> 0.257 Inexact Rounded
2215
+ sqtx4193 squareroot 0.663 -> 0.814 Inexact Rounded
2216
+ sqtx4194 squareroot 0.0663 -> 0.257 Inexact Rounded
2217
+ sqtx4195 squareroot 0.664 -> 0.815 Inexact Rounded
2218
+ sqtx4196 squareroot 0.0664 -> 0.258 Inexact Rounded
2219
+ sqtx4197 squareroot 0.665 -> 0.815 Inexact Rounded
2220
+ sqtx4198 squareroot 0.0665 -> 0.258 Inexact Rounded
2221
+ sqtx4199 squareroot 0.666 -> 0.816 Inexact Rounded
2222
+ sqtx4200 squareroot 0.0666 -> 0.258 Inexact Rounded
2223
+ sqtx4201 squareroot 0.667 -> 0.817 Inexact Rounded
2224
+ sqtx4202 squareroot 0.0667 -> 0.258 Inexact Rounded
2225
+ sqtx4203 squareroot 0.668 -> 0.817 Inexact Rounded
2226
+ sqtx4204 squareroot 0.0668 -> 0.258 Inexact Rounded
2227
+ sqtx4205 squareroot 0.669 -> 0.818 Inexact Rounded
2228
+ sqtx4206 squareroot 0.0669 -> 0.259 Inexact Rounded
2229
+ sqtx4207 squareroot 0.671 -> 0.819 Inexact Rounded
2230
+ sqtx4208 squareroot 0.0671 -> 0.259 Inexact Rounded
2231
+ sqtx4209 squareroot 0.672 -> 0.820 Inexact Rounded
2232
+ sqtx4210 squareroot 0.0672 -> 0.259 Inexact Rounded
2233
+ sqtx4211 squareroot 0.673 -> 0.820 Inexact Rounded
2234
+ sqtx4212 squareroot 0.0673 -> 0.259 Inexact Rounded
2235
+ sqtx4213 squareroot 0.674 -> 0.821 Inexact Rounded
2236
+ sqtx4214 squareroot 0.0674 -> 0.260 Inexact Rounded
2237
+ sqtx4215 squareroot 0.675 -> 0.822 Inexact Rounded
2238
+ sqtx4216 squareroot 0.0675 -> 0.260 Inexact Rounded
2239
+ sqtx4217 squareroot 0.676 -> 0.822 Inexact Rounded
2240
+ sqtx4218 squareroot 0.0676 -> 0.26
2241
+ sqtx4219 squareroot 0.677 -> 0.823 Inexact Rounded
2242
+ sqtx4220 squareroot 0.0677 -> 0.260 Inexact Rounded
2243
+ sqtx4221 squareroot 0.678 -> 0.823 Inexact Rounded
2244
+ sqtx4222 squareroot 0.0678 -> 0.260 Inexact Rounded
2245
+ sqtx4223 squareroot 0.679 -> 0.824 Inexact Rounded
2246
+ sqtx4224 squareroot 0.0679 -> 0.261 Inexact Rounded
2247
+ sqtx4225 squareroot 0.681 -> 0.825 Inexact Rounded
2248
+ sqtx4226 squareroot 0.0681 -> 0.261 Inexact Rounded
2249
+ sqtx4227 squareroot 0.682 -> 0.826 Inexact Rounded
2250
+ sqtx4228 squareroot 0.0682 -> 0.261 Inexact Rounded
2251
+ sqtx4229 squareroot 0.683 -> 0.826 Inexact Rounded
2252
+ sqtx4230 squareroot 0.0683 -> 0.261 Inexact Rounded
2253
+ sqtx4231 squareroot 0.684 -> 0.827 Inexact Rounded
2254
+ sqtx4232 squareroot 0.0684 -> 0.262 Inexact Rounded
2255
+ sqtx4233 squareroot 0.685 -> 0.828 Inexact Rounded
2256
+ sqtx4234 squareroot 0.0685 -> 0.262 Inexact Rounded
2257
+ sqtx4235 squareroot 0.686 -> 0.828 Inexact Rounded
2258
+ sqtx4236 squareroot 0.0686 -> 0.262 Inexact Rounded
2259
+ sqtx4237 squareroot 0.687 -> 0.829 Inexact Rounded
2260
+ sqtx4238 squareroot 0.0687 -> 0.262 Inexact Rounded
2261
+ sqtx4239 squareroot 0.688 -> 0.829 Inexact Rounded
2262
+ sqtx4240 squareroot 0.0688 -> 0.262 Inexact Rounded
2263
+ sqtx4241 squareroot 0.689 -> 0.830 Inexact Rounded
2264
+ sqtx4242 squareroot 0.0689 -> 0.262 Inexact Rounded
2265
+ sqtx4243 squareroot 0.691 -> 0.831 Inexact Rounded
2266
+ sqtx4244 squareroot 0.0691 -> 0.263 Inexact Rounded
2267
+ sqtx4245 squareroot 0.692 -> 0.832 Inexact Rounded
2268
+ sqtx4246 squareroot 0.0692 -> 0.263 Inexact Rounded
2269
+ sqtx4247 squareroot 0.693 -> 0.832 Inexact Rounded
2270
+ sqtx4248 squareroot 0.0693 -> 0.263 Inexact Rounded
2271
+ sqtx4249 squareroot 0.694 -> 0.833 Inexact Rounded
2272
+ sqtx4250 squareroot 0.0694 -> 0.263 Inexact Rounded
2273
+ sqtx4251 squareroot 0.695 -> 0.834 Inexact Rounded
2274
+ sqtx4252 squareroot 0.0695 -> 0.264 Inexact Rounded
2275
+ sqtx4253 squareroot 0.696 -> 0.834 Inexact Rounded
2276
+ sqtx4254 squareroot 0.0696 -> 0.264 Inexact Rounded
2277
+ sqtx4255 squareroot 0.697 -> 0.835 Inexact Rounded
2278
+ sqtx4256 squareroot 0.0697 -> 0.264 Inexact Rounded
2279
+ sqtx4257 squareroot 0.698 -> 0.835 Inexact Rounded
2280
+ sqtx4258 squareroot 0.0698 -> 0.264 Inexact Rounded
2281
+ sqtx4259 squareroot 0.699 -> 0.836 Inexact Rounded
2282
+ sqtx4260 squareroot 0.0699 -> 0.264 Inexact Rounded
2283
+ sqtx4261 squareroot 0.701 -> 0.837 Inexact Rounded
2284
+ sqtx4262 squareroot 0.0701 -> 0.265 Inexact Rounded
2285
+ sqtx4263 squareroot 0.702 -> 0.838 Inexact Rounded
2286
+ sqtx4264 squareroot 0.0702 -> 0.265 Inexact Rounded
2287
+ sqtx4265 squareroot 0.703 -> 0.838 Inexact Rounded
2288
+ sqtx4266 squareroot 0.0703 -> 0.265 Inexact Rounded
2289
+ sqtx4267 squareroot 0.704 -> 0.839 Inexact Rounded
2290
+ sqtx4268 squareroot 0.0704 -> 0.265 Inexact Rounded
2291
+ sqtx4269 squareroot 0.705 -> 0.840 Inexact Rounded
2292
+ sqtx4270 squareroot 0.0705 -> 0.266 Inexact Rounded
2293
+ sqtx4271 squareroot 0.706 -> 0.840 Inexact Rounded
2294
+ sqtx4272 squareroot 0.0706 -> 0.266 Inexact Rounded
2295
+ sqtx4273 squareroot 0.707 -> 0.841 Inexact Rounded
2296
+ sqtx4274 squareroot 0.0707 -> 0.266 Inexact Rounded
2297
+ sqtx4275 squareroot 0.708 -> 0.841 Inexact Rounded
2298
+ sqtx4276 squareroot 0.0708 -> 0.266 Inexact Rounded
2299
+ sqtx4277 squareroot 0.709 -> 0.842 Inexact Rounded
2300
+ sqtx4278 squareroot 0.0709 -> 0.266 Inexact Rounded
2301
+ sqtx4279 squareroot 0.711 -> 0.843 Inexact Rounded
2302
+ sqtx4280 squareroot 0.0711 -> 0.267 Inexact Rounded
2303
+ sqtx4281 squareroot 0.712 -> 0.844 Inexact Rounded
2304
+ sqtx4282 squareroot 0.0712 -> 0.267 Inexact Rounded
2305
+ sqtx4283 squareroot 0.713 -> 0.844 Inexact Rounded
2306
+ sqtx4284 squareroot 0.0713 -> 0.267 Inexact Rounded
2307
+ sqtx4285 squareroot 0.714 -> 0.845 Inexact Rounded
2308
+ sqtx4286 squareroot 0.0714 -> 0.267 Inexact Rounded
2309
+ sqtx4287 squareroot 0.715 -> 0.846 Inexact Rounded
2310
+ sqtx4288 squareroot 0.0715 -> 0.267 Inexact Rounded
2311
+ sqtx4289 squareroot 0.716 -> 0.846 Inexact Rounded
2312
+ sqtx4290 squareroot 0.0716 -> 0.268 Inexact Rounded
2313
+ sqtx4291 squareroot 0.717 -> 0.847 Inexact Rounded
2314
+ sqtx4292 squareroot 0.0717 -> 0.268 Inexact Rounded
2315
+ sqtx4293 squareroot 0.718 -> 0.847 Inexact Rounded
2316
+ sqtx4294 squareroot 0.0718 -> 0.268 Inexact Rounded
2317
+ sqtx4295 squareroot 0.719 -> 0.848 Inexact Rounded
2318
+ sqtx4296 squareroot 0.0719 -> 0.268 Inexact Rounded
2319
+ sqtx4297 squareroot 0.721 -> 0.849 Inexact Rounded
2320
+ sqtx4298 squareroot 0.0721 -> 0.269 Inexact Rounded
2321
+ sqtx4299 squareroot 0.722 -> 0.850 Inexact Rounded
2322
+ sqtx4300 squareroot 0.0722 -> 0.269 Inexact Rounded
2323
+ sqtx4301 squareroot 0.723 -> 0.850 Inexact Rounded
2324
+ sqtx4302 squareroot 0.0723 -> 0.269 Inexact Rounded
2325
+ sqtx4303 squareroot 0.724 -> 0.851 Inexact Rounded
2326
+ sqtx4304 squareroot 0.0724 -> 0.269 Inexact Rounded
2327
+ sqtx4305 squareroot 0.725 -> 0.851 Inexact Rounded
2328
+ sqtx4306 squareroot 0.0725 -> 0.269 Inexact Rounded
2329
+ sqtx4307 squareroot 0.726 -> 0.852 Inexact Rounded
2330
+ sqtx4308 squareroot 0.0726 -> 0.269 Inexact Rounded
2331
+ sqtx4309 squareroot 0.727 -> 0.853 Inexact Rounded
2332
+ sqtx4310 squareroot 0.0727 -> 0.270 Inexact Rounded
2333
+ sqtx4311 squareroot 0.728 -> 0.853 Inexact Rounded
2334
+ sqtx4312 squareroot 0.0728 -> 0.270 Inexact Rounded
2335
+ sqtx4313 squareroot 0.729 -> 0.854 Inexact Rounded
2336
+ sqtx4314 squareroot 0.0729 -> 0.27
2337
+ sqtx4315 squareroot 0.731 -> 0.855 Inexact Rounded
2338
+ sqtx4316 squareroot 0.0731 -> 0.270 Inexact Rounded
2339
+ sqtx4317 squareroot 0.732 -> 0.856 Inexact Rounded
2340
+ sqtx4318 squareroot 0.0732 -> 0.271 Inexact Rounded
2341
+ sqtx4319 squareroot 0.733 -> 0.856 Inexact Rounded
2342
+ sqtx4320 squareroot 0.0733 -> 0.271 Inexact Rounded
2343
+ sqtx4321 squareroot 0.734 -> 0.857 Inexact Rounded
2344
+ sqtx4322 squareroot 0.0734 -> 0.271 Inexact Rounded
2345
+ sqtx4323 squareroot 0.735 -> 0.857 Inexact Rounded
2346
+ sqtx4324 squareroot 0.0735 -> 0.271 Inexact Rounded
2347
+ sqtx4325 squareroot 0.736 -> 0.858 Inexact Rounded
2348
+ sqtx4326 squareroot 0.0736 -> 0.271 Inexact Rounded
2349
+ sqtx4327 squareroot 0.737 -> 0.858 Inexact Rounded
2350
+ sqtx4328 squareroot 0.0737 -> 0.271 Inexact Rounded
2351
+ sqtx4329 squareroot 0.738 -> 0.859 Inexact Rounded
2352
+ sqtx4330 squareroot 0.0738 -> 0.272 Inexact Rounded
2353
+ sqtx4331 squareroot 0.739 -> 0.860 Inexact Rounded
2354
+ sqtx4332 squareroot 0.0739 -> 0.272 Inexact Rounded
2355
+ sqtx4333 squareroot 0.741 -> 0.861 Inexact Rounded
2356
+ sqtx4334 squareroot 0.0741 -> 0.272 Inexact Rounded
2357
+ sqtx4335 squareroot 0.742 -> 0.861 Inexact Rounded
2358
+ sqtx4336 squareroot 0.0742 -> 0.272 Inexact Rounded
2359
+ sqtx4337 squareroot 0.743 -> 0.862 Inexact Rounded
2360
+ sqtx4338 squareroot 0.0743 -> 0.273 Inexact Rounded
2361
+ sqtx4339 squareroot 0.744 -> 0.863 Inexact Rounded
2362
+ sqtx4340 squareroot 0.0744 -> 0.273 Inexact Rounded
2363
+ sqtx4341 squareroot 0.745 -> 0.863 Inexact Rounded
2364
+ sqtx4342 squareroot 0.0745 -> 0.273 Inexact Rounded
2365
+ sqtx4343 squareroot 0.746 -> 0.864 Inexact Rounded
2366
+ sqtx4344 squareroot 0.0746 -> 0.273 Inexact Rounded
2367
+ sqtx4345 squareroot 0.747 -> 0.864 Inexact Rounded
2368
+ sqtx4346 squareroot 0.0747 -> 0.273 Inexact Rounded
2369
+ sqtx4347 squareroot 0.748 -> 0.865 Inexact Rounded
2370
+ sqtx4348 squareroot 0.0748 -> 0.273 Inexact Rounded
2371
+ sqtx4349 squareroot 0.749 -> 0.865 Inexact Rounded
2372
+ sqtx4350 squareroot 0.0749 -> 0.274 Inexact Rounded
2373
+ sqtx4351 squareroot 0.751 -> 0.867 Inexact Rounded
2374
+ sqtx4352 squareroot 0.0751 -> 0.274 Inexact Rounded
2375
+ sqtx4353 squareroot 0.752 -> 0.867 Inexact Rounded
2376
+ sqtx4354 squareroot 0.0752 -> 0.274 Inexact Rounded
2377
+ sqtx4355 squareroot 0.753 -> 0.868 Inexact Rounded
2378
+ sqtx4356 squareroot 0.0753 -> 0.274 Inexact Rounded
2379
+ sqtx4357 squareroot 0.754 -> 0.868 Inexact Rounded
2380
+ sqtx4358 squareroot 0.0754 -> 0.275 Inexact Rounded
2381
+ sqtx4359 squareroot 0.755 -> 0.869 Inexact Rounded
2382
+ sqtx4360 squareroot 0.0755 -> 0.275 Inexact Rounded
2383
+ sqtx4361 squareroot 0.756 -> 0.869 Inexact Rounded
2384
+ sqtx4362 squareroot 0.0756 -> 0.275 Inexact Rounded
2385
+ sqtx4363 squareroot 0.757 -> 0.870 Inexact Rounded
2386
+ sqtx4364 squareroot 0.0757 -> 0.275 Inexact Rounded
2387
+ sqtx4365 squareroot 0.758 -> 0.871 Inexact Rounded
2388
+ sqtx4366 squareroot 0.0758 -> 0.275 Inexact Rounded
2389
+ sqtx4367 squareroot 0.759 -> 0.871 Inexact Rounded
2390
+ sqtx4368 squareroot 0.0759 -> 0.275 Inexact Rounded
2391
+ sqtx4369 squareroot 0.761 -> 0.872 Inexact Rounded
2392
+ sqtx4370 squareroot 0.0761 -> 0.276 Inexact Rounded
2393
+ sqtx4371 squareroot 0.762 -> 0.873 Inexact Rounded
2394
+ sqtx4372 squareroot 0.0762 -> 0.276 Inexact Rounded
2395
+ sqtx4373 squareroot 0.763 -> 0.873 Inexact Rounded
2396
+ sqtx4374 squareroot 0.0763 -> 0.276 Inexact Rounded
2397
+ sqtx4375 squareroot 0.764 -> 0.874 Inexact Rounded
2398
+ sqtx4376 squareroot 0.0764 -> 0.276 Inexact Rounded
2399
+ sqtx4377 squareroot 0.765 -> 0.875 Inexact Rounded
2400
+ sqtx4378 squareroot 0.0765 -> 0.277 Inexact Rounded
2401
+ sqtx4379 squareroot 0.766 -> 0.875 Inexact Rounded
2402
+ sqtx4380 squareroot 0.0766 -> 0.277 Inexact Rounded
2403
+ sqtx4381 squareroot 0.767 -> 0.876 Inexact Rounded
2404
+ sqtx4382 squareroot 0.0767 -> 0.277 Inexact Rounded
2405
+ sqtx4383 squareroot 0.768 -> 0.876 Inexact Rounded
2406
+ sqtx4384 squareroot 0.0768 -> 0.277 Inexact Rounded
2407
+ sqtx4385 squareroot 0.769 -> 0.877 Inexact Rounded
2408
+ sqtx4386 squareroot 0.0769 -> 0.277 Inexact Rounded
2409
+ sqtx4387 squareroot 0.771 -> 0.878 Inexact Rounded
2410
+ sqtx4388 squareroot 0.0771 -> 0.278 Inexact Rounded
2411
+ sqtx4389 squareroot 0.772 -> 0.879 Inexact Rounded
2412
+ sqtx4390 squareroot 0.0772 -> 0.278 Inexact Rounded
2413
+ sqtx4391 squareroot 0.773 -> 0.879 Inexact Rounded
2414
+ sqtx4392 squareroot 0.0773 -> 0.278 Inexact Rounded
2415
+ sqtx4393 squareroot 0.774 -> 0.880 Inexact Rounded
2416
+ sqtx4394 squareroot 0.0774 -> 0.278 Inexact Rounded
2417
+ sqtx4395 squareroot 0.775 -> 0.880 Inexact Rounded
2418
+ sqtx4396 squareroot 0.0775 -> 0.278 Inexact Rounded
2419
+ sqtx4397 squareroot 0.776 -> 0.881 Inexact Rounded
2420
+ sqtx4398 squareroot 0.0776 -> 0.279 Inexact Rounded
2421
+ sqtx4399 squareroot 0.777 -> 0.881 Inexact Rounded
2422
+ sqtx4400 squareroot 0.0777 -> 0.279 Inexact Rounded
2423
+ sqtx4401 squareroot 0.778 -> 0.882 Inexact Rounded
2424
+ sqtx4402 squareroot 0.0778 -> 0.279 Inexact Rounded
2425
+ sqtx4403 squareroot 0.779 -> 0.883 Inexact Rounded
2426
+ sqtx4404 squareroot 0.0779 -> 0.279 Inexact Rounded
2427
+ sqtx4405 squareroot 0.781 -> 0.884 Inexact Rounded
2428
+ sqtx4406 squareroot 0.0781 -> 0.279 Inexact Rounded
2429
+ sqtx4407 squareroot 0.782 -> 0.884 Inexact Rounded
2430
+ sqtx4408 squareroot 0.0782 -> 0.280 Inexact Rounded
2431
+ sqtx4409 squareroot 0.783 -> 0.885 Inexact Rounded
2432
+ sqtx4410 squareroot 0.0783 -> 0.280 Inexact Rounded
2433
+ sqtx4411 squareroot 0.784 -> 0.885 Inexact Rounded
2434
+ sqtx4412 squareroot 0.0784 -> 0.28
2435
+ sqtx4413 squareroot 0.785 -> 0.886 Inexact Rounded
2436
+ sqtx4414 squareroot 0.0785 -> 0.280 Inexact Rounded
2437
+ sqtx4415 squareroot 0.786 -> 0.887 Inexact Rounded
2438
+ sqtx4416 squareroot 0.0786 -> 0.280 Inexact Rounded
2439
+ sqtx4417 squareroot 0.787 -> 0.887 Inexact Rounded
2440
+ sqtx4418 squareroot 0.0787 -> 0.281 Inexact Rounded
2441
+ sqtx4419 squareroot 0.788 -> 0.888 Inexact Rounded
2442
+ sqtx4420 squareroot 0.0788 -> 0.281 Inexact Rounded
2443
+ sqtx4421 squareroot 0.789 -> 0.888 Inexact Rounded
2444
+ sqtx4422 squareroot 0.0789 -> 0.281 Inexact Rounded
2445
+ sqtx4423 squareroot 0.791 -> 0.889 Inexact Rounded
2446
+ sqtx4424 squareroot 0.0791 -> 0.281 Inexact Rounded
2447
+ sqtx4425 squareroot 0.792 -> 0.890 Inexact Rounded
2448
+ sqtx4426 squareroot 0.0792 -> 0.281 Inexact Rounded
2449
+ sqtx4427 squareroot 0.793 -> 0.891 Inexact Rounded
2450
+ sqtx4428 squareroot 0.0793 -> 0.282 Inexact Rounded
2451
+ sqtx4429 squareroot 0.794 -> 0.891 Inexact Rounded
2452
+ sqtx4430 squareroot 0.0794 -> 0.282 Inexact Rounded
2453
+ sqtx4431 squareroot 0.795 -> 0.892 Inexact Rounded
2454
+ sqtx4432 squareroot 0.0795 -> 0.282 Inexact Rounded
2455
+ sqtx4433 squareroot 0.796 -> 0.892 Inexact Rounded
2456
+ sqtx4434 squareroot 0.0796 -> 0.282 Inexact Rounded
2457
+ sqtx4435 squareroot 0.797 -> 0.893 Inexact Rounded
2458
+ sqtx4436 squareroot 0.0797 -> 0.282 Inexact Rounded
2459
+ sqtx4437 squareroot 0.798 -> 0.893 Inexact Rounded
2460
+ sqtx4438 squareroot 0.0798 -> 0.282 Inexact Rounded
2461
+ sqtx4439 squareroot 0.799 -> 0.894 Inexact Rounded
2462
+ sqtx4440 squareroot 0.0799 -> 0.283 Inexact Rounded
2463
+ sqtx4441 squareroot 0.801 -> 0.895 Inexact Rounded
2464
+ sqtx4442 squareroot 0.0801 -> 0.283 Inexact Rounded
2465
+ sqtx4443 squareroot 0.802 -> 0.896 Inexact Rounded
2466
+ sqtx4444 squareroot 0.0802 -> 0.283 Inexact Rounded
2467
+ sqtx4445 squareroot 0.803 -> 0.896 Inexact Rounded
2468
+ sqtx4446 squareroot 0.0803 -> 0.283 Inexact Rounded
2469
+ sqtx4447 squareroot 0.804 -> 0.897 Inexact Rounded
2470
+ sqtx4448 squareroot 0.0804 -> 0.284 Inexact Rounded
2471
+ sqtx4449 squareroot 0.805 -> 0.897 Inexact Rounded
2472
+ sqtx4450 squareroot 0.0805 -> 0.284 Inexact Rounded
2473
+ sqtx4451 squareroot 0.806 -> 0.898 Inexact Rounded
2474
+ sqtx4452 squareroot 0.0806 -> 0.284 Inexact Rounded
2475
+ sqtx4453 squareroot 0.807 -> 0.898 Inexact Rounded
2476
+ sqtx4454 squareroot 0.0807 -> 0.284 Inexact Rounded
2477
+ sqtx4455 squareroot 0.808 -> 0.899 Inexact Rounded
2478
+ sqtx4456 squareroot 0.0808 -> 0.284 Inexact Rounded
2479
+ sqtx4457 squareroot 0.809 -> 0.899 Inexact Rounded
2480
+ sqtx4458 squareroot 0.0809 -> 0.284 Inexact Rounded
2481
+ sqtx4459 squareroot 0.811 -> 0.901 Inexact Rounded
2482
+ sqtx4460 squareroot 0.0811 -> 0.285 Inexact Rounded
2483
+ sqtx4461 squareroot 0.812 -> 0.901 Inexact Rounded
2484
+ sqtx4462 squareroot 0.0812 -> 0.285 Inexact Rounded
2485
+ sqtx4463 squareroot 0.813 -> 0.902 Inexact Rounded
2486
+ sqtx4464 squareroot 0.0813 -> 0.285 Inexact Rounded
2487
+ sqtx4465 squareroot 0.814 -> 0.902 Inexact Rounded
2488
+ sqtx4466 squareroot 0.0814 -> 0.285 Inexact Rounded
2489
+ sqtx4467 squareroot 0.815 -> 0.903 Inexact Rounded
2490
+ sqtx4468 squareroot 0.0815 -> 0.285 Inexact Rounded
2491
+ sqtx4469 squareroot 0.816 -> 0.903 Inexact Rounded
2492
+ sqtx4470 squareroot 0.0816 -> 0.286 Inexact Rounded
2493
+ sqtx4471 squareroot 0.817 -> 0.904 Inexact Rounded
2494
+ sqtx4472 squareroot 0.0817 -> 0.286 Inexact Rounded
2495
+ sqtx4473 squareroot 0.818 -> 0.904 Inexact Rounded
2496
+ sqtx4474 squareroot 0.0818 -> 0.286 Inexact Rounded
2497
+ sqtx4475 squareroot 0.819 -> 0.905 Inexact Rounded
2498
+ sqtx4476 squareroot 0.0819 -> 0.286 Inexact Rounded
2499
+ sqtx4477 squareroot 0.821 -> 0.906 Inexact Rounded
2500
+ sqtx4478 squareroot 0.0821 -> 0.287 Inexact Rounded
2501
+ sqtx4479 squareroot 0.822 -> 0.907 Inexact Rounded
2502
+ sqtx4480 squareroot 0.0822 -> 0.287 Inexact Rounded
2503
+ sqtx4481 squareroot 0.823 -> 0.907 Inexact Rounded
2504
+ sqtx4482 squareroot 0.0823 -> 0.287 Inexact Rounded
2505
+ sqtx4483 squareroot 0.824 -> 0.908 Inexact Rounded
2506
+ sqtx4484 squareroot 0.0824 -> 0.287 Inexact Rounded
2507
+ sqtx4485 squareroot 0.825 -> 0.908 Inexact Rounded
2508
+ sqtx4486 squareroot 0.0825 -> 0.287 Inexact Rounded
2509
+ sqtx4487 squareroot 0.826 -> 0.909 Inexact Rounded
2510
+ sqtx4488 squareroot 0.0826 -> 0.287 Inexact Rounded
2511
+ sqtx4489 squareroot 0.827 -> 0.909 Inexact Rounded
2512
+ sqtx4490 squareroot 0.0827 -> 0.288 Inexact Rounded
2513
+ sqtx4491 squareroot 0.828 -> 0.910 Inexact Rounded
2514
+ sqtx4492 squareroot 0.0828 -> 0.288 Inexact Rounded
2515
+ sqtx4493 squareroot 0.829 -> 0.910 Inexact Rounded
2516
+ sqtx4494 squareroot 0.0829 -> 0.288 Inexact Rounded
2517
+ sqtx4495 squareroot 0.831 -> 0.912 Inexact Rounded
2518
+ sqtx4496 squareroot 0.0831 -> 0.288 Inexact Rounded
2519
+ sqtx4497 squareroot 0.832 -> 0.912 Inexact Rounded
2520
+ sqtx4498 squareroot 0.0832 -> 0.288 Inexact Rounded
2521
+ sqtx4499 squareroot 0.833 -> 0.913 Inexact Rounded
2522
+ sqtx4500 squareroot 0.0833 -> 0.289 Inexact Rounded
2523
+ sqtx4501 squareroot 0.834 -> 0.913 Inexact Rounded
2524
+ sqtx4502 squareroot 0.0834 -> 0.289 Inexact Rounded
2525
+ sqtx4503 squareroot 0.835 -> 0.914 Inexact Rounded
2526
+ sqtx4504 squareroot 0.0835 -> 0.289 Inexact Rounded
2527
+ sqtx4505 squareroot 0.836 -> 0.914 Inexact Rounded
2528
+ sqtx4506 squareroot 0.0836 -> 0.289 Inexact Rounded
2529
+ sqtx4507 squareroot 0.837 -> 0.915 Inexact Rounded
2530
+ sqtx4508 squareroot 0.0837 -> 0.289 Inexact Rounded
2531
+ sqtx4509 squareroot 0.838 -> 0.915 Inexact Rounded
2532
+ sqtx4510 squareroot 0.0838 -> 0.289 Inexact Rounded
2533
+ sqtx4511 squareroot 0.839 -> 0.916 Inexact Rounded
2534
+ sqtx4512 squareroot 0.0839 -> 0.290 Inexact Rounded
2535
+ sqtx4513 squareroot 0.841 -> 0.917 Inexact Rounded
2536
+ sqtx4514 squareroot 0.0841 -> 0.29
2537
+ sqtx4515 squareroot 0.842 -> 0.918 Inexact Rounded
2538
+ sqtx4516 squareroot 0.0842 -> 0.290 Inexact Rounded
2539
+ sqtx4517 squareroot 0.843 -> 0.918 Inexact Rounded
2540
+ sqtx4518 squareroot 0.0843 -> 0.290 Inexact Rounded
2541
+ sqtx4519 squareroot 0.844 -> 0.919 Inexact Rounded
2542
+ sqtx4520 squareroot 0.0844 -> 0.291 Inexact Rounded
2543
+ sqtx4521 squareroot 0.845 -> 0.919 Inexact Rounded
2544
+ sqtx4522 squareroot 0.0845 -> 0.291 Inexact Rounded
2545
+ sqtx4523 squareroot 0.846 -> 0.920 Inexact Rounded
2546
+ sqtx4524 squareroot 0.0846 -> 0.291 Inexact Rounded
2547
+ sqtx4525 squareroot 0.847 -> 0.920 Inexact Rounded
2548
+ sqtx4526 squareroot 0.0847 -> 0.291 Inexact Rounded
2549
+ sqtx4527 squareroot 0.848 -> 0.921 Inexact Rounded
2550
+ sqtx4528 squareroot 0.0848 -> 0.291 Inexact Rounded
2551
+ sqtx4529 squareroot 0.849 -> 0.921 Inexact Rounded
2552
+ sqtx4530 squareroot 0.0849 -> 0.291 Inexact Rounded
2553
+ sqtx4531 squareroot 0.851 -> 0.922 Inexact Rounded
2554
+ sqtx4532 squareroot 0.0851 -> 0.292 Inexact Rounded
2555
+ sqtx4533 squareroot 0.852 -> 0.923 Inexact Rounded
2556
+ sqtx4534 squareroot 0.0852 -> 0.292 Inexact Rounded
2557
+ sqtx4535 squareroot 0.853 -> 0.924 Inexact Rounded
2558
+ sqtx4536 squareroot 0.0853 -> 0.292 Inexact Rounded
2559
+ sqtx4537 squareroot 0.854 -> 0.924 Inexact Rounded
2560
+ sqtx4538 squareroot 0.0854 -> 0.292 Inexact Rounded
2561
+ sqtx4539 squareroot 0.855 -> 0.925 Inexact Rounded
2562
+ sqtx4540 squareroot 0.0855 -> 0.292 Inexact Rounded
2563
+ sqtx4541 squareroot 0.856 -> 0.925 Inexact Rounded
2564
+ sqtx4542 squareroot 0.0856 -> 0.293 Inexact Rounded
2565
+ sqtx4543 squareroot 0.857 -> 0.926 Inexact Rounded
2566
+ sqtx4544 squareroot 0.0857 -> 0.293 Inexact Rounded
2567
+ sqtx4545 squareroot 0.858 -> 0.926 Inexact Rounded
2568
+ sqtx4546 squareroot 0.0858 -> 0.293 Inexact Rounded
2569
+ sqtx4547 squareroot 0.859 -> 0.927 Inexact Rounded
2570
+ sqtx4548 squareroot 0.0859 -> 0.293 Inexact Rounded
2571
+ sqtx4549 squareroot 0.861 -> 0.928 Inexact Rounded
2572
+ sqtx4550 squareroot 0.0861 -> 0.293 Inexact Rounded
2573
+ sqtx4551 squareroot 0.862 -> 0.928 Inexact Rounded
2574
+ sqtx4552 squareroot 0.0862 -> 0.294 Inexact Rounded
2575
+ sqtx4553 squareroot 0.863 -> 0.929 Inexact Rounded
2576
+ sqtx4554 squareroot 0.0863 -> 0.294 Inexact Rounded
2577
+ sqtx4555 squareroot 0.864 -> 0.930 Inexact Rounded
2578
+ sqtx4556 squareroot 0.0864 -> 0.294 Inexact Rounded
2579
+ sqtx4557 squareroot 0.865 -> 0.930 Inexact Rounded
2580
+ sqtx4558 squareroot 0.0865 -> 0.294 Inexact Rounded
2581
+ sqtx4559 squareroot 0.866 -> 0.931 Inexact Rounded
2582
+ sqtx4560 squareroot 0.0866 -> 0.294 Inexact Rounded
2583
+ sqtx4561 squareroot 0.867 -> 0.931 Inexact Rounded
2584
+ sqtx4562 squareroot 0.0867 -> 0.294 Inexact Rounded
2585
+ sqtx4563 squareroot 0.868 -> 0.932 Inexact Rounded
2586
+ sqtx4564 squareroot 0.0868 -> 0.295 Inexact Rounded
2587
+ sqtx4565 squareroot 0.869 -> 0.932 Inexact Rounded
2588
+ sqtx4566 squareroot 0.0869 -> 0.295 Inexact Rounded
2589
+ sqtx4567 squareroot 0.871 -> 0.933 Inexact Rounded
2590
+ sqtx4568 squareroot 0.0871 -> 0.295 Inexact Rounded
2591
+ sqtx4569 squareroot 0.872 -> 0.934 Inexact Rounded
2592
+ sqtx4570 squareroot 0.0872 -> 0.295 Inexact Rounded
2593
+ sqtx4571 squareroot 0.873 -> 0.934 Inexact Rounded
2594
+ sqtx4572 squareroot 0.0873 -> 0.295 Inexact Rounded
2595
+ sqtx4573 squareroot 0.874 -> 0.935 Inexact Rounded
2596
+ sqtx4574 squareroot 0.0874 -> 0.296 Inexact Rounded
2597
+ sqtx4575 squareroot 0.875 -> 0.935 Inexact Rounded
2598
+ sqtx4576 squareroot 0.0875 -> 0.296 Inexact Rounded
2599
+ sqtx4577 squareroot 0.876 -> 0.936 Inexact Rounded
2600
+ sqtx4578 squareroot 0.0876 -> 0.296 Inexact Rounded
2601
+ sqtx4579 squareroot 0.877 -> 0.936 Inexact Rounded
2602
+ sqtx4580 squareroot 0.0877 -> 0.296 Inexact Rounded
2603
+ sqtx4581 squareroot 0.878 -> 0.937 Inexact Rounded
2604
+ sqtx4582 squareroot 0.0878 -> 0.296 Inexact Rounded
2605
+ sqtx4583 squareroot 0.879 -> 0.938 Inexact Rounded
2606
+ sqtx4584 squareroot 0.0879 -> 0.296 Inexact Rounded
2607
+ sqtx4585 squareroot 0.881 -> 0.939 Inexact Rounded
2608
+ sqtx4586 squareroot 0.0881 -> 0.297 Inexact Rounded
2609
+ sqtx4587 squareroot 0.882 -> 0.939 Inexact Rounded
2610
+ sqtx4588 squareroot 0.0882 -> 0.297 Inexact Rounded
2611
+ sqtx4589 squareroot 0.883 -> 0.940 Inexact Rounded
2612
+ sqtx4590 squareroot 0.0883 -> 0.297 Inexact Rounded
2613
+ sqtx4591 squareroot 0.884 -> 0.940 Inexact Rounded
2614
+ sqtx4592 squareroot 0.0884 -> 0.297 Inexact Rounded
2615
+ sqtx4593 squareroot 0.885 -> 0.941 Inexact Rounded
2616
+ sqtx4594 squareroot 0.0885 -> 0.297 Inexact Rounded
2617
+ sqtx4595 squareroot 0.886 -> 0.941 Inexact Rounded
2618
+ sqtx4596 squareroot 0.0886 -> 0.298 Inexact Rounded
2619
+ sqtx4597 squareroot 0.887 -> 0.942 Inexact Rounded
2620
+ sqtx4598 squareroot 0.0887 -> 0.298 Inexact Rounded
2621
+ sqtx4599 squareroot 0.888 -> 0.942 Inexact Rounded
2622
+ sqtx4600 squareroot 0.0888 -> 0.298 Inexact Rounded
2623
+ sqtx4601 squareroot 0.889 -> 0.943 Inexact Rounded
2624
+ sqtx4602 squareroot 0.0889 -> 0.298 Inexact Rounded
2625
+ sqtx4603 squareroot 0.891 -> 0.944 Inexact Rounded
2626
+ sqtx4604 squareroot 0.0891 -> 0.298 Inexact Rounded
2627
+ sqtx4605 squareroot 0.892 -> 0.944 Inexact Rounded
2628
+ sqtx4606 squareroot 0.0892 -> 0.299 Inexact Rounded
2629
+ sqtx4607 squareroot 0.893 -> 0.945 Inexact Rounded
2630
+ sqtx4608 squareroot 0.0893 -> 0.299 Inexact Rounded
2631
+ sqtx4609 squareroot 0.894 -> 0.946 Inexact Rounded
2632
+ sqtx4610 squareroot 0.0894 -> 0.299 Inexact Rounded
2633
+ sqtx4611 squareroot 0.895 -> 0.946 Inexact Rounded
2634
+ sqtx4612 squareroot 0.0895 -> 0.299 Inexact Rounded
2635
+ sqtx4613 squareroot 0.896 -> 0.947 Inexact Rounded
2636
+ sqtx4614 squareroot 0.0896 -> 0.299 Inexact Rounded
2637
+ sqtx4615 squareroot 0.897 -> 0.947 Inexact Rounded
2638
+ sqtx4616 squareroot 0.0897 -> 0.299 Inexact Rounded
2639
+ sqtx4617 squareroot 0.898 -> 0.948 Inexact Rounded
2640
+ sqtx4618 squareroot 0.0898 -> 0.300 Inexact Rounded
2641
+ sqtx4619 squareroot 0.899 -> 0.948 Inexact Rounded
2642
+ sqtx4620 squareroot 0.0899 -> 0.300 Inexact Rounded
2643
+ sqtx4621 squareroot 0.901 -> 0.949 Inexact Rounded
2644
+ sqtx4622 squareroot 0.0901 -> 0.300 Inexact Rounded
2645
+ sqtx4623 squareroot 0.902 -> 0.950 Inexact Rounded
2646
+ sqtx4624 squareroot 0.0902 -> 0.300 Inexact Rounded
2647
+ sqtx4625 squareroot 0.903 -> 0.950 Inexact Rounded
2648
+ sqtx4626 squareroot 0.0903 -> 0.300 Inexact Rounded
2649
+ sqtx4627 squareroot 0.904 -> 0.951 Inexact Rounded
2650
+ sqtx4628 squareroot 0.0904 -> 0.301 Inexact Rounded
2651
+ sqtx4629 squareroot 0.905 -> 0.951 Inexact Rounded
2652
+ sqtx4630 squareroot 0.0905 -> 0.301 Inexact Rounded
2653
+ sqtx4631 squareroot 0.906 -> 0.952 Inexact Rounded
2654
+ sqtx4632 squareroot 0.0906 -> 0.301 Inexact Rounded
2655
+ sqtx4633 squareroot 0.907 -> 0.952 Inexact Rounded
2656
+ sqtx4634 squareroot 0.0907 -> 0.301 Inexact Rounded
2657
+ sqtx4635 squareroot 0.908 -> 0.953 Inexact Rounded
2658
+ sqtx4636 squareroot 0.0908 -> 0.301 Inexact Rounded
2659
+ sqtx4637 squareroot 0.909 -> 0.953 Inexact Rounded
2660
+ sqtx4638 squareroot 0.0909 -> 0.301 Inexact Rounded
2661
+ sqtx4639 squareroot 0.911 -> 0.954 Inexact Rounded
2662
+ sqtx4640 squareroot 0.0911 -> 0.302 Inexact Rounded
2663
+ sqtx4641 squareroot 0.912 -> 0.955 Inexact Rounded
2664
+ sqtx4642 squareroot 0.0912 -> 0.302 Inexact Rounded
2665
+ sqtx4643 squareroot 0.913 -> 0.956 Inexact Rounded
2666
+ sqtx4644 squareroot 0.0913 -> 0.302 Inexact Rounded
2667
+ sqtx4645 squareroot 0.914 -> 0.956 Inexact Rounded
2668
+ sqtx4646 squareroot 0.0914 -> 0.302 Inexact Rounded
2669
+ sqtx4647 squareroot 0.915 -> 0.957 Inexact Rounded
2670
+ sqtx4648 squareroot 0.0915 -> 0.302 Inexact Rounded
2671
+ sqtx4649 squareroot 0.916 -> 0.957 Inexact Rounded
2672
+ sqtx4650 squareroot 0.0916 -> 0.303 Inexact Rounded
2673
+ sqtx4651 squareroot 0.917 -> 0.958 Inexact Rounded
2674
+ sqtx4652 squareroot 0.0917 -> 0.303 Inexact Rounded
2675
+ sqtx4653 squareroot 0.918 -> 0.958 Inexact Rounded
2676
+ sqtx4654 squareroot 0.0918 -> 0.303 Inexact Rounded
2677
+ sqtx4655 squareroot 0.919 -> 0.959 Inexact Rounded
2678
+ sqtx4656 squareroot 0.0919 -> 0.303 Inexact Rounded
2679
+ sqtx4657 squareroot 0.921 -> 0.960 Inexact Rounded
2680
+ sqtx4658 squareroot 0.0921 -> 0.303 Inexact Rounded
2681
+ sqtx4659 squareroot 0.922 -> 0.960 Inexact Rounded
2682
+ sqtx4660 squareroot 0.0922 -> 0.304 Inexact Rounded
2683
+ sqtx4661 squareroot 0.923 -> 0.961 Inexact Rounded
2684
+ sqtx4662 squareroot 0.0923 -> 0.304 Inexact Rounded
2685
+ sqtx4663 squareroot 0.924 -> 0.961 Inexact Rounded
2686
+ sqtx4664 squareroot 0.0924 -> 0.304 Inexact Rounded
2687
+ sqtx4665 squareroot 0.925 -> 0.962 Inexact Rounded
2688
+ sqtx4666 squareroot 0.0925 -> 0.304 Inexact Rounded
2689
+ sqtx4667 squareroot 0.926 -> 0.962 Inexact Rounded
2690
+ sqtx4668 squareroot 0.0926 -> 0.304 Inexact Rounded
2691
+ sqtx4669 squareroot 0.927 -> 0.963 Inexact Rounded
2692
+ sqtx4670 squareroot 0.0927 -> 0.304 Inexact Rounded
2693
+ sqtx4671 squareroot 0.928 -> 0.963 Inexact Rounded
2694
+ sqtx4672 squareroot 0.0928 -> 0.305 Inexact Rounded
2695
+ sqtx4673 squareroot 0.929 -> 0.964 Inexact Rounded
2696
+ sqtx4674 squareroot 0.0929 -> 0.305 Inexact Rounded
2697
+ sqtx4675 squareroot 0.931 -> 0.965 Inexact Rounded
2698
+ sqtx4676 squareroot 0.0931 -> 0.305 Inexact Rounded
2699
+ sqtx4677 squareroot 0.932 -> 0.965 Inexact Rounded
2700
+ sqtx4678 squareroot 0.0932 -> 0.305 Inexact Rounded
2701
+ sqtx4679 squareroot 0.933 -> 0.966 Inexact Rounded
2702
+ sqtx4680 squareroot 0.0933 -> 0.305 Inexact Rounded
2703
+ sqtx4681 squareroot 0.934 -> 0.966 Inexact Rounded
2704
+ sqtx4682 squareroot 0.0934 -> 0.306 Inexact Rounded
2705
+ sqtx4683 squareroot 0.935 -> 0.967 Inexact Rounded
2706
+ sqtx4684 squareroot 0.0935 -> 0.306 Inexact Rounded
2707
+ sqtx4685 squareroot 0.936 -> 0.967 Inexact Rounded
2708
+ sqtx4686 squareroot 0.0936 -> 0.306 Inexact Rounded
2709
+ sqtx4687 squareroot 0.937 -> 0.968 Inexact Rounded
2710
+ sqtx4688 squareroot 0.0937 -> 0.306 Inexact Rounded
2711
+ sqtx4689 squareroot 0.938 -> 0.969 Inexact Rounded
2712
+ sqtx4690 squareroot 0.0938 -> 0.306 Inexact Rounded
2713
+ sqtx4691 squareroot 0.939 -> 0.969 Inexact Rounded
2714
+ sqtx4692 squareroot 0.0939 -> 0.306 Inexact Rounded
2715
+ sqtx4693 squareroot 0.941 -> 0.970 Inexact Rounded
2716
+ sqtx4694 squareroot 0.0941 -> 0.307 Inexact Rounded
2717
+ sqtx4695 squareroot 0.942 -> 0.971 Inexact Rounded
2718
+ sqtx4696 squareroot 0.0942 -> 0.307 Inexact Rounded
2719
+ sqtx4697 squareroot 0.943 -> 0.971 Inexact Rounded
2720
+ sqtx4698 squareroot 0.0943 -> 0.307 Inexact Rounded
2721
+ sqtx4699 squareroot 0.944 -> 0.972 Inexact Rounded
2722
+ sqtx4700 squareroot 0.0944 -> 0.307 Inexact Rounded
2723
+ sqtx4701 squareroot 0.945 -> 0.972 Inexact Rounded
2724
+ sqtx4702 squareroot 0.0945 -> 0.307 Inexact Rounded
2725
+ sqtx4703 squareroot 0.946 -> 0.973 Inexact Rounded
2726
+ sqtx4704 squareroot 0.0946 -> 0.308 Inexact Rounded
2727
+ sqtx4705 squareroot 0.947 -> 0.973 Inexact Rounded
2728
+ sqtx4706 squareroot 0.0947 -> 0.308 Inexact Rounded
2729
+ sqtx4707 squareroot 0.948 -> 0.974 Inexact Rounded
2730
+ sqtx4708 squareroot 0.0948 -> 0.308 Inexact Rounded
2731
+ sqtx4709 squareroot 0.949 -> 0.974 Inexact Rounded
2732
+ sqtx4710 squareroot 0.0949 -> 0.308 Inexact Rounded
2733
+ sqtx4711 squareroot 0.951 -> 0.975 Inexact Rounded
2734
+ sqtx4712 squareroot 0.0951 -> 0.308 Inexact Rounded
2735
+ sqtx4713 squareroot 0.952 -> 0.976 Inexact Rounded
2736
+ sqtx4714 squareroot 0.0952 -> 0.309 Inexact Rounded
2737
+ sqtx4715 squareroot 0.953 -> 0.976 Inexact Rounded
2738
+ sqtx4716 squareroot 0.0953 -> 0.309 Inexact Rounded
2739
+ sqtx4717 squareroot 0.954 -> 0.977 Inexact Rounded
2740
+ sqtx4718 squareroot 0.0954 -> 0.309 Inexact Rounded
2741
+ sqtx4719 squareroot 0.955 -> 0.977 Inexact Rounded
2742
+ sqtx4720 squareroot 0.0955 -> 0.309 Inexact Rounded
2743
+ sqtx4721 squareroot 0.956 -> 0.978 Inexact Rounded
2744
+ sqtx4722 squareroot 0.0956 -> 0.309 Inexact Rounded
2745
+ sqtx4723 squareroot 0.957 -> 0.978 Inexact Rounded
2746
+ sqtx4724 squareroot 0.0957 -> 0.309 Inexact Rounded
2747
+ sqtx4725 squareroot 0.958 -> 0.979 Inexact Rounded
2748
+ sqtx4726 squareroot 0.0958 -> 0.310 Inexact Rounded
2749
+ sqtx4727 squareroot 0.959 -> 0.979 Inexact Rounded
2750
+ sqtx4728 squareroot 0.0959 -> 0.310 Inexact Rounded
2751
+ sqtx4729 squareroot 0.961 -> 0.980 Inexact Rounded
2752
+ sqtx4730 squareroot 0.0961 -> 0.31
2753
+ sqtx4731 squareroot 0.962 -> 0.981 Inexact Rounded
2754
+ sqtx4732 squareroot 0.0962 -> 0.310 Inexact Rounded
2755
+ sqtx4733 squareroot 0.963 -> 0.981 Inexact Rounded
2756
+ sqtx4734 squareroot 0.0963 -> 0.310 Inexact Rounded
2757
+ sqtx4735 squareroot 0.964 -> 0.982 Inexact Rounded
2758
+ sqtx4736 squareroot 0.0964 -> 0.310 Inexact Rounded
2759
+ sqtx4737 squareroot 0.965 -> 0.982 Inexact Rounded
2760
+ sqtx4738 squareroot 0.0965 -> 0.311 Inexact Rounded
2761
+ sqtx4739 squareroot 0.966 -> 0.983 Inexact Rounded
2762
+ sqtx4740 squareroot 0.0966 -> 0.311 Inexact Rounded
2763
+ sqtx4741 squareroot 0.967 -> 0.983 Inexact Rounded
2764
+ sqtx4742 squareroot 0.0967 -> 0.311 Inexact Rounded
2765
+ sqtx4743 squareroot 0.968 -> 0.984 Inexact Rounded
2766
+ sqtx4744 squareroot 0.0968 -> 0.311 Inexact Rounded
2767
+ sqtx4745 squareroot 0.969 -> 0.984 Inexact Rounded
2768
+ sqtx4746 squareroot 0.0969 -> 0.311 Inexact Rounded
2769
+ sqtx4747 squareroot 0.971 -> 0.985 Inexact Rounded
2770
+ sqtx4748 squareroot 0.0971 -> 0.312 Inexact Rounded
2771
+ sqtx4749 squareroot 0.972 -> 0.986 Inexact Rounded
2772
+ sqtx4750 squareroot 0.0972 -> 0.312 Inexact Rounded
2773
+ sqtx4751 squareroot 0.973 -> 0.986 Inexact Rounded
2774
+ sqtx4752 squareroot 0.0973 -> 0.312 Inexact Rounded
2775
+ sqtx4753 squareroot 0.974 -> 0.987 Inexact Rounded
2776
+ sqtx4754 squareroot 0.0974 -> 0.312 Inexact Rounded
2777
+ sqtx4755 squareroot 0.975 -> 0.987 Inexact Rounded
2778
+ sqtx4756 squareroot 0.0975 -> 0.312 Inexact Rounded
2779
+ sqtx4757 squareroot 0.976 -> 0.988 Inexact Rounded
2780
+ sqtx4758 squareroot 0.0976 -> 0.312 Inexact Rounded
2781
+ sqtx4759 squareroot 0.977 -> 0.988 Inexact Rounded
2782
+ sqtx4760 squareroot 0.0977 -> 0.313 Inexact Rounded
2783
+ sqtx4761 squareroot 0.978 -> 0.989 Inexact Rounded
2784
+ sqtx4762 squareroot 0.0978 -> 0.313 Inexact Rounded
2785
+ sqtx4763 squareroot 0.979 -> 0.989 Inexact Rounded
2786
+ sqtx4764 squareroot 0.0979 -> 0.313 Inexact Rounded
2787
+ sqtx4765 squareroot 0.981 -> 0.990 Inexact Rounded
2788
+ sqtx4766 squareroot 0.0981 -> 0.313 Inexact Rounded
2789
+ sqtx4767 squareroot 0.982 -> 0.991 Inexact Rounded
2790
+ sqtx4768 squareroot 0.0982 -> 0.313 Inexact Rounded
2791
+ sqtx4769 squareroot 0.983 -> 0.991 Inexact Rounded
2792
+ sqtx4770 squareroot 0.0983 -> 0.314 Inexact Rounded
2793
+ sqtx4771 squareroot 0.984 -> 0.992 Inexact Rounded
2794
+ sqtx4772 squareroot 0.0984 -> 0.314 Inexact Rounded
2795
+ sqtx4773 squareroot 0.985 -> 0.992 Inexact Rounded
2796
+ sqtx4774 squareroot 0.0985 -> 0.314 Inexact Rounded
2797
+ sqtx4775 squareroot 0.986 -> 0.993 Inexact Rounded
2798
+ sqtx4776 squareroot 0.0986 -> 0.314 Inexact Rounded
2799
+ sqtx4777 squareroot 0.987 -> 0.993 Inexact Rounded
2800
+ sqtx4778 squareroot 0.0987 -> 0.314 Inexact Rounded
2801
+ sqtx4779 squareroot 0.988 -> 0.994 Inexact Rounded
2802
+ sqtx4780 squareroot 0.0988 -> 0.314 Inexact Rounded
2803
+ sqtx4781 squareroot 0.989 -> 0.994 Inexact Rounded
2804
+ sqtx4782 squareroot 0.0989 -> 0.314 Inexact Rounded
2805
+ sqtx4783 squareroot 0.991 -> 0.995 Inexact Rounded
2806
+ sqtx4784 squareroot 0.0991 -> 0.315 Inexact Rounded
2807
+ sqtx4785 squareroot 0.992 -> 0.996 Inexact Rounded
2808
+ sqtx4786 squareroot 0.0992 -> 0.315 Inexact Rounded
2809
+ sqtx4787 squareroot 0.993 -> 0.996 Inexact Rounded
2810
+ sqtx4788 squareroot 0.0993 -> 0.315 Inexact Rounded
2811
+ sqtx4789 squareroot 0.994 -> 0.997 Inexact Rounded
2812
+ sqtx4790 squareroot 0.0994 -> 0.315 Inexact Rounded
2813
+ sqtx4791 squareroot 0.995 -> 0.997 Inexact Rounded
2814
+ sqtx4792 squareroot 0.0995 -> 0.315 Inexact Rounded
2815
+ sqtx4793 squareroot 0.996 -> 0.998 Inexact Rounded
2816
+ sqtx4794 squareroot 0.0996 -> 0.316 Inexact Rounded
2817
+ sqtx4795 squareroot 0.997 -> 0.998 Inexact Rounded
2818
+ sqtx4796 squareroot 0.0997 -> 0.316 Inexact Rounded
2819
+ sqtx4797 squareroot 0.998 -> 0.999 Inexact Rounded
2820
+ sqtx4798 squareroot 0.0998 -> 0.316 Inexact Rounded
2821
+ sqtx4799 squareroot 0.999 -> 0.999 Inexact Rounded
2822
+ sqtx4800 squareroot 0.0999 -> 0.316 Inexact Rounded
2823
+
2824
+ -- A group of precision 4 tests where Hull & Abrham adjustments are
2825
+ -- needed in some cases (both up and down) [see Hull1985b]
2826
+ rounding: half_even
2827
+ maxExponent: 999
2828
+ minexponent: -999
2829
+ precision: 4
2830
+ sqtx5001 squareroot 0.0118 -> 0.1086 Inexact Rounded
2831
+ sqtx5002 squareroot 0.119 -> 0.3450 Inexact Rounded
2832
+ sqtx5003 squareroot 0.0119 -> 0.1091 Inexact Rounded
2833
+ sqtx5004 squareroot 0.121 -> 0.3479 Inexact Rounded
2834
+ sqtx5005 squareroot 0.0121 -> 0.11
2835
+ sqtx5006 squareroot 0.122 -> 0.3493 Inexact Rounded
2836
+ sqtx5007 squareroot 0.0122 -> 0.1105 Inexact Rounded
2837
+ sqtx5008 squareroot 0.123 -> 0.3507 Inexact Rounded
2838
+ sqtx5009 squareroot 0.494 -> 0.7029 Inexact Rounded
2839
+ sqtx5010 squareroot 0.0669 -> 0.2587 Inexact Rounded
2840
+ sqtx5011 squareroot 0.9558 -> 0.9777 Inexact Rounded
2841
+ sqtx5012 squareroot 0.9348 -> 0.9669 Inexact Rounded
2842
+ sqtx5013 squareroot 0.9345 -> 0.9667 Inexact Rounded
2843
+ sqtx5014 squareroot 0.09345 -> 0.3057 Inexact Rounded
2844
+ sqtx5015 squareroot 0.9346 -> 0.9667 Inexact Rounded
2845
+ sqtx5016 squareroot 0.09346 -> 0.3057 Inexact Rounded
2846
+ sqtx5017 squareroot 0.9347 -> 0.9668 Inexact Rounded
2847
+
2848
+ -- examples from decArith
2849
+ precision: 9
2850
+ sqtx700 squareroot 0 -> '0'
2851
+ sqtx701 squareroot -0 -> '-0'
2852
+ sqtx702 squareroot 0.39 -> 0.624499800 Inexact Rounded
2853
+ sqtx703 squareroot 100 -> '10'
2854
+ sqtx704 squareroot 1.00 -> '1.0'
2855
+ sqtx705 squareroot 7 -> '2.64575131' Inexact Rounded
2856
+ sqtx706 squareroot 10 -> 3.16227766 Inexact Rounded
2857
+
2858
+ -- some one-offs
2859
+ precision: 9
2860
+ sqtx711 squareroot 0.1 -> 0.316227766 Inexact Rounded
2861
+ sqtx712 squareroot 0.2 -> 0.447213595 Inexact Rounded
2862
+ sqtx713 squareroot 0.3 -> 0.547722558 Inexact Rounded
2863
+ sqtx714 squareroot 0.4 -> 0.632455532 Inexact Rounded
2864
+ sqtx715 squareroot 0.5 -> 0.707106781 Inexact Rounded
2865
+ sqtx716 squareroot 0.6 -> 0.774596669 Inexact Rounded
2866
+ sqtx717 squareroot 0.7 -> 0.836660027 Inexact Rounded
2867
+ sqtx718 squareroot 0.8 -> 0.894427191 Inexact Rounded
2868
+ sqtx719 squareroot 0.9 -> 0.948683298 Inexact Rounded
2869
+ precision: 10 -- note no normalizatoin here
2870
+ sqtx720 squareroot +0.1 -> 0.3162277660 Inexact Rounded
2871
+ precision: 11
2872
+ sqtx721 squareroot +0.1 -> 0.31622776602 Inexact Rounded
2873
+ precision: 12
2874
+ sqtx722 squareroot +0.1 -> 0.316227766017 Inexact Rounded
2875
+ precision: 9
2876
+ sqtx723 squareroot 0.39 -> 0.624499800 Inexact Rounded
2877
+ precision: 15
2878
+ sqtx724 squareroot 0.39 -> 0.624499799839840 Inexact Rounded
2879
+
2880
+ -- discussion cases
2881
+ precision: 7
2882
+ sqtx731 squareroot 9 -> 3
2883
+ sqtx732 squareroot 100 -> 10
2884
+ sqtx733 squareroot 123 -> 11.09054 Inexact Rounded
2885
+ sqtx734 squareroot 144 -> 12
2886
+ sqtx735 squareroot 156 -> 12.49000 Inexact Rounded
2887
+ sqtx736 squareroot 10000 -> 100
2888
+
2889
+ -- values close to overflow (if there were input rounding)
2890
+ maxexponent: 99
2891
+ minexponent: -99
2892
+ precision: 5
2893
+ sqtx760 squareroot 9.9997E+99 -> 9.9998E+49 Inexact Rounded
2894
+ sqtx761 squareroot 9.9998E+99 -> 9.9999E+49 Inexact Rounded
2895
+ sqtx762 squareroot 9.9999E+99 -> 9.9999E+49 Inexact Rounded
2896
+ sqtx763 squareroot 9.99991E+99 -> 1.0000E+50 Inexact Rounded
2897
+ sqtx764 squareroot 9.99994E+99 -> 1.0000E+50 Inexact Rounded
2898
+ sqtx765 squareroot 9.99995E+99 -> 1.0000E+50 Inexact Rounded
2899
+ sqtx766 squareroot 9.99999E+99 -> 1.0000E+50 Inexact Rounded
2900
+ precision: 9
2901
+ sqtx770 squareroot 9.9997E+99 -> 9.99985000E+49 Inexact Rounded
2902
+ sqtx771 squareroot 9.9998E+99 -> 9.99990000E+49 Inexact Rounded
2903
+ sqtx772 squareroot 9.9999E+99 -> 9.99995000E+49 Inexact Rounded
2904
+ sqtx773 squareroot 9.99991E+99 -> 9.99995500E+49 Inexact Rounded
2905
+ sqtx774 squareroot 9.99994E+99 -> 9.99997000E+49 Inexact Rounded
2906
+ sqtx775 squareroot 9.99995E+99 -> 9.99997500E+49 Inexact Rounded
2907
+ sqtx776 squareroot 9.99999E+99 -> 9.99999500E+49 Inexact Rounded
2908
+ precision: 20
2909
+ sqtx780 squareroot 9.9997E+99 -> '9.9998499988749831247E+49' Inexact Rounded
2910
+ sqtx781 squareroot 9.9998E+99 -> '9.9998999994999949999E+49' Inexact Rounded
2911
+ sqtx782 squareroot 9.9999E+99 -> '9.9999499998749993750E+49' Inexact Rounded
2912
+ sqtx783 squareroot 9.99991E+99 -> '9.9999549998987495444E+49' Inexact Rounded
2913
+ sqtx784 squareroot 9.99994E+99 -> '9.9999699999549998650E+49' Inexact Rounded
2914
+ sqtx785 squareroot 9.99995E+99 -> '9.9999749999687499219E+49' Inexact Rounded
2915
+ sqtx786 squareroot 9.99999E+99 -> '9.9999949999987499994E+49' Inexact Rounded
2916
+
2917
+ -- subnormals and underflows [these can only result when eMax is < digits+1]
2918
+ -- Etiny = -(Emax + (precision-1))
2919
+ -- start with subnormal operands and normal results
2920
+ maxexponent: 9
2921
+ minexponent: -9
2922
+ precision: 9 -- Etiny=-17
2923
+ sqtx800 squareroot 1E-17 -> 3.16227766E-9 Inexact Rounded
2924
+ sqtx801 squareroot 10E-17 -> 1.0E-8
2925
+ precision: 10 -- Etiny=-18
2926
+ sqtx802 squareroot 10E-18 -> 3.162277660E-9 Inexact Rounded
2927
+ sqtx803 squareroot 1E-18 -> 1E-9
2928
+
2929
+ precision: 11 -- Etiny=-19
2930
+ sqtx804 squareroot 1E-19 -> 3.162277660E-10 Underflow Subnormal Inexact Rounded
2931
+ sqtx805 squareroot 10E-19 -> 1.0E-9 -- exact
2932
+ precision: 12 -- Etiny=-20
2933
+ sqtx806 squareroot 10E-20 -> 3.1622776602E-10 Underflow Subnormal Inexact Rounded
2934
+ sqtx807 squareroot 1E-20 -> 1E-10 Subnormal -- exact Subnormal case
2935
+
2936
+ precision: 13 -- Etiny=-21
2937
+ sqtx808 squareroot 1E-21 -> 3.1622776602E-11 Underflow Subnormal Inexact Rounded
2938
+ sqtx809 squareroot 10E-21 -> 1.0E-10 Subnormal -- exact Subnormal case
2939
+ precision: 14 -- Etiny=-22
2940
+ sqtx810 squareroot 1E-21 -> 3.16227766017E-11 Underflow Subnormal Inexact Rounded
2941
+ sqtx811 squareroot 10E-22 -> 3.16227766017E-11 Underflow Subnormal Inexact Rounded
2942
+ sqtx812 squareroot 1E-22 -> 1E-11 Subnormal -- exact Subnormal case
2943
+
2944
+ -- Not enough digits?
2945
+ precision: 16
2946
+ maxExponent: 384
2947
+ minExponent: -383
2948
+ rounding: half_even
2949
+ sqtx815 squareroot 1.0000000001000000E-78 -> 1.000000000050000E-39 Inexact Rounded
2950
+ -- 1 234567890123456
2951
+
2952
+ -- special values
2953
+ maxexponent: 999
2954
+ minexponent: -999
2955
+ sqtx820 squareroot Inf -> Infinity
2956
+ sqtx821 squareroot -Inf -> NaN Invalid_operation
2957
+ sqtx822 squareroot NaN -> NaN
2958
+ sqtx823 squareroot sNaN -> NaN Invalid_operation
2959
+ -- propagating NaNs
2960
+ sqtx824 squareroot sNaN123 -> NaN123 Invalid_operation
2961
+ sqtx825 squareroot -sNaN321 -> -NaN321 Invalid_operation
2962
+ sqtx826 squareroot NaN456 -> NaN456
2963
+ sqtx827 squareroot -NaN654 -> -NaN654
2964
+ sqtx828 squareroot NaN1 -> NaN1
2965
+
2966
+ -- payload decapitate
2967
+ precision: 5
2968
+ sqtx840 squareroot -sNaN1234567890 -> -NaN67890 Invalid_operation
2969
+
2970
+ ------------------------------------------------------------------------
2971
+ --
2972
+ -- Special thanks to Mark Dickinson for tests in the range 8000-8999.
2973
+ --
2974
+ -- Extra tests for the square root function, dealing with a variety of
2975
+ -- corner cases. In particular, these tests concentrate on
2976
+ -- (1) cases where the input precision exceeds the context precision, and
2977
+ -- (2) cases where the input exponent is outside the current context,
2978
+ -- and in particular when the result is subnormal
2979
+ --
2980
+ -- maxexponent and minexponent are set to 9 and -9 for most of these
2981
+ -- cases; only the precision changes. The rounding also does not
2982
+ -- change, because it is ignored for this operation.
2983
+ maxexponent: 9
2984
+ minexponent: -9
2985
+
2986
+ -- exact results, input precision > context precision
2987
+ precision: 1
2988
+ sqtx8000 squareroot 0 -> 0
2989
+ sqtx8001 squareroot 1 -> 1
2990
+ sqtx8002 squareroot 4 -> 2
2991
+ sqtx8003 squareroot 9 -> 3
2992
+ sqtx8004 squareroot 16 -> 4
2993
+ sqtx8005 squareroot 25 -> 5
2994
+ sqtx8006 squareroot 36 -> 6
2995
+ sqtx8007 squareroot 49 -> 7
2996
+ sqtx8008 squareroot 64 -> 8
2997
+ sqtx8009 squareroot 81 -> 9
2998
+ sqtx8010 squareroot 100 -> 1E+1 Rounded
2999
+ sqtx8011 squareroot 121 -> 1E+1 Inexact Rounded
3000
+
3001
+ precision: 2
3002
+ sqtx8012 squareroot 0 -> 0
3003
+ sqtx8013 squareroot 1 -> 1
3004
+ sqtx8014 squareroot 4 -> 2
3005
+ sqtx8015 squareroot 9 -> 3
3006
+ sqtx8016 squareroot 16 -> 4
3007
+ sqtx8017 squareroot 25 -> 5
3008
+ sqtx8018 squareroot 36 -> 6
3009
+ sqtx8019 squareroot 49 -> 7
3010
+ sqtx8020 squareroot 64 -> 8
3011
+ sqtx8021 squareroot 81 -> 9
3012
+ sqtx8022 squareroot 100 -> 10
3013
+ sqtx8023 squareroot 121 -> 11
3014
+ sqtx8024 squareroot 144 -> 12
3015
+ sqtx8025 squareroot 169 -> 13
3016
+ sqtx8026 squareroot 196 -> 14
3017
+ sqtx8027 squareroot 225 -> 15
3018
+ sqtx8028 squareroot 256 -> 16
3019
+ sqtx8029 squareroot 289 -> 17
3020
+ sqtx8030 squareroot 324 -> 18
3021
+ sqtx8031 squareroot 361 -> 19
3022
+ sqtx8032 squareroot 400 -> 20
3023
+ sqtx8033 squareroot 441 -> 21
3024
+ sqtx8034 squareroot 484 -> 22
3025
+ sqtx8035 squareroot 529 -> 23
3026
+ sqtx8036 squareroot 576 -> 24
3027
+ sqtx8037 squareroot 625 -> 25
3028
+ sqtx8038 squareroot 676 -> 26
3029
+ sqtx8039 squareroot 729 -> 27
3030
+ sqtx8040 squareroot 784 -> 28
3031
+ sqtx8041 squareroot 841 -> 29
3032
+ sqtx8042 squareroot 900 -> 30
3033
+ sqtx8043 squareroot 961 -> 31
3034
+ sqtx8044 squareroot 1024 -> 32
3035
+ sqtx8045 squareroot 1089 -> 33
3036
+ sqtx8046 squareroot 1156 -> 34
3037
+ sqtx8047 squareroot 1225 -> 35
3038
+ sqtx8048 squareroot 1296 -> 36
3039
+ sqtx8049 squareroot 1369 -> 37
3040
+ sqtx8050 squareroot 1444 -> 38
3041
+ sqtx8051 squareroot 1521 -> 39
3042
+ sqtx8052 squareroot 1600 -> 40
3043
+ sqtx8053 squareroot 1681 -> 41
3044
+ sqtx8054 squareroot 1764 -> 42
3045
+ sqtx8055 squareroot 1849 -> 43
3046
+ sqtx8056 squareroot 1936 -> 44
3047
+ sqtx8057 squareroot 2025 -> 45
3048
+ sqtx8058 squareroot 2116 -> 46
3049
+ sqtx8059 squareroot 2209 -> 47
3050
+ sqtx8060 squareroot 2304 -> 48
3051
+ sqtx8061 squareroot 2401 -> 49
3052
+ sqtx8062 squareroot 2500 -> 50
3053
+ sqtx8063 squareroot 2601 -> 51
3054
+ sqtx8064 squareroot 2704 -> 52
3055
+ sqtx8065 squareroot 2809 -> 53
3056
+ sqtx8066 squareroot 2916 -> 54
3057
+ sqtx8067 squareroot 3025 -> 55
3058
+ sqtx8068 squareroot 3136 -> 56
3059
+ sqtx8069 squareroot 3249 -> 57
3060
+ sqtx8070 squareroot 3364 -> 58
3061
+ sqtx8071 squareroot 3481 -> 59
3062
+ sqtx8072 squareroot 3600 -> 60
3063
+ sqtx8073 squareroot 3721 -> 61
3064
+ sqtx8074 squareroot 3844 -> 62
3065
+ sqtx8075 squareroot 3969 -> 63
3066
+ sqtx8076 squareroot 4096 -> 64
3067
+ sqtx8077 squareroot 4225 -> 65
3068
+ sqtx8078 squareroot 4356 -> 66
3069
+ sqtx8079 squareroot 4489 -> 67
3070
+ sqtx8080 squareroot 4624 -> 68
3071
+ sqtx8081 squareroot 4761 -> 69
3072
+ sqtx8082 squareroot 4900 -> 70
3073
+ sqtx8083 squareroot 5041 -> 71
3074
+ sqtx8084 squareroot 5184 -> 72
3075
+ sqtx8085 squareroot 5329 -> 73
3076
+ sqtx8086 squareroot 5476 -> 74
3077
+ sqtx8087 squareroot 5625 -> 75
3078
+ sqtx8088 squareroot 5776 -> 76
3079
+ sqtx8089 squareroot 5929 -> 77
3080
+ sqtx8090 squareroot 6084 -> 78
3081
+ sqtx8091 squareroot 6241 -> 79
3082
+ sqtx8092 squareroot 6400 -> 80
3083
+ sqtx8093 squareroot 6561 -> 81
3084
+ sqtx8094 squareroot 6724 -> 82
3085
+ sqtx8095 squareroot 6889 -> 83
3086
+ sqtx8096 squareroot 7056 -> 84
3087
+ sqtx8097 squareroot 7225 -> 85
3088
+ sqtx8098 squareroot 7396 -> 86
3089
+ sqtx8099 squareroot 7569 -> 87
3090
+ sqtx8100 squareroot 7744 -> 88
3091
+ sqtx8101 squareroot 7921 -> 89
3092
+ sqtx8102 squareroot 8100 -> 90
3093
+ sqtx8103 squareroot 8281 -> 91
3094
+ sqtx8104 squareroot 8464 -> 92
3095
+ sqtx8105 squareroot 8649 -> 93
3096
+ sqtx8106 squareroot 8836 -> 94
3097
+ sqtx8107 squareroot 9025 -> 95
3098
+ sqtx8108 squareroot 9216 -> 96
3099
+ sqtx8109 squareroot 9409 -> 97
3100
+ sqtx8110 squareroot 9604 -> 98
3101
+ sqtx8111 squareroot 9801 -> 99
3102
+ sqtx8112 squareroot 10000 -> 1.0E+2 Rounded
3103
+ sqtx8113 squareroot 10201 -> 1.0E+2 Inexact Rounded
3104
+
3105
+ precision: 3
3106
+ sqtx8114 squareroot 841 -> 29
3107
+ sqtx8115 squareroot 1600 -> 40
3108
+ sqtx8116 squareroot 2209 -> 47
3109
+ sqtx8117 squareroot 9604 -> 98
3110
+ sqtx8118 squareroot 21316 -> 146
3111
+ sqtx8119 squareroot 52441 -> 229
3112
+ sqtx8120 squareroot 68644 -> 262
3113
+ sqtx8121 squareroot 69696 -> 264
3114
+ sqtx8122 squareroot 70225 -> 265
3115
+ sqtx8123 squareroot 76729 -> 277
3116
+ sqtx8124 squareroot 130321 -> 361
3117
+ sqtx8125 squareroot 171396 -> 414
3118
+ sqtx8126 squareroot 270400 -> 520
3119
+ sqtx8127 squareroot 279841 -> 529
3120
+ sqtx8128 squareroot 407044 -> 638
3121
+ sqtx8129 squareroot 408321 -> 639
3122
+ sqtx8130 squareroot 480249 -> 693
3123
+ sqtx8131 squareroot 516961 -> 719
3124
+ sqtx8132 squareroot 692224 -> 832
3125
+ sqtx8133 squareroot 829921 -> 911
3126
+
3127
+ -- selection of random exact results
3128
+ precision: 6
3129
+ sqtx8134 squareroot 2.25E-12 -> 0.0000015
3130
+ sqtx8135 squareroot 8.41E-14 -> 2.9E-7
3131
+ sqtx8136 squareroot 6.241E-15 -> 7.9E-8
3132
+ sqtx8137 squareroot 5.041E+13 -> 7.1E+6
3133
+ sqtx8138 squareroot 4761 -> 69
3134
+ sqtx8139 squareroot 1.369E+17 -> 3.7E+8
3135
+ sqtx8140 squareroot 0.00002116 -> 0.0046
3136
+ sqtx8141 squareroot 7.29E+4 -> 2.7E+2
3137
+ sqtx8142 squareroot 4.624E-13 -> 6.8E-7
3138
+ sqtx8143 squareroot 3.969E+5 -> 6.3E+2
3139
+ sqtx8144 squareroot 3.73321E-11 -> 0.00000611
3140
+ sqtx8145 squareroot 5.61001E+17 -> 7.49E+8
3141
+ sqtx8146 squareroot 2.30400E-11 -> 0.00000480
3142
+ sqtx8147 squareroot 4.30336E+17 -> 6.56E+8
3143
+ sqtx8148 squareroot 0.057121 -> 0.239
3144
+ sqtx8149 squareroot 7.225E+17 -> 8.5E+8
3145
+ sqtx8150 squareroot 3.14721E+13 -> 5.61E+6
3146
+ sqtx8151 squareroot 4.61041E+17 -> 6.79E+8
3147
+ sqtx8152 squareroot 1.39876E-15 -> 3.74E-8
3148
+ sqtx8153 squareroot 6.19369E-9 -> 0.0000787
3149
+ sqtx8154 squareroot 1.620529E-10 -> 0.00001273
3150
+ sqtx8155 squareroot 1177.1761 -> 34.31
3151
+ sqtx8156 squareroot 67043344 -> 8188
3152
+ sqtx8157 squareroot 4.84E+6 -> 2.2E+3
3153
+ sqtx8158 squareroot 1.23904E+11 -> 3.52E+5
3154
+ sqtx8159 squareroot 32604100 -> 5710
3155
+ sqtx8160 squareroot 2.9757025E-11 -> 0.000005455
3156
+ sqtx8161 squareroot 6.3760225E-9 -> 0.00007985
3157
+ sqtx8162 squareroot 4.5198729E-11 -> 0.000006723
3158
+ sqtx8163 squareroot 1.4745600E-11 -> 0.000003840
3159
+ sqtx8164 squareroot 18964283.04 -> 4354.8
3160
+ sqtx8165 squareroot 3.308895529E+13 -> 5.7523E+6
3161
+ sqtx8166 squareroot 0.0028590409 -> 0.05347
3162
+ sqtx8167 squareroot 3572.213824 -> 59.768
3163
+ sqtx8168 squareroot 4.274021376E+15 -> 6.5376E+7
3164
+ sqtx8169 squareroot 4455476.64 -> 2110.8
3165
+ sqtx8170 squareroot 38.44 -> 6.2
3166
+ sqtx8171 squareroot 68.558400 -> 8.280
3167
+ sqtx8172 squareroot 715402009 -> 26747
3168
+ sqtx8173 squareroot 93.373569 -> 9.663
3169
+ sqtx8174 squareroot 2.62144000000E+15 -> 5.12000E+7
3170
+ sqtx8175 squareroot 7.48225000000E+15 -> 8.65000E+7
3171
+ sqtx8176 squareroot 3.38724000000E-9 -> 0.0000582000
3172
+ sqtx8177 squareroot 5.64001000000E-13 -> 7.51000E-7
3173
+ sqtx8178 squareroot 5.06944000000E-15 -> 7.12000E-8
3174
+ sqtx8179 squareroot 4.95616000000E+17 -> 7.04000E+8
3175
+ sqtx8180 squareroot 0.0000242064000000 -> 0.00492000
3176
+ sqtx8181 squareroot 1.48996000000E-15 -> 3.86000E-8
3177
+ sqtx8182 squareroot 9.37024000000E+17 -> 9.68000E+8
3178
+ sqtx8183 squareroot 7128900.0000 -> 2670.00
3179
+ sqtx8184 squareroot 8.2311610000E-10 -> 0.0000286900
3180
+ sqtx8185 squareroot 482747040000 -> 694800
3181
+ sqtx8186 squareroot 4.14478440000E+17 -> 6.43800E+8
3182
+ sqtx8187 squareroot 5.10510250000E-7 -> 0.000714500
3183
+ sqtx8188 squareroot 355096.810000 -> 595.900
3184
+ sqtx8189 squareroot 14288400.0000 -> 3780.00
3185
+ sqtx8190 squareroot 3.36168040000E-15 -> 5.79800E-8
3186
+ sqtx8191 squareroot 1.70899560000E-13 -> 4.13400E-7
3187
+ sqtx8192 squareroot 0.0000378348010000 -> 0.00615100
3188
+ sqtx8193 squareroot 2.00972890000E-13 -> 4.48300E-7
3189
+ sqtx8194 squareroot 4.07222659600E-13 -> 6.38140E-7
3190
+ sqtx8195 squareroot 131486012100 -> 362610
3191
+ sqtx8196 squareroot 818192611600 -> 904540
3192
+ sqtx8197 squareroot 9.8558323600E+16 -> 3.13940E+8
3193
+ sqtx8198 squareroot 5641.06144900 -> 75.1070
3194
+ sqtx8199 squareroot 4.58789475600E+17 -> 6.77340E+8
3195
+ sqtx8200 squareroot 3.21386948100E-9 -> 0.0000566910
3196
+ sqtx8201 squareroot 3.9441960000E-8 -> 0.000198600
3197
+ sqtx8202 squareroot 242723.728900 -> 492.670
3198
+ sqtx8203 squareroot 1874.89000000 -> 43.3000
3199
+ sqtx8204 squareroot 2.56722595684E+15 -> 5.06678E+7
3200
+ sqtx8205 squareroot 3.96437714689E-17 -> 6.29633E-9
3201
+ sqtx8206 squareroot 3.80106774784E-17 -> 6.16528E-9
3202
+ sqtx8207 squareroot 1.42403588496E-13 -> 3.77364E-7
3203
+ sqtx8208 squareroot 4604.84388100 -> 67.8590
3204
+ sqtx8209 squareroot 2157100869.16 -> 46444.6
3205
+ sqtx8210 squareroot 355288570.81 -> 18849.1
3206
+ sqtx8211 squareroot 4.69775901604E-11 -> 0.00000685402
3207
+ sqtx8212 squareroot 8.22115770436E+17 -> 9.06706E+8
3208
+ sqtx8213 squareroot 7.16443744900E+15 -> 8.46430E+7
3209
+ sqtx8214 squareroot 9.48995498896E+15 -> 9.74164E+7
3210
+ sqtx8215 squareroot 0.0000419091801129 -> 0.00647373
3211
+ sqtx8216 squareroot 5862627996.84 -> 76567.8
3212
+ sqtx8217 squareroot 9369537.3409 -> 3060.97
3213
+ sqtx8218 squareroot 7.74792529729E+17 -> 8.80223E+8
3214
+ sqtx8219 squareroot 1.08626931396E+17 -> 3.29586E+8
3215
+ sqtx8220 squareroot 8.89584739684E-7 -> 0.000943178
3216
+ sqtx8221 squareroot 4.0266040896E-18 -> 2.00664E-9
3217
+ sqtx8222 squareroot 9.27669480336E-7 -> 0.000963156
3218
+ sqtx8223 squareroot 0.00225497717956 -> 0.0474866
3219
+
3220
+ -- test use of round-half-even for ties
3221
+ precision: 1
3222
+ sqtx8224 squareroot 225 -> 2E+1 Inexact Rounded
3223
+ sqtx8225 squareroot 625 -> 2E+1 Inexact Rounded
3224
+ sqtx8226 squareroot 1225 -> 4E+1 Inexact Rounded
3225
+ sqtx8227 squareroot 2025 -> 4E+1 Inexact Rounded
3226
+ sqtx8228 squareroot 3025 -> 6E+1 Inexact Rounded
3227
+ sqtx8229 squareroot 4225 -> 6E+1 Inexact Rounded
3228
+ sqtx8230 squareroot 5625 -> 8E+1 Inexact Rounded
3229
+ sqtx8231 squareroot 7225 -> 8E+1 Inexact Rounded
3230
+ sqtx8232 squareroot 9025 -> 1E+2 Inexact Rounded
3231
+
3232
+ precision: 2
3233
+ sqtx8233 squareroot 11025 -> 1.0E+2 Inexact Rounded
3234
+ sqtx8234 squareroot 13225 -> 1.2E+2 Inexact Rounded
3235
+ sqtx8235 squareroot 15625 -> 1.2E+2 Inexact Rounded
3236
+ sqtx8236 squareroot 18225 -> 1.4E+2 Inexact Rounded
3237
+ sqtx8237 squareroot 21025 -> 1.4E+2 Inexact Rounded
3238
+ sqtx8238 squareroot 24025 -> 1.6E+2 Inexact Rounded
3239
+ sqtx8239 squareroot 27225 -> 1.6E+2 Inexact Rounded
3240
+ sqtx8240 squareroot 30625 -> 1.8E+2 Inexact Rounded
3241
+ sqtx8241 squareroot 34225 -> 1.8E+2 Inexact Rounded
3242
+ sqtx8242 squareroot 38025 -> 2.0E+2 Inexact Rounded
3243
+ sqtx8243 squareroot 42025 -> 2.0E+2 Inexact Rounded
3244
+ sqtx8244 squareroot 46225 -> 2.2E+2 Inexact Rounded
3245
+ sqtx8245 squareroot 50625 -> 2.2E+2 Inexact Rounded
3246
+ sqtx8246 squareroot 55225 -> 2.4E+2 Inexact Rounded
3247
+ sqtx8247 squareroot 60025 -> 2.4E+2 Inexact Rounded
3248
+ sqtx8248 squareroot 65025 -> 2.6E+2 Inexact Rounded
3249
+ sqtx8249 squareroot 70225 -> 2.6E+2 Inexact Rounded
3250
+ sqtx8250 squareroot 75625 -> 2.8E+2 Inexact Rounded
3251
+ sqtx8251 squareroot 81225 -> 2.8E+2 Inexact Rounded
3252
+ sqtx8252 squareroot 87025 -> 3.0E+2 Inexact Rounded
3253
+ sqtx8253 squareroot 93025 -> 3.0E+2 Inexact Rounded
3254
+ sqtx8254 squareroot 99225 -> 3.2E+2 Inexact Rounded
3255
+ sqtx8255 squareroot 105625 -> 3.2E+2 Inexact Rounded
3256
+ sqtx8256 squareroot 112225 -> 3.4E+2 Inexact Rounded
3257
+ sqtx8257 squareroot 119025 -> 3.4E+2 Inexact Rounded
3258
+ sqtx8258 squareroot 126025 -> 3.6E+2 Inexact Rounded
3259
+ sqtx8259 squareroot 133225 -> 3.6E+2 Inexact Rounded
3260
+ sqtx8260 squareroot 140625 -> 3.8E+2 Inexact Rounded
3261
+ sqtx8261 squareroot 148225 -> 3.8E+2 Inexact Rounded
3262
+ sqtx8262 squareroot 156025 -> 4.0E+2 Inexact Rounded
3263
+ sqtx8263 squareroot 164025 -> 4.0E+2 Inexact Rounded
3264
+ sqtx8264 squareroot 172225 -> 4.2E+2 Inexact Rounded
3265
+ sqtx8265 squareroot 180625 -> 4.2E+2 Inexact Rounded
3266
+ sqtx8266 squareroot 189225 -> 4.4E+2 Inexact Rounded
3267
+ sqtx8267 squareroot 198025 -> 4.4E+2 Inexact Rounded
3268
+ sqtx8268 squareroot 207025 -> 4.6E+2 Inexact Rounded
3269
+ sqtx8269 squareroot 216225 -> 4.6E+2 Inexact Rounded
3270
+ sqtx8270 squareroot 225625 -> 4.8E+2 Inexact Rounded
3271
+ sqtx8271 squareroot 235225 -> 4.8E+2 Inexact Rounded
3272
+ sqtx8272 squareroot 245025 -> 5.0E+2 Inexact Rounded
3273
+ sqtx8273 squareroot 255025 -> 5.0E+2 Inexact Rounded
3274
+ sqtx8274 squareroot 265225 -> 5.2E+2 Inexact Rounded
3275
+ sqtx8275 squareroot 275625 -> 5.2E+2 Inexact Rounded
3276
+ sqtx8276 squareroot 286225 -> 5.4E+2 Inexact Rounded
3277
+ sqtx8277 squareroot 297025 -> 5.4E+2 Inexact Rounded
3278
+ sqtx8278 squareroot 308025 -> 5.6E+2 Inexact Rounded
3279
+ sqtx8279 squareroot 319225 -> 5.6E+2 Inexact Rounded
3280
+ sqtx8280 squareroot 330625 -> 5.8E+2 Inexact Rounded
3281
+ sqtx8281 squareroot 342225 -> 5.8E+2 Inexact Rounded
3282
+ sqtx8282 squareroot 354025 -> 6.0E+2 Inexact Rounded
3283
+ sqtx8283 squareroot 366025 -> 6.0E+2 Inexact Rounded
3284
+ sqtx8284 squareroot 378225 -> 6.2E+2 Inexact Rounded
3285
+ sqtx8285 squareroot 390625 -> 6.2E+2 Inexact Rounded
3286
+ sqtx8286 squareroot 403225 -> 6.4E+2 Inexact Rounded
3287
+ sqtx8287 squareroot 416025 -> 6.4E+2 Inexact Rounded
3288
+ sqtx8288 squareroot 429025 -> 6.6E+2 Inexact Rounded
3289
+ sqtx8289 squareroot 442225 -> 6.6E+2 Inexact Rounded
3290
+ sqtx8290 squareroot 455625 -> 6.8E+2 Inexact Rounded
3291
+ sqtx8291 squareroot 469225 -> 6.8E+2 Inexact Rounded
3292
+ sqtx8292 squareroot 483025 -> 7.0E+2 Inexact Rounded
3293
+ sqtx8293 squareroot 497025 -> 7.0E+2 Inexact Rounded
3294
+ sqtx8294 squareroot 511225 -> 7.2E+2 Inexact Rounded
3295
+ sqtx8295 squareroot 525625 -> 7.2E+2 Inexact Rounded
3296
+ sqtx8296 squareroot 540225 -> 7.4E+2 Inexact Rounded
3297
+ sqtx8297 squareroot 555025 -> 7.4E+2 Inexact Rounded
3298
+ sqtx8298 squareroot 570025 -> 7.6E+2 Inexact Rounded
3299
+ sqtx8299 squareroot 585225 -> 7.6E+2 Inexact Rounded
3300
+ sqtx8300 squareroot 600625 -> 7.8E+2 Inexact Rounded
3301
+ sqtx8301 squareroot 616225 -> 7.8E+2 Inexact Rounded
3302
+ sqtx8302 squareroot 632025 -> 8.0E+2 Inexact Rounded
3303
+ sqtx8303 squareroot 648025 -> 8.0E+2 Inexact Rounded
3304
+ sqtx8304 squareroot 664225 -> 8.2E+2 Inexact Rounded
3305
+ sqtx8305 squareroot 680625 -> 8.2E+2 Inexact Rounded
3306
+ sqtx8306 squareroot 697225 -> 8.4E+2 Inexact Rounded
3307
+ sqtx8307 squareroot 714025 -> 8.4E+2 Inexact Rounded
3308
+ sqtx8308 squareroot 731025 -> 8.6E+2 Inexact Rounded
3309
+ sqtx8309 squareroot 748225 -> 8.6E+2 Inexact Rounded
3310
+ sqtx8310 squareroot 765625 -> 8.8E+2 Inexact Rounded
3311
+ sqtx8311 squareroot 783225 -> 8.8E+2 Inexact Rounded
3312
+ sqtx8312 squareroot 801025 -> 9.0E+2 Inexact Rounded
3313
+ sqtx8313 squareroot 819025 -> 9.0E+2 Inexact Rounded
3314
+ sqtx8314 squareroot 837225 -> 9.2E+2 Inexact Rounded
3315
+ sqtx8315 squareroot 855625 -> 9.2E+2 Inexact Rounded
3316
+ sqtx8316 squareroot 874225 -> 9.4E+2 Inexact Rounded
3317
+ sqtx8317 squareroot 893025 -> 9.4E+2 Inexact Rounded
3318
+ sqtx8318 squareroot 912025 -> 9.6E+2 Inexact Rounded
3319
+ sqtx8319 squareroot 931225 -> 9.6E+2 Inexact Rounded
3320
+ sqtx8320 squareroot 950625 -> 9.8E+2 Inexact Rounded
3321
+ sqtx8321 squareroot 970225 -> 9.8E+2 Inexact Rounded
3322
+ sqtx8322 squareroot 990025 -> 1.0E+3 Inexact Rounded
3323
+
3324
+ precision: 6
3325
+ sqtx8323 squareroot 88975734963025 -> 9.43270E+6 Inexact Rounded
3326
+ sqtx8324 squareroot 71085555000625 -> 8.43122E+6 Inexact Rounded
3327
+ sqtx8325 squareroot 39994304.051025 -> 6324.10 Inexact Rounded
3328
+ sqtx8326 squareroot 0.000007327172265625 -> 0.00270688 Inexact Rounded
3329
+ sqtx8327 squareroot 1.0258600439025E-13 -> 3.20290E-7 Inexact Rounded
3330
+ sqtx8328 squareroot 0.0034580574275625 -> 0.0588052 Inexact Rounded
3331
+ sqtx8329 squareroot 7.6842317700625E-7 -> 0.000876598 Inexact Rounded
3332
+ sqtx8330 squareroot 1263834495.2025 -> 35550.4 Inexact Rounded
3333
+ sqtx8331 squareroot 433970666460.25 -> 658764 Inexact Rounded
3334
+ sqtx8332 squareroot 4.5879286230625E-7 -> 0.000677342 Inexact Rounded
3335
+ sqtx8333 squareroot 0.0029305603306225 -> 0.0541346 Inexact Rounded
3336
+ sqtx8334 squareroot 70218282.733225 -> 8379.64 Inexact Rounded
3337
+ sqtx8335 squareroot 11942519.082025 -> 3455.80 Inexact Rounded
3338
+ sqtx8336 squareroot 0.0021230668905625 -> 0.0460768 Inexact Rounded
3339
+ sqtx8337 squareroot 0.90081833411025 -> 0.949114 Inexact Rounded
3340
+ sqtx8338 squareroot 5.5104120936225E-17 -> 7.42322E-9 Inexact Rounded
3341
+ sqtx8339 squareroot 0.10530446854225 -> 0.324506 Inexact Rounded
3342
+ sqtx8340 squareroot 8.706069866025E-14 -> 2.95060E-7 Inexact Rounded
3343
+ sqtx8341 squareroot 23838.58800625 -> 154.398 Inexact Rounded
3344
+ sqtx8342 squareroot 0.0013426911275625 -> 0.0366428 Inexact Rounded
3345
+
3346
+ -- test use of round-half-even in underflow situations
3347
+
3348
+ -- precisions 2; all cases where result is both subnormal and a tie
3349
+ precision: 2
3350
+ sqtx8343 squareroot 2.5E-21 -> 0E-10 Underflow Subnormal Inexact Rounded Clamped
3351
+ sqtx8344 squareroot 2.25E-20 -> 2E-10 Underflow Subnormal Inexact Rounded
3352
+ sqtx8345 squareroot 6.25E-20 -> 2E-10 Underflow Subnormal Inexact Rounded
3353
+ sqtx8346 squareroot 1.225E-19 -> 4E-10 Underflow Subnormal Inexact Rounded
3354
+ sqtx8347 squareroot 2.025E-19 -> 4E-10 Underflow Subnormal Inexact Rounded
3355
+ sqtx8348 squareroot 3.025E-19 -> 6E-10 Underflow Subnormal Inexact Rounded
3356
+ sqtx8349 squareroot 4.225E-19 -> 6E-10 Underflow Subnormal Inexact Rounded
3357
+ sqtx8350 squareroot 5.625E-19 -> 8E-10 Underflow Subnormal Inexact Rounded
3358
+ sqtx8351 squareroot 7.225E-19 -> 8E-10 Underflow Subnormal Inexact Rounded
3359
+ sqtx8352 squareroot 9.025E-19 -> 1.0E-9 Underflow Subnormal Inexact Rounded
3360
+
3361
+ -- precision 3, input precision <= 5
3362
+ precision: 3
3363
+ sqtx8353 squareroot 2.5E-23 -> 0E-11 Underflow Subnormal Inexact Rounded Clamped
3364
+ sqtx8354 squareroot 2.25E-22 -> 2E-11 Underflow Subnormal Inexact Rounded
3365
+ sqtx8355 squareroot 6.25E-22 -> 2E-11 Underflow Subnormal Inexact Rounded
3366
+ sqtx8356 squareroot 1.225E-21 -> 4E-11 Underflow Subnormal Inexact Rounded
3367
+ sqtx8357 squareroot 2.025E-21 -> 4E-11 Underflow Subnormal Inexact Rounded
3368
+ sqtx8358 squareroot 3.025E-21 -> 6E-11 Underflow Subnormal Inexact Rounded
3369
+ sqtx8359 squareroot 4.225E-21 -> 6E-11 Underflow Subnormal Inexact Rounded
3370
+ sqtx8360 squareroot 5.625E-21 -> 8E-11 Underflow Subnormal Inexact Rounded
3371
+ sqtx8361 squareroot 7.225E-21 -> 8E-11 Underflow Subnormal Inexact Rounded
3372
+ sqtx8362 squareroot 9.025E-21 -> 1.0E-10 Underflow Subnormal Inexact Rounded
3373
+ sqtx8363 squareroot 1.1025E-20 -> 1.0E-10 Underflow Subnormal Inexact Rounded
3374
+ sqtx8364 squareroot 1.3225E-20 -> 1.2E-10 Underflow Subnormal Inexact Rounded
3375
+ sqtx8365 squareroot 1.5625E-20 -> 1.2E-10 Underflow Subnormal Inexact Rounded
3376
+ sqtx8366 squareroot 1.8225E-20 -> 1.4E-10 Underflow Subnormal Inexact Rounded
3377
+ sqtx8367 squareroot 2.1025E-20 -> 1.4E-10 Underflow Subnormal Inexact Rounded
3378
+ sqtx8368 squareroot 2.4025E-20 -> 1.6E-10 Underflow Subnormal Inexact Rounded
3379
+ sqtx8369 squareroot 2.7225E-20 -> 1.6E-10 Underflow Subnormal Inexact Rounded
3380
+ sqtx8370 squareroot 3.0625E-20 -> 1.8E-10 Underflow Subnormal Inexact Rounded
3381
+ sqtx8371 squareroot 3.4225E-20 -> 1.8E-10 Underflow Subnormal Inexact Rounded
3382
+ sqtx8372 squareroot 3.8025E-20 -> 2.0E-10 Underflow Subnormal Inexact Rounded
3383
+ sqtx8373 squareroot 4.2025E-20 -> 2.0E-10 Underflow Subnormal Inexact Rounded
3384
+ sqtx8374 squareroot 4.6225E-20 -> 2.2E-10 Underflow Subnormal Inexact Rounded
3385
+ sqtx8375 squareroot 5.0625E-20 -> 2.2E-10 Underflow Subnormal Inexact Rounded
3386
+ sqtx8376 squareroot 5.5225E-20 -> 2.4E-10 Underflow Subnormal Inexact Rounded
3387
+ sqtx8377 squareroot 6.0025E-20 -> 2.4E-10 Underflow Subnormal Inexact Rounded
3388
+ sqtx8378 squareroot 6.5025E-20 -> 2.6E-10 Underflow Subnormal Inexact Rounded
3389
+ sqtx8379 squareroot 7.0225E-20 -> 2.6E-10 Underflow Subnormal Inexact Rounded
3390
+ sqtx8380 squareroot 7.5625E-20 -> 2.8E-10 Underflow Subnormal Inexact Rounded
3391
+ sqtx8381 squareroot 8.1225E-20 -> 2.8E-10 Underflow Subnormal Inexact Rounded
3392
+ sqtx8382 squareroot 8.7025E-20 -> 3.0E-10 Underflow Subnormal Inexact Rounded
3393
+ sqtx8383 squareroot 9.3025E-20 -> 3.0E-10 Underflow Subnormal Inexact Rounded
3394
+ sqtx8384 squareroot 9.9225E-20 -> 3.2E-10 Underflow Subnormal Inexact Rounded
3395
+
3396
+ --precision 4, input precision <= 4
3397
+ precision: 4
3398
+ sqtx8385 squareroot 2.5E-25 -> 0E-12 Underflow Subnormal Inexact Rounded Clamped
3399
+ sqtx8386 squareroot 2.25E-24 -> 2E-12 Underflow Subnormal Inexact Rounded
3400
+ sqtx8387 squareroot 6.25E-24 -> 2E-12 Underflow Subnormal Inexact Rounded
3401
+ sqtx8388 squareroot 1.225E-23 -> 4E-12 Underflow Subnormal Inexact Rounded
3402
+ sqtx8389 squareroot 2.025E-23 -> 4E-12 Underflow Subnormal Inexact Rounded
3403
+ sqtx8390 squareroot 3.025E-23 -> 6E-12 Underflow Subnormal Inexact Rounded
3404
+ sqtx8391 squareroot 4.225E-23 -> 6E-12 Underflow Subnormal Inexact Rounded
3405
+ sqtx8392 squareroot 5.625E-23 -> 8E-12 Underflow Subnormal Inexact Rounded
3406
+ sqtx8393 squareroot 7.225E-23 -> 8E-12 Underflow Subnormal Inexact Rounded
3407
+ sqtx8394 squareroot 9.025E-23 -> 1.0E-11 Underflow Subnormal Inexact Rounded
3408
+
3409
+ --precision 5, input precision <= 5
3410
+ precision: 5
3411
+ sqtx8395 squareroot 2.5E-27 -> 0E-13 Underflow Subnormal Inexact Rounded Clamped
3412
+ sqtx8396 squareroot 2.25E-26 -> 2E-13 Underflow Subnormal Inexact Rounded
3413
+ sqtx8397 squareroot 6.25E-26 -> 2E-13 Underflow Subnormal Inexact Rounded
3414
+ sqtx8398 squareroot 1.225E-25 -> 4E-13 Underflow Subnormal Inexact Rounded
3415
+ sqtx8399 squareroot 2.025E-25 -> 4E-13 Underflow Subnormal Inexact Rounded
3416
+ sqtx8400 squareroot 3.025E-25 -> 6E-13 Underflow Subnormal Inexact Rounded
3417
+ sqtx8401 squareroot 4.225E-25 -> 6E-13 Underflow Subnormal Inexact Rounded
3418
+ sqtx8402 squareroot 5.625E-25 -> 8E-13 Underflow Subnormal Inexact Rounded
3419
+ sqtx8403 squareroot 7.225E-25 -> 8E-13 Underflow Subnormal Inexact Rounded
3420
+ sqtx8404 squareroot 9.025E-25 -> 1.0E-12 Underflow Subnormal Inexact Rounded
3421
+ sqtx8405 squareroot 1.1025E-24 -> 1.0E-12 Underflow Subnormal Inexact Rounded
3422
+ sqtx8406 squareroot 1.3225E-24 -> 1.2E-12 Underflow Subnormal Inexact Rounded
3423
+ sqtx8407 squareroot 1.5625E-24 -> 1.2E-12 Underflow Subnormal Inexact Rounded
3424
+ sqtx8408 squareroot 1.8225E-24 -> 1.4E-12 Underflow Subnormal Inexact Rounded
3425
+ sqtx8409 squareroot 2.1025E-24 -> 1.4E-12 Underflow Subnormal Inexact Rounded
3426
+ sqtx8410 squareroot 2.4025E-24 -> 1.6E-12 Underflow Subnormal Inexact Rounded
3427
+ sqtx8411 squareroot 2.7225E-24 -> 1.6E-12 Underflow Subnormal Inexact Rounded
3428
+ sqtx8412 squareroot 3.0625E-24 -> 1.8E-12 Underflow Subnormal Inexact Rounded
3429
+ sqtx8413 squareroot 3.4225E-24 -> 1.8E-12 Underflow Subnormal Inexact Rounded
3430
+ sqtx8414 squareroot 3.8025E-24 -> 2.0E-12 Underflow Subnormal Inexact Rounded
3431
+ sqtx8415 squareroot 4.2025E-24 -> 2.0E-12 Underflow Subnormal Inexact Rounded
3432
+ sqtx8416 squareroot 4.6225E-24 -> 2.2E-12 Underflow Subnormal Inexact Rounded
3433
+ sqtx8417 squareroot 5.0625E-24 -> 2.2E-12 Underflow Subnormal Inexact Rounded
3434
+ sqtx8418 squareroot 5.5225E-24 -> 2.4E-12 Underflow Subnormal Inexact Rounded
3435
+ sqtx8419 squareroot 6.0025E-24 -> 2.4E-12 Underflow Subnormal Inexact Rounded
3436
+ sqtx8420 squareroot 6.5025E-24 -> 2.6E-12 Underflow Subnormal Inexact Rounded
3437
+ sqtx8421 squareroot 7.0225E-24 -> 2.6E-12 Underflow Subnormal Inexact Rounded
3438
+ sqtx8422 squareroot 7.5625E-24 -> 2.8E-12 Underflow Subnormal Inexact Rounded
3439
+ sqtx8423 squareroot 8.1225E-24 -> 2.8E-12 Underflow Subnormal Inexact Rounded
3440
+ sqtx8424 squareroot 8.7025E-24 -> 3.0E-12 Underflow Subnormal Inexact Rounded
3441
+ sqtx8425 squareroot 9.3025E-24 -> 3.0E-12 Underflow Subnormal Inexact Rounded
3442
+ sqtx8426 squareroot 9.9225E-24 -> 3.2E-12 Underflow Subnormal Inexact Rounded
3443
+
3444
+ -- a random selection of values that Python2.5.1 rounds incorrectly
3445
+ precision: 1
3446
+ sqtx8427 squareroot 227 -> 2E+1 Inexact Rounded
3447
+ sqtx8428 squareroot 625 -> 2E+1 Inexact Rounded
3448
+ sqtx8429 squareroot 1215 -> 3E+1 Inexact Rounded
3449
+ sqtx8430 squareroot 2008 -> 4E+1 Inexact Rounded
3450
+ sqtx8431 squareroot 2020 -> 4E+1 Inexact Rounded
3451
+ sqtx8432 squareroot 2026 -> 5E+1 Inexact Rounded
3452
+ sqtx8433 squareroot 2027 -> 5E+1 Inexact Rounded
3453
+ sqtx8434 squareroot 2065 -> 5E+1 Inexact Rounded
3454
+ sqtx8435 squareroot 2075 -> 5E+1 Inexact Rounded
3455
+ sqtx8436 squareroot 2088 -> 5E+1 Inexact Rounded
3456
+ sqtx8437 squareroot 3049 -> 6E+1 Inexact Rounded
3457
+ sqtx8438 squareroot 3057 -> 6E+1 Inexact Rounded
3458
+ sqtx8439 squareroot 3061 -> 6E+1 Inexact Rounded
3459
+ sqtx8440 squareroot 3092 -> 6E+1 Inexact Rounded
3460
+ sqtx8441 squareroot 4222 -> 6E+1 Inexact Rounded
3461
+ sqtx8442 squareroot 5676 -> 8E+1 Inexact Rounded
3462
+ sqtx8443 squareroot 5686 -> 8E+1 Inexact Rounded
3463
+ sqtx8444 squareroot 7215 -> 8E+1 Inexact Rounded
3464
+ sqtx8445 squareroot 9086 -> 1E+2 Inexact Rounded
3465
+ sqtx8446 squareroot 9095 -> 1E+2 Inexact Rounded
3466
+
3467
+ precision: 2
3468
+ sqtx8447 squareroot 1266 -> 36 Inexact Rounded
3469
+ sqtx8448 squareroot 2552 -> 51 Inexact Rounded
3470
+ sqtx8449 squareroot 5554 -> 75 Inexact Rounded
3471
+ sqtx8450 squareroot 7832 -> 88 Inexact Rounded
3472
+ sqtx8451 squareroot 13201 -> 1.1E+2 Inexact Rounded
3473
+ sqtx8452 squareroot 15695 -> 1.3E+2 Inexact Rounded
3474
+ sqtx8453 squareroot 18272 -> 1.4E+2 Inexact Rounded
3475
+ sqtx8454 squareroot 21026 -> 1.5E+2 Inexact Rounded
3476
+ sqtx8455 squareroot 24069 -> 1.6E+2 Inexact Rounded
3477
+ sqtx8456 squareroot 34277 -> 1.9E+2 Inexact Rounded
3478
+ sqtx8457 squareroot 46233 -> 2.2E+2 Inexact Rounded
3479
+ sqtx8458 squareroot 46251 -> 2.2E+2 Inexact Rounded
3480
+ sqtx8459 squareroot 46276 -> 2.2E+2 Inexact Rounded
3481
+ sqtx8460 squareroot 70214 -> 2.6E+2 Inexact Rounded
3482
+ sqtx8461 squareroot 81249 -> 2.9E+2 Inexact Rounded
3483
+ sqtx8462 squareroot 81266 -> 2.9E+2 Inexact Rounded
3484
+ sqtx8463 squareroot 93065 -> 3.1E+2 Inexact Rounded
3485
+ sqtx8464 squareroot 93083 -> 3.1E+2 Inexact Rounded
3486
+ sqtx8465 squareroot 99230 -> 3.2E+2 Inexact Rounded
3487
+ sqtx8466 squareroot 99271 -> 3.2E+2 Inexact Rounded
3488
+
3489
+ precision: 3
3490
+ sqtx8467 squareroot 11349 -> 107 Inexact Rounded
3491
+ sqtx8468 squareroot 26738 -> 164 Inexact Rounded
3492
+ sqtx8469 squareroot 31508 -> 178 Inexact Rounded
3493
+ sqtx8470 squareroot 44734 -> 212 Inexact Rounded
3494
+ sqtx8471 squareroot 44738 -> 212 Inexact Rounded
3495
+ sqtx8472 squareroot 51307 -> 227 Inexact Rounded
3496
+ sqtx8473 squareroot 62259 -> 250 Inexact Rounded
3497
+ sqtx8474 squareroot 75901 -> 276 Inexact Rounded
3498
+ sqtx8475 squareroot 76457 -> 277 Inexact Rounded
3499
+ sqtx8476 squareroot 180287 -> 425 Inexact Rounded
3500
+ sqtx8477 squareroot 202053 -> 450 Inexact Rounded
3501
+ sqtx8478 squareroot 235747 -> 486 Inexact Rounded
3502
+ sqtx8479 squareroot 256537 -> 506 Inexact Rounded
3503
+ sqtx8480 squareroot 299772 -> 548 Inexact Rounded
3504
+ sqtx8481 squareroot 415337 -> 644 Inexact Rounded
3505
+ sqtx8482 squareroot 617067 -> 786 Inexact Rounded
3506
+ sqtx8483 squareroot 628022 -> 792 Inexact Rounded
3507
+ sqtx8484 squareroot 645629 -> 804 Inexact Rounded
3508
+ sqtx8485 squareroot 785836 -> 886 Inexact Rounded
3509
+ sqtx8486 squareroot 993066 -> 997 Inexact Rounded
3510
+
3511
+ precision: 6
3512
+ sqtx8487 squareroot 14917781 -> 3862.35 Inexact Rounded
3513
+ sqtx8488 squareroot 17237238 -> 4151.78 Inexact Rounded
3514
+ sqtx8489 squareroot 18054463 -> 4249.05 Inexact Rounded
3515
+ sqtx8490 squareroot 19990694 -> 4471.10 Inexact Rounded
3516
+ sqtx8491 squareroot 29061855 -> 5390.90 Inexact Rounded
3517
+ sqtx8492 squareroot 49166257 -> 7011.87 Inexact Rounded
3518
+ sqtx8493 squareroot 53082086 -> 7285.75 Inexact Rounded
3519
+ sqtx8494 squareroot 56787909 -> 7535.78 Inexact Rounded
3520
+ sqtx8495 squareroot 81140019 -> 9007.78 Inexact Rounded
3521
+ sqtx8496 squareroot 87977554 -> 9379.64 Inexact Rounded
3522
+ sqtx8497 squareroot 93624683 -> 9675.98 Inexact Rounded
3523
+ sqtx8498 squareroot 98732747 -> 9936.44 Inexact Rounded
3524
+ sqtx8499 squareroot 99222813 -> 9961.06 Inexact Rounded
3525
+ sqtx8500 squareroot 143883626 -> 11995.2 Inexact Rounded
3526
+ sqtx8501 squareroot 180433301 -> 13432.5 Inexact Rounded
3527
+ sqtx8502 squareroot 227034020 -> 15067.6 Inexact Rounded
3528
+ sqtx8503 squareroot 283253992 -> 16830.2 Inexact Rounded
3529
+ sqtx8504 squareroot 617047954 -> 24840.4 Inexact Rounded
3530
+ sqtx8505 squareroot 736870094 -> 27145.4 Inexact Rounded
3531
+ sqtx8506 squareroot 897322915 -> 29955.3 Inexact Rounded
3532
+
3533
+ -- results close to minimum normal
3534
+ precision: 1
3535
+ sqtx8507 squareroot 1E-20 -> 0E-9 Underflow Subnormal Inexact Rounded Clamped
3536
+ sqtx8508 squareroot 1E-19 -> 0E-9 Underflow Subnormal Inexact Rounded Clamped
3537
+ sqtx8509 squareroot 1E-18 -> 1E-9
3538
+
3539
+ precision: 2
3540
+ sqtx8510 squareroot 8.1E-19 -> 9E-10 Subnormal
3541
+ sqtx8511 squareroot 8.10E-19 -> 9E-10 Subnormal Rounded
3542
+ sqtx8512 squareroot 9.0E-19 -> 9E-10 Underflow Subnormal Inexact Rounded
3543
+ sqtx8513 squareroot 9.02E-19 -> 9E-10 Underflow Subnormal Inexact Rounded
3544
+ sqtx8514 squareroot 9.03E-19 -> 1.0E-9 Underflow Subnormal Inexact Rounded
3545
+ sqtx8515 squareroot 9.1E-19 -> 1.0E-9 Underflow Subnormal Inexact Rounded
3546
+ sqtx8516 squareroot 9.9E-19 -> 1.0E-9 Underflow Subnormal Inexact Rounded
3547
+ sqtx8517 squareroot 9.91E-19 -> 1.0E-9 Underflow Subnormal Inexact Rounded
3548
+ sqtx8518 squareroot 9.92E-19 -> 1.0E-9 Underflow Subnormal Inexact Rounded
3549
+ sqtx8519 squareroot 9.95E-19 -> 1.0E-9 Underflow Subnormal Inexact Rounded
3550
+ sqtx8520 squareroot 9.98E-19 -> 1.0E-9 Underflow Subnormal Inexact Rounded
3551
+ sqtx8521 squareroot 9.99E-19 -> 1.0E-9 Underflow Subnormal Inexact Rounded
3552
+ sqtx8522 squareroot 1E-18 -> 1E-9
3553
+ sqtx8523 squareroot 1.0E-18 -> 1.0E-9
3554
+ sqtx8524 squareroot 1.00E-18 -> 1.0E-9
3555
+ sqtx8525 squareroot 1.000E-18 -> 1.0E-9 Rounded
3556
+ sqtx8526 squareroot 1.0000E-18 -> 1.0E-9 Rounded
3557
+ sqtx8527 squareroot 1.01E-18 -> 1.0E-9 Inexact Rounded
3558
+ sqtx8528 squareroot 1.02E-18 -> 1.0E-9 Inexact Rounded
3559
+ sqtx8529 squareroot 1.1E-18 -> 1.0E-9 Inexact Rounded
3560
+
3561
+ precision: 3
3562
+ sqtx8530 squareroot 8.1E-19 -> 9E-10 Subnormal
3563
+ sqtx8531 squareroot 8.10E-19 -> 9.0E-10 Subnormal
3564
+ sqtx8532 squareroot 8.100E-19 -> 9.0E-10 Subnormal
3565
+ sqtx8533 squareroot 8.1000E-19 -> 9.0E-10 Subnormal Rounded
3566
+ sqtx8534 squareroot 9.9E-19 -> 9.9E-10 Underflow Subnormal Inexact Rounded
3567
+ sqtx8535 squareroot 9.91E-19 -> 1.00E-9 Underflow Subnormal Inexact Rounded
3568
+ sqtx8536 squareroot 9.99E-19 -> 1.00E-9 Underflow Subnormal Inexact Rounded
3569
+ sqtx8537 squareroot 9.998E-19 -> 1.00E-9 Underflow Subnormal Inexact Rounded
3570
+ sqtx8538 squareroot 1E-18 -> 1E-9
3571
+ sqtx8539 squareroot 1.0E-18 -> 1.0E-9
3572
+ sqtx8540 squareroot 1.00E-18 -> 1.0E-9
3573
+ sqtx8541 squareroot 1.000E-18 -> 1.00E-9
3574
+ sqtx8542 squareroot 1.0000E-18 -> 1.00E-9
3575
+ sqtx8543 squareroot 1.00000E-18 -> 1.00E-9 Rounded
3576
+ sqtx8544 squareroot 1.000000E-18 -> 1.00E-9 Rounded
3577
+ sqtx8545 squareroot 1.01E-18 -> 1.00E-9 Inexact Rounded
3578
+ sqtx8546 squareroot 1.02E-18 -> 1.01E-9 Inexact Rounded
3579
+
3580
+ -- result exactly representable with precision p, but not necessarily
3581
+ -- exactly representable as a subnormal; check the correct flags are raised
3582
+ precision: 2
3583
+ sqtx8547 squareroot 1.21E-20 -> 1E-10 Underflow Subnormal Inexact Rounded
3584
+ sqtx8548 squareroot 1.44E-20 -> 1E-10 Underflow Subnormal Inexact Rounded
3585
+ sqtx8549 squareroot 9.61E-20 -> 3E-10 Underflow Subnormal Inexact Rounded
3586
+ sqtx8550 squareroot 8.836E-19 -> 9E-10 Underflow Subnormal Inexact Rounded
3587
+ sqtx8551 squareroot 9.216E-19 -> 1.0E-9 Underflow Subnormal Inexact Rounded
3588
+
3589
+ precision: 3
3590
+ sqtx8552 squareroot 1.21E-22 -> 1E-11 Underflow Subnormal Inexact Rounded
3591
+ sqtx8553 squareroot 1.21E-20 -> 1.1E-10 Subnormal
3592
+ sqtx8554 squareroot 1.96E-22 -> 1E-11 Underflow Subnormal Inexact Rounded
3593
+ sqtx8555 squareroot 1.96E-20 -> 1.4E-10 Subnormal
3594
+ sqtx8556 squareroot 2.56E-22 -> 2E-11 Underflow Subnormal Inexact Rounded
3595
+ sqtx8557 squareroot 4.00E-22 -> 2E-11 Subnormal Rounded
3596
+ sqtx8558 squareroot 7.84E-22 -> 3E-11 Underflow Subnormal Inexact Rounded
3597
+ sqtx8559 squareroot 9.801E-21 -> 1.0E-10 Underflow Subnormal Inexact Rounded
3598
+ sqtx8560 squareroot 9.801E-19 -> 9.9E-10 Subnormal
3599
+ sqtx8561 squareroot 1.0201E-20 -> 1.0E-10 Underflow Subnormal Inexact Rounded
3600
+ sqtx8562 squareroot 1.1025E-20 -> 1.0E-10 Underflow Subnormal Inexact Rounded
3601
+ sqtx8563 squareroot 1.1236E-20 -> 1.1E-10 Underflow Subnormal Inexact Rounded
3602
+ sqtx8564 squareroot 1.2996E-20 -> 1.1E-10 Underflow Subnormal Inexact Rounded
3603
+ sqtx8565 squareroot 1.3225E-20 -> 1.2E-10 Underflow Subnormal Inexact Rounded
3604
+
3605
+ -- A selection of subnormal results prone to double rounding errors
3606
+ precision: 2
3607
+ sqtx8566 squareroot 2.3E-21 -> 0E-10 Underflow Subnormal Inexact Rounded Clamped
3608
+ sqtx8567 squareroot 2.4E-21 -> 0E-10 Underflow Subnormal Inexact Rounded Clamped
3609
+ sqtx8568 squareroot 2.5E-21 -> 0E-10 Underflow Subnormal Inexact Rounded Clamped
3610
+ sqtx8569 squareroot 2.6E-21 -> 1E-10 Underflow Subnormal Inexact Rounded
3611
+ sqtx8570 squareroot 2.7E-21 -> 1E-10 Underflow Subnormal Inexact Rounded
3612
+ sqtx8571 squareroot 2.8E-21 -> 1E-10 Underflow Subnormal Inexact Rounded
3613
+ sqtx8572 squareroot 2.2E-20 -> 1E-10 Underflow Subnormal Inexact Rounded
3614
+ sqtx8573 squareroot 2.3E-20 -> 2E-10 Underflow Subnormal Inexact Rounded
3615
+ sqtx8574 squareroot 2.4E-20 -> 2E-10 Underflow Subnormal Inexact Rounded
3616
+ sqtx8575 squareroot 6.2E-20 -> 2E-10 Underflow Subnormal Inexact Rounded
3617
+ sqtx8576 squareroot 6.3E-20 -> 3E-10 Underflow Subnormal Inexact Rounded
3618
+ sqtx8577 squareroot 6.4E-20 -> 3E-10 Underflow Subnormal Inexact Rounded
3619
+ sqtx8578 squareroot 6.5E-20 -> 3E-10 Underflow Subnormal Inexact Rounded
3620
+ sqtx8579 squareroot 1.2E-19 -> 3E-10 Underflow Subnormal Inexact Rounded
3621
+ sqtx8580 squareroot 2.0E-19 -> 4E-10 Underflow Subnormal Inexact Rounded
3622
+ sqtx8581 squareroot 4.2E-19 -> 6E-10 Underflow Subnormal Inexact Rounded
3623
+ sqtx8582 squareroot 5.6E-19 -> 7E-10 Underflow Subnormal Inexact Rounded
3624
+ sqtx8583 squareroot 5.7E-19 -> 8E-10 Underflow Subnormal Inexact Rounded
3625
+ sqtx8584 squareroot 9.0E-19 -> 9E-10 Underflow Subnormal Inexact Rounded
3626
+ sqtx8585 squareroot 9.1E-19 -> 1.0E-9 Underflow Subnormal Inexact Rounded
3627
+ precision: 3
3628
+ sqtx8586 squareroot 2.6E-23 -> 1E-11 Underflow Subnormal Inexact Rounded
3629
+ sqtx8587 squareroot 2.22E-22 -> 1E-11 Underflow Subnormal Inexact Rounded
3630
+ sqtx8588 squareroot 6.07E-22 -> 2E-11 Underflow Subnormal Inexact Rounded
3631
+ sqtx8589 squareroot 6.25E-22 -> 2E-11 Underflow Subnormal Inexact Rounded
3632
+ sqtx8590 squareroot 6.45E-22 -> 3E-11 Underflow Subnormal Inexact Rounded
3633
+ sqtx8591 squareroot 6.50E-22 -> 3E-11 Underflow Subnormal Inexact Rounded
3634
+ sqtx8592 squareroot 1.22E-21 -> 3E-11 Underflow Subnormal Inexact Rounded
3635
+ sqtx8593 squareroot 1.24E-21 -> 4E-11 Underflow Subnormal Inexact Rounded
3636
+ sqtx8594 squareroot 4.18E-21 -> 6E-11 Underflow Subnormal Inexact Rounded
3637
+ sqtx8595 squareroot 7.19E-21 -> 8E-11 Underflow Subnormal Inexact Rounded
3638
+ sqtx8596 squareroot 8.94E-21 -> 9E-11 Underflow Subnormal Inexact Rounded
3639
+ sqtx8597 squareroot 1.81E-20 -> 1.3E-10 Underflow Subnormal Inexact Rounded
3640
+ sqtx8598 squareroot 4.64E-20 -> 2.2E-10 Underflow Subnormal Inexact Rounded
3641
+ sqtx8599 squareroot 5.06E-20 -> 2.2E-10 Underflow Subnormal Inexact Rounded
3642
+ sqtx8600 squareroot 5.08E-20 -> 2.3E-10 Underflow Subnormal Inexact Rounded
3643
+ sqtx8601 squareroot 7.00E-20 -> 2.6E-10 Underflow Subnormal Inexact Rounded
3644
+ sqtx8602 squareroot 1.81E-19 -> 4.3E-10 Underflow Subnormal Inexact Rounded
3645
+ sqtx8603 squareroot 6.64E-19 -> 8.1E-10 Underflow Subnormal Inexact Rounded
3646
+ sqtx8604 squareroot 7.48E-19 -> 8.6E-10 Underflow Subnormal Inexact Rounded
3647
+ sqtx8605 squareroot 9.91E-19 -> 1.00E-9 Underflow Subnormal Inexact Rounded
3648
+ precision: 4
3649
+ sqtx8606 squareroot 6.24E-24 -> 2E-12 Underflow Subnormal Inexact Rounded
3650
+ sqtx8607 squareroot 7.162E-23 -> 8E-12 Underflow Subnormal Inexact Rounded
3651
+ sqtx8608 squareroot 7.243E-23 -> 9E-12 Underflow Subnormal Inexact Rounded
3652
+ sqtx8609 squareroot 8.961E-23 -> 9E-12 Underflow Subnormal Inexact Rounded
3653
+ sqtx8610 squareroot 9.029E-23 -> 1.0E-11 Underflow Subnormal Inexact Rounded
3654
+ sqtx8611 squareroot 4.624E-22 -> 2.2E-11 Underflow Subnormal Inexact Rounded
3655
+ sqtx8612 squareroot 5.980E-22 -> 2.4E-11 Underflow Subnormal Inexact Rounded
3656
+ sqtx8613 squareroot 6.507E-22 -> 2.6E-11 Underflow Subnormal Inexact Rounded
3657
+ sqtx8614 squareroot 1.483E-21 -> 3.9E-11 Underflow Subnormal Inexact Rounded
3658
+ sqtx8615 squareroot 3.903E-21 -> 6.2E-11 Underflow Subnormal Inexact Rounded
3659
+ sqtx8616 squareroot 8.733E-21 -> 9.3E-11 Underflow Subnormal Inexact Rounded
3660
+ sqtx8617 squareroot 1.781E-20 -> 1.33E-10 Underflow Subnormal Inexact Rounded
3661
+ sqtx8618 squareroot 6.426E-20 -> 2.53E-10 Underflow Subnormal Inexact Rounded
3662
+ sqtx8619 squareroot 7.102E-20 -> 2.66E-10 Underflow Subnormal Inexact Rounded
3663
+ sqtx8620 squareroot 7.535E-20 -> 2.74E-10 Underflow Subnormal Inexact Rounded
3664
+ sqtx8621 squareroot 9.892E-20 -> 3.15E-10 Underflow Subnormal Inexact Rounded
3665
+ sqtx8622 squareroot 1.612E-19 -> 4.01E-10 Underflow Subnormal Inexact Rounded
3666
+ sqtx8623 squareroot 1.726E-19 -> 4.15E-10 Underflow Subnormal Inexact Rounded
3667
+ sqtx8624 squareroot 1.853E-19 -> 4.30E-10 Underflow Subnormal Inexact Rounded
3668
+ sqtx8625 squareroot 4.245E-19 -> 6.52E-10 Underflow Subnormal Inexact Rounded
3669
+
3670
+ -- clamping and overflow for large exponents
3671
+ precision: 1
3672
+ sqtx8626 squareroot 1E+18 -> 1E+9
3673
+ sqtx8627 squareroot 1E+19 -> 3E+9 Inexact Rounded
3674
+ -- in this next one, intermediate result is 9486832980.505137996...
3675
+ -- so rounds down to 9 (not up to 10 which would cause Infinity overflow)
3676
+ sqtx8628 squareroot 9E+19 -> 9E+9 Inexact Rounded
3677
+ sqtx8629 squareroot 9.1E+19 -> Infinity Overflow Inexact Rounded
3678
+ sqtx8630 squareroot 1E+20 -> Infinity Overflow Inexact Rounded
3679
+
3680
+ precision: 2
3681
+ sqtx8631 squareroot 1E+18 -> 1E+9
3682
+ sqtx8632 squareroot 1.0E+18 -> 1.0E+9
3683
+ sqtx8633 squareroot 1.00E+18 -> 1.0E+9
3684
+ sqtx8634 squareroot 1.000E+18 -> 1.0E+9 Rounded
3685
+ sqtx8635 squareroot 1E+20 -> Infinity Overflow Inexact Rounded
3686
+ clamp: 1
3687
+ sqtx8636 squareroot 1E+18 -> 1.0E+9 Clamped
3688
+ sqtx8637 squareroot 1.0E+18 -> 1.0E+9
3689
+ sqtx8638 squareroot 1E+20 -> Infinity Overflow Inexact Rounded
3690
+ clamp: 0
3691
+
3692
+ precision: 6
3693
+ sqtx8639 squareroot 1E+18 -> 1E+9
3694
+ sqtx8640 squareroot 1.0000000000E+18 -> 1.00000E+9
3695
+ sqtx8641 squareroot 1.00000000000E+18 -> 1.00000E+9 Rounded
3696
+ sqtx8642 squareroot 1E+20 -> Infinity Overflow Inexact Rounded
3697
+ clamp: 1
3698
+ sqtx8643 squareroot 1E+8 -> 1E+4
3699
+ sqtx8644 squareroot 1E+10 -> 1.0E+5 Clamped
3700
+ sqtx8645 squareroot 1.0E+10 -> 1.0E+5
3701
+ sqtx8646 squareroot 1E+12 -> 1.00E+6 Clamped
3702
+ sqtx8647 squareroot 1.0E+12 -> 1.00E+6 Clamped
3703
+ sqtx8648 squareroot 1.00E+12 -> 1.00E+6 Clamped
3704
+ sqtx8649 squareroot 1.000E+12 -> 1.00E+6
3705
+ sqtx8650 squareroot 1E+18 -> 1.00000E+9 Clamped
3706
+ sqtx8651 squareroot 1.00000000E+18 -> 1.00000E+9 Clamped
3707
+ sqtx8652 squareroot 1.000000000E+18 -> 1.00000E+9
3708
+ sqtx8653 squareroot 1E+20 -> Infinity Overflow Inexact Rounded
3709
+ clamp: 0
3710
+
3711
+ -- The following example causes a TypeError in Python 2.5.1
3712
+ precision: 3
3713
+ maxexponent: 9
3714
+ minexponent: -9
3715
+ sqtx8654 squareroot 10000000000 -> 1.00E+5 Rounded
3716
+
3717
+ -- Additional tricky cases of underflown subnormals
3718
+ rounding: half_even
3719
+ precision: 5
3720
+ maxexponent: 999
3721
+ minexponent: -999
3722
+ sqtx8700 squareroot 2.8073E-2000 -> 1.675E-1000 Underflow Subnormal Inexact Rounded
3723
+ sqtx8701 squareroot 2.8883E-2000 -> 1.699E-1000 Underflow Subnormal Inexact Rounded
3724
+ sqtx8702 squareroot 3.1524E-2000 -> 1.775E-1000 Underflow Subnormal Inexact Rounded
3725
+ sqtx8703 squareroot 3.2382E-2000 -> 1.799E-1000 Underflow Subnormal Inexact Rounded
3726
+ sqtx8704 squareroot 3.5175E-2000 -> 1.875E-1000 Underflow Subnormal Inexact Rounded
3727
+ sqtx8705 squareroot 3.6081E-2000 -> 1.899E-1000 Underflow Subnormal Inexact Rounded
3728
+ sqtx8706 squareroot 3.9026E-2000 -> 1.975E-1000 Underflow Subnormal Inexact Rounded
3729
+ sqtx8707 squareroot 3.9980E-2000 -> 1.999E-1000 Underflow Subnormal Inexact Rounded
3730
+ sqtx8708 squareroot 4.3077E-2000 -> 2.075E-1000 Underflow Subnormal Inexact Rounded
3731
+ sqtx8709 squareroot 4.4079E-2000 -> 2.099E-1000 Underflow Subnormal Inexact Rounded
3732
+ sqtx8710 squareroot 4.7328E-2000 -> 2.175E-1000 Underflow Subnormal Inexact Rounded
3733
+ sqtx8711 squareroot 4.8378E-2000 -> 2.199E-1000 Underflow Subnormal Inexact Rounded
3734
+ sqtx8712 squareroot 5.1779E-2000 -> 2.275E-1000 Underflow Subnormal Inexact Rounded
3735
+ sqtx8713 squareroot 5.2877E-2000 -> 2.299E-1000 Underflow Subnormal Inexact Rounded
3736
+ sqtx8714 squareroot 5.6430E-2000 -> 2.375E-1000 Underflow Subnormal Inexact Rounded
3737
+ sqtx8715 squareroot 5.7576E-2000 -> 2.399E-1000 Underflow Subnormal Inexact Rounded
3738
+ sqtx8716 squareroot 6.1281E-2000 -> 2.475E-1000 Underflow Subnormal Inexact Rounded
3739
+ sqtx8717 squareroot 6.2475E-2000 -> 2.499E-1000 Underflow Subnormal Inexact Rounded
3740
+ sqtx8718 squareroot 6.6332E-2000 -> 2.575E-1000 Underflow Subnormal Inexact Rounded
3741
+ sqtx8719 squareroot 6.7574E-2000 -> 2.599E-1000 Underflow Subnormal Inexact Rounded
3742
+ sqtx8720 squareroot 7.1583E-2000 -> 2.675E-1000 Underflow Subnormal Inexact Rounded
3743
+ sqtx8721 squareroot 7.2873E-2000 -> 2.699E-1000 Underflow Subnormal Inexact Rounded
3744
+ sqtx8722 squareroot 7.7034E-2000 -> 2.775E-1000 Underflow Subnormal Inexact Rounded
3745
+ sqtx8723 squareroot 7.8372E-2000 -> 2.799E-1000 Underflow Subnormal Inexact Rounded
3746
+ sqtx8724 squareroot 8.2685E-2000 -> 2.875E-1000 Underflow Subnormal Inexact Rounded
3747
+ sqtx8725 squareroot 8.4071E-2000 -> 2.899E-1000 Underflow Subnormal Inexact Rounded
3748
+ sqtx8726 squareroot 8.8536E-2000 -> 2.975E-1000 Underflow Subnormal Inexact Rounded
3749
+ sqtx8727 squareroot 8.9970E-2000 -> 2.999E-1000 Underflow Subnormal Inexact Rounded
3750
+ sqtx8728 squareroot 9.4587E-2000 -> 3.075E-1000 Underflow Subnormal Inexact Rounded
3751
+ sqtx8729 squareroot 9.6069E-2000 -> 3.099E-1000 Underflow Subnormal Inexact Rounded
3752
+ -- (End of Mark Dickinson's testcases.)
3753
+
3754
+
3755
+ -- Some additional edge cases
3756
+ maxexponent: 9
3757
+ minexponent: -9
3758
+ precision: 2
3759
+ sqtx9000 squareroot 9980.01 -> 1.0E+2 Inexact Rounded
3760
+ precision: 3
3761
+ sqtx9001 squareroot 9980.01 -> 99.9
3762
+ precision: 4
3763
+ sqtx9002 squareroot 9980.01 -> 99.9
3764
+
3765
+ -- Exact from over-precise
3766
+ precision: 4
3767
+ sqtx9003 squareroot 11025 -> 105
3768
+ precision: 3
3769
+ sqtx9004 squareroot 11025 -> 105
3770
+ precision: 2
3771
+ sqtx9005 squareroot 11025 -> 1.0E+2 Inexact Rounded
3772
+ precision: 1
3773
+ sqtx9006 squareroot 11025 -> 1E+2 Inexact Rounded
3774
+
3775
+ -- an interesting case
3776
+ precision: 7
3777
+ sqtx9007 squareroot 1600000e1 -> 4000
3778
+
3779
+ -- Out-of-bounds zeros
3780
+ precision: 4
3781
+ sqtx9010 squareroot 0E-9 -> 0.00000
3782
+ sqtx9011 squareroot 0E-10 -> 0.00000
3783
+ sqtx9012 squareroot 0E-11 -> 0.000000
3784
+ sqtx9013 squareroot 0E-12 -> 0.000000
3785
+ sqtx9014 squareroot 0E-13 -> 0E-7
3786
+ sqtx9015 squareroot 0E-14 -> 0E-7
3787
+ sqtx9020 squareroot 0E-17 -> 0E-9
3788
+ sqtx9021 squareroot 0E-20 -> 0E-10
3789
+ sqtx9022 squareroot 0E-22 -> 0E-11
3790
+ sqtx9023 squareroot 0E-24 -> 0E-12
3791
+ sqtx9024 squareroot 0E-25 -> 0E-12 Clamped
3792
+ sqtx9025 squareroot 0E-26 -> 0E-12 Clamped
3793
+ sqtx9026 squareroot 0E-27 -> 0E-12 Clamped
3794
+ sqtx9027 squareroot 0E-28 -> 0E-12 Clamped
3795
+
3796
+ sqtx9030 squareroot 0E+8 -> 0E+4
3797
+ sqtx9031 squareroot 0E+10 -> 0E+5
3798
+ sqtx9032 squareroot 0E+12 -> 0E+6
3799
+ sqtx9033 squareroot 0E+14 -> 0E+7
3800
+ sqtx9034 squareroot 0E+15 -> 0E+7
3801
+ sqtx9035 squareroot 0E+16 -> 0E+8
3802
+ sqtx9036 squareroot 0E+18 -> 0E+9
3803
+ sqtx9037 squareroot 0E+19 -> 0E+9
3804
+ sqtx9038 squareroot 0E+20 -> 0E+9 Clamped
3805
+ sqtx9039 squareroot 0E+21 -> 0E+9 Clamped
3806
+ sqtx9040 squareroot 0E+22 -> 0E+9 Clamped
3807
+
3808
+ -- if digits > emax maximum real exponent is negative
3809
+ maxexponent: 9
3810
+ minexponent: -9
3811
+ precision: 15
3812
+ clamp: 1
3813
+ sqtx9045 squareroot 1 -> 1.00000 Clamped
3814
+
3815
+ -- other
3816
+ maxexponent: 999
3817
+ minexponent: -999
3818
+ precision: 16
3819
+ sqtx9046 squareroot 10 -> 3.162277660168379 inexact rounded
3820
+ sqtx9047 squareroot 10E-1 -> 1.0
3821
+ sqtx9048 squareroot 10E-2 -> 0.3162277660168379 inexact rounded
3822
+ sqtx9049 squareroot 10E-3 -> 0.10
3823
+
3824
+
3825
+ -- High-precision exact and inexact
3826
+ maxexponent: 999
3827
+ minexponent: -999
3828
+ precision: 400
3829
+ sqtx9050 squareroot 2 -> 1.414213562373095048801688724209698078569671875376948073176679737990732478462107038850387534327641572735013846230912297024924836055850737212644121497099935831413222665927505592755799950501152782060571470109559971605970274534596862014728517418640889198609552329230484308714321450839762603627995251407989687253396546331808829640620615258352395054745750287759961729835575220337531857011354374603408498847 Inexact Rounded
3830
+ sqtx9051 squareroot 1089 -> 33
3831
+ sqtx9052 squareroot 10.89 -> 3.3
3832
+
3833
+ -- Null test
3834
+ sqtx9900 squareroot # -> NaN Invalid_operation