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,3426 @@
1
+ ------------------------------------------------------------------------
2
+ -- fma.decTest -- decimal fused multiply add --
3
+ -- Copyright (c) IBM Corporation, 1981, 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
+ -- These tests comprese three parts:
29
+ -- 1. Sanity checks and other three-operand tests (especially those
30
+ -- where the fused operation makes a difference)
31
+ -- 2. Multiply tests (third operand is neutral zero [0E+emax])
32
+ -- 3. Addition tests (first operand is 1)
33
+ -- The multiply and addition tests are extensive because FMA may have
34
+ -- its own dedicated multiplication or addition routine(s), and they
35
+ -- also inherently check the left-to-right properties.
36
+
37
+ -- Sanity checks
38
+ fmax0001 fma 1 1 1 -> 2
39
+ fmax0002 fma 1 1 2 -> 3
40
+ fmax0003 fma 2 2 3 -> 7
41
+ fmax0004 fma 9 9 9 -> 90
42
+ fmax0005 fma -1 1 1 -> 0
43
+ fmax0006 fma -1 1 2 -> 1
44
+ fmax0007 fma -2 2 3 -> -1
45
+ fmax0008 fma -9 9 9 -> -72
46
+ fmax0011 fma 1 -1 1 -> 0
47
+ fmax0012 fma 1 -1 2 -> 1
48
+ fmax0013 fma 2 -2 3 -> -1
49
+ fmax0014 fma 9 -9 9 -> -72
50
+ fmax0015 fma 1 1 -1 -> 0
51
+ fmax0016 fma 1 1 -2 -> -1
52
+ fmax0017 fma 2 2 -3 -> 1
53
+ fmax0018 fma 9 9 -9 -> 72
54
+ fmax0019 fma 3 5 7 -> 22
55
+ fmax0029 fma 3 -5 7 -> -8
56
+
57
+ -- non-integer exacts
58
+ fma0100 fma 25.2 63.6 -438 -> 1164.72
59
+ fma0101 fma 0.301 0.380 334 -> 334.114380
60
+ fma0102 fma 49.2 -4.8 23.3 -> -212.86
61
+ fma0103 fma 4.22 0.079 -94.6 -> -94.26662
62
+ fma0104 fma 903 0.797 0.887 -> 720.578
63
+ fma0105 fma 6.13 -161 65.9 -> -921.03
64
+ fma0106 fma 28.2 727 5.45 -> 20506.85
65
+ fma0107 fma 4 605 688 -> 3108
66
+ fma0108 fma 93.3 0.19 0.226 -> 17.953
67
+ fma0109 fma 0.169 -341 5.61 -> -52.019
68
+ fma0110 fma -72.2 30 -51.2 -> -2217.2
69
+ fma0111 fma -0.409 13 20.4 -> 15.083
70
+ fma0112 fma 317 77.0 19.0 -> 24428.0
71
+ fma0113 fma 47 6.58 1.62 -> 310.88
72
+ fma0114 fma 1.36 0.984 0.493 -> 1.83124
73
+ fma0115 fma 72.7 274 1.56 -> 19921.36
74
+ fma0116 fma 335 847 83 -> 283828
75
+ fma0117 fma 666 0.247 25.4 -> 189.902
76
+ fma0118 fma -3.87 3.06 78.0 -> 66.1578
77
+ fma0119 fma 0.742 192 35.6 -> 178.064
78
+ fma0120 fma -91.6 5.29 0.153 -> -484.411
79
+
80
+ -- cases where result is different from separate multiply + add; each
81
+ -- is preceded by the result of unfused multiply and add
82
+ -- [this is about 20% of all similar cases in general]
83
+ -- 888565290 1557.96930 -86087.7578 -> 1.38435735E+12
84
+ fma0201 fma 888565290 1557.96930 -86087.7578 -> 1.38435736E+12 Inexact Rounded
85
+ -- -85519342.9 735155419 42010431 -> -6.28700084E+16
86
+ fma0205 fma -85519342.9 735155419 42010431 -> -6.28700083E+16 Inexact Rounded
87
+ -- -98025.5 -294603.472 10414348.2 -> 2.88890669E+10
88
+ fma0208 fma -98025.5 -294603.472 10414348.2 -> 2.88890670E+10 Inexact Rounded
89
+ -- 5967627.39 83526540.6 498494.810 -> 4.98455271E+14
90
+ fma0211 fma 5967627.39 83526540.6 498494.810 -> 4.98455272E+14 Inexact Rounded
91
+ -- 3456.9433 874.39518 197866.615 -> 3220601.18
92
+ fma0216 fma 3456.9433 874.39518 197866.615 -> 3220601.17 Inexact Rounded
93
+ -- 62769.8287 2096.98927 48.420317 -> 131627705
94
+ fma0218 fma 62769.8287 2096.98927 48.420317 -> 131627706 Inexact Rounded
95
+ -- -68.81500 59961113.9 -8988862 -> -4.13521291E+9
96
+ fma0219 fma -68.81500 59961113.9 -8988862 -> -4.13521292E+9 Inexact Rounded
97
+ -- 2126341.02 63491.5152 302427455 -> 1.35307040E+11
98
+ fma0226 fma 2126341.02 63491.5152 302427455 -> 1.35307041E+11 Inexact Rounded
99
+
100
+
101
+ -- Infinite combinations
102
+ fmax0800 fma Inf Inf Inf -> Infinity
103
+ fmax0801 fma Inf Inf -Inf -> NaN Invalid_operation
104
+ fmax0802 fma Inf -Inf Inf -> NaN Invalid_operation
105
+ fmax0803 fma Inf -Inf -Inf -> -Infinity
106
+ fmax0804 fma -Inf Inf Inf -> NaN Invalid_operation
107
+ fmax0805 fma -Inf Inf -Inf -> -Infinity
108
+ fmax0806 fma -Inf -Inf Inf -> Infinity
109
+ fmax0807 fma -Inf -Inf -Inf -> NaN Invalid_operation
110
+ fmax0808 fma -Inf 0 1 -> NaN Invalid_operation
111
+ fmax0809 fma -Inf 0 NaN -> NaN Invalid_operation
112
+
113
+ -- Triple NaN propagation
114
+ fmax0900 fma NaN2 NaN3 NaN5 -> NaN2
115
+ fmax0901 fma 0 NaN3 NaN5 -> NaN3
116
+ fmax0902 fma 0 0 NaN5 -> NaN5
117
+ -- first sNaN wins (consider qNaN from earlier sNaN being
118
+ -- overridden by an sNaN in third operand)
119
+ fmax0903 fma sNaN1 sNaN2 sNaN3 -> NaN1 Invalid_operation
120
+ fmax0904 fma 0 sNaN2 sNaN3 -> NaN2 Invalid_operation
121
+ fmax0905 fma 0 0 sNaN3 -> NaN3 Invalid_operation
122
+ fmax0906 fma sNaN1 sNaN2 sNaN3 -> NaN1 Invalid_operation
123
+ fmax0907 fma NaN7 sNaN2 sNaN3 -> NaN2 Invalid_operation
124
+ fmax0908 fma NaN7 NaN5 sNaN3 -> NaN3 Invalid_operation
125
+
126
+ -- MULTIPLICATION TESTS ------------------------------------------------
127
+ -- sanity checks (as base, above)
128
+ fmax2000 fma 2 2 0E+999999 -> 4
129
+ fmax2001 fma 2 3 0E+999999 -> 6
130
+ fmax2002 fma 5 1 0E+999999 -> 5
131
+ fmax2003 fma 5 2 0E+999999 -> 10
132
+ fmax2004 fma 1.20 2 0E+999999 -> 2.40
133
+ fmax2005 fma 1.20 0 0E+999999 -> 0.00
134
+ fmax2006 fma 1.20 -2 0E+999999 -> -2.40
135
+ fmax2007 fma -1.20 2 0E+999999 -> -2.40
136
+ fmax2008 fma -1.20 0 0E+999999 -> 0.00
137
+ fmax2009 fma -1.20 -2 0E+999999 -> 2.40
138
+ fmax2010 fma 5.09 7.1 0E+999999 -> 36.139
139
+ fmax2011 fma 2.5 4 0E+999999 -> 10.0
140
+ fmax2012 fma 2.50 4 0E+999999 -> 10.00
141
+ fmax2013 fma 1.23456789 1.00000000 0E+999999 -> 1.23456789 Rounded
142
+ fmax2014 fma 9.999999999 9.999999999 0E+999999 -> 100.000000 Inexact Rounded
143
+ fmax2015 fma 2.50 4 0E+999999 -> 10.00
144
+ precision: 6
145
+ fmax2016 fma 2.50 4 0E+999999 -> 10.00
146
+ fmax2017 fma 9.999999 9.999999 0E+999999 -> 100.000 Inexact Rounded
147
+ fmax2018 fma 9.999999 -9.999999 0E+999999 -> -100.000 Inexact Rounded
148
+ fmax2019 fma -9.999999 9.999999 0E+999999 -> -100.000 Inexact Rounded
149
+ fmax2020 fma -9.999999 -9.999999 0E+999999 -> 100.000 Inexact Rounded
150
+
151
+ -- 1999.12.21: next one is a edge case if intermediate longs are used
152
+ precision: 15
153
+ fmax2059 fma 999999999999 9765625 0E+999999 -> 9.76562499999023E+18 Inexact Rounded
154
+ precision: 30
155
+ fmax2160 fma 999999999999 9765625 0E+999999 -> 9765624999990234375
156
+ precision: 9
157
+ -----
158
+
159
+ -- zeros, etc.
160
+ fmax2021 fma 0 0 0E+999999 -> 0
161
+ fmax2022 fma 0 -0 0E+999999 -> 0
162
+ fmax2023 fma -0 0 0E+999999 -> 0
163
+ fmax2024 fma -0 -0 0E+999999 -> 0
164
+ fmax2025 fma -0.0 -0.0 0E+999999 -> 0.00
165
+ fmax2026 fma -0.0 -0.0 0E+999999 -> 0.00
166
+ fmax2027 fma -0.0 -0.0 0E+999999 -> 0.00
167
+ fmax2028 fma -0.0 -0.0 0E+999999 -> 0.00
168
+ fmax2030 fma 5.00 1E-3 0E+999999 -> 0.00500
169
+ fmax2031 fma 00.00 0.000 0E+999999 -> 0.00000
170
+ fmax2032 fma 00.00 0E-3 0E+999999 -> 0.00000 -- rhs is 0
171
+ fmax2033 fma 0E-3 00.00 0E+999999 -> 0.00000 -- lhs is 0
172
+ fmax2034 fma -5.00 1E-3 0E+999999 -> -0.00500
173
+ fmax2035 fma -00.00 0.000 0E+999999 -> 0.00000
174
+ fmax2036 fma -00.00 0E-3 0E+999999 -> 0.00000 -- rhs is 0
175
+ fmax2037 fma -0E-3 00.00 0E+999999 -> 0.00000 -- lhs is 0
176
+ fmax2038 fma 5.00 -1E-3 0E+999999 -> -0.00500
177
+ fmax2039 fma 00.00 -0.000 0E+999999 -> 0.00000
178
+ fmax2040 fma 00.00 -0E-3 0E+999999 -> 0.00000 -- rhs is 0
179
+ fmax2041 fma 0E-3 -00.00 0E+999999 -> 0.00000 -- lhs is 0
180
+ fmax2042 fma -5.00 -1E-3 0E+999999 -> 0.00500
181
+ fmax2043 fma -00.00 -0.000 0E+999999 -> 0.00000
182
+ fmax2044 fma -00.00 -0E-3 0E+999999 -> 0.00000 -- rhs is 0
183
+ fmax2045 fma -0E-3 -00.00 0E+999999 -> 0.00000 -- lhs is 0
184
+
185
+ -- examples from decarith multiply
186
+ fmax2050 fma 1.20 3 0E+999999 -> 3.60
187
+ fmax2051 fma 7 3 0E+999999 -> 21
188
+ fmax2052 fma 0.9 0.8 0E+999999 -> 0.72
189
+ fmax2053 fma 0.9 -0 0E+999999 -> 0.0
190
+ fmax2054 fma 654321 654321 0E+999999 -> 4.28135971E+11 Inexact Rounded
191
+
192
+ fmax2060 fma 123.45 1e7 0E+999999 -> 1.2345E+9
193
+ fmax2061 fma 123.45 1e8 0E+999999 -> 1.2345E+10
194
+ fmax2062 fma 123.45 1e+9 0E+999999 -> 1.2345E+11
195
+ fmax2063 fma 123.45 1e10 0E+999999 -> 1.2345E+12
196
+ fmax2064 fma 123.45 1e11 0E+999999 -> 1.2345E+13
197
+ fmax2065 fma 123.45 1e12 0E+999999 -> 1.2345E+14
198
+ fmax2066 fma 123.45 1e13 0E+999999 -> 1.2345E+15
199
+
200
+
201
+ -- test some intermediate lengths
202
+ precision: 9
203
+ fmax2080 fma 0.1 123456789 0E+999999 -> 12345678.9
204
+ fmax2081 fma 0.1 1234567891 0E+999999 -> 123456789 Inexact Rounded
205
+ fmax2082 fma 0.1 12345678912 0E+999999 -> 1.23456789E+9 Inexact Rounded
206
+ fmax2083 fma 0.1 12345678912345 0E+999999 -> 1.23456789E+12 Inexact Rounded
207
+ fmax2084 fma 0.1 123456789 0E+999999 -> 12345678.9
208
+ precision: 8
209
+ fmax2085 fma 0.1 12345678912 0E+999999 -> 1.2345679E+9 Inexact Rounded
210
+ fmax2086 fma 0.1 12345678912345 0E+999999 -> 1.2345679E+12 Inexact Rounded
211
+ precision: 7
212
+ fmax2087 fma 0.1 12345678912 0E+999999 -> 1.234568E+9 Inexact Rounded
213
+ fmax2088 fma 0.1 12345678912345 0E+999999 -> 1.234568E+12 Inexact Rounded
214
+
215
+ precision: 9
216
+ fmax2090 fma 123456789 0.1 0E+999999 -> 12345678.9
217
+ fmax2091 fma 1234567891 0.1 0E+999999 -> 123456789 Inexact Rounded
218
+ fmax2092 fma 12345678912 0.1 0E+999999 -> 1.23456789E+9 Inexact Rounded
219
+ fmax2093 fma 12345678912345 0.1 0E+999999 -> 1.23456789E+12 Inexact Rounded
220
+ fmax2094 fma 123456789 0.1 0E+999999 -> 12345678.9
221
+ precision: 8
222
+ fmax2095 fma 12345678912 0.1 0E+999999 -> 1.2345679E+9 Inexact Rounded
223
+ fmax2096 fma 12345678912345 0.1 0E+999999 -> 1.2345679E+12 Inexact Rounded
224
+ precision: 7
225
+ fmax2097 fma 12345678912 0.1 0E+999999 -> 1.234568E+9 Inexact Rounded
226
+ fmax2098 fma 12345678912345 0.1 0E+999999 -> 1.234568E+12 Inexact Rounded
227
+
228
+ -- test some more edge cases and carries
229
+ maxexponent: 9999
230
+ minexponent: -9999
231
+ precision: 33
232
+ fmax2101 fma 9 9 0E+999999 -> 81
233
+ fmax2102 fma 9 90 0E+999999 -> 810
234
+ fmax2103 fma 9 900 0E+999999 -> 8100
235
+ fmax2104 fma 9 9000 0E+999999 -> 81000
236
+ fmax2105 fma 9 90000 0E+999999 -> 810000
237
+ fmax2106 fma 9 900000 0E+999999 -> 8100000
238
+ fmax2107 fma 9 9000000 0E+999999 -> 81000000
239
+ fmax2108 fma 9 90000000 0E+999999 -> 810000000
240
+ fmax2109 fma 9 900000000 0E+999999 -> 8100000000
241
+ fmax2110 fma 9 9000000000 0E+999999 -> 81000000000
242
+ fmax2111 fma 9 90000000000 0E+999999 -> 810000000000
243
+ fmax2112 fma 9 900000000000 0E+999999 -> 8100000000000
244
+ fmax2113 fma 9 9000000000000 0E+999999 -> 81000000000000
245
+ fmax2114 fma 9 90000000000000 0E+999999 -> 810000000000000
246
+ fmax2115 fma 9 900000000000000 0E+999999 -> 8100000000000000
247
+ fmax2116 fma 9 9000000000000000 0E+999999 -> 81000000000000000
248
+ fmax2117 fma 9 90000000000000000 0E+999999 -> 810000000000000000
249
+ fmax2118 fma 9 900000000000000000 0E+999999 -> 8100000000000000000
250
+ fmax2119 fma 9 9000000000000000000 0E+999999 -> 81000000000000000000
251
+ fmax2120 fma 9 90000000000000000000 0E+999999 -> 810000000000000000000
252
+ fmax2121 fma 9 900000000000000000000 0E+999999 -> 8100000000000000000000
253
+ fmax2122 fma 9 9000000000000000000000 0E+999999 -> 81000000000000000000000
254
+ fmax2123 fma 9 90000000000000000000000 0E+999999 -> 810000000000000000000000
255
+ -- test some more edge cases without carries
256
+ fmax2131 fma 3 3 0E+999999 -> 9
257
+ fmax2132 fma 3 30 0E+999999 -> 90
258
+ fmax2133 fma 3 300 0E+999999 -> 900
259
+ fmax2134 fma 3 3000 0E+999999 -> 9000
260
+ fmax2135 fma 3 30000 0E+999999 -> 90000
261
+ fmax2136 fma 3 300000 0E+999999 -> 900000
262
+ fmax2137 fma 3 3000000 0E+999999 -> 9000000
263
+ fmax2138 fma 3 30000000 0E+999999 -> 90000000
264
+ fmax2139 fma 3 300000000 0E+999999 -> 900000000
265
+ fmax2140 fma 3 3000000000 0E+999999 -> 9000000000
266
+ fmax2141 fma 3 30000000000 0E+999999 -> 90000000000
267
+ fmax2142 fma 3 300000000000 0E+999999 -> 900000000000
268
+ fmax2143 fma 3 3000000000000 0E+999999 -> 9000000000000
269
+ fmax2144 fma 3 30000000000000 0E+999999 -> 90000000000000
270
+ fmax2145 fma 3 300000000000000 0E+999999 -> 900000000000000
271
+ fmax2146 fma 3 3000000000000000 0E+999999 -> 9000000000000000
272
+ fmax2147 fma 3 30000000000000000 0E+999999 -> 90000000000000000
273
+ fmax2148 fma 3 300000000000000000 0E+999999 -> 900000000000000000
274
+ fmax2149 fma 3 3000000000000000000 0E+999999 -> 9000000000000000000
275
+ fmax2150 fma 3 30000000000000000000 0E+999999 -> 90000000000000000000
276
+ fmax2151 fma 3 300000000000000000000 0E+999999 -> 900000000000000000000
277
+ fmax2152 fma 3 3000000000000000000000 0E+999999 -> 9000000000000000000000
278
+ fmax2153 fma 3 30000000000000000000000 0E+999999 -> 90000000000000000000000
279
+
280
+ maxexponent: 999999
281
+ minexponent: -999999
282
+ precision: 9
283
+ -- test some cases that are close to exponent overflow/underflow
284
+ fmax2170 fma 1 9e999999 0E+999999 -> 9E+999999
285
+ fmax2171 fma 1 9.9e999999 0E+999999 -> 9.9E+999999
286
+ fmax2172 fma 1 9.99e999999 0E+999999 -> 9.99E+999999
287
+ fmax2173 fma 9e999999 1 0E+999999 -> 9E+999999
288
+ fmax2174 fma 9.9e999999 1 0E+999999 -> 9.9E+999999
289
+ fmax2176 fma 9.99e999999 1 0E+999999 -> 9.99E+999999
290
+ fmax2177 fma 1 9.99999e999999 0E+999999 -> 9.99999E+999999
291
+ fmax2178 fma 9.99999e999999 1 0E+999999 -> 9.99999E+999999
292
+
293
+ fmax2180 fma 0.1 9e-999998 0E+999999 -> 9E-999999
294
+ fmax2181 fma 0.1 99e-999998 0E+999999 -> 9.9E-999998
295
+ fmax2182 fma 0.1 999e-999998 0E+999999 -> 9.99E-999997
296
+
297
+ fmax2183 fma 0.1 9e-999998 0E+999999 -> 9E-999999
298
+ fmax2184 fma 0.1 99e-999998 0E+999999 -> 9.9E-999998
299
+ fmax2185 fma 0.1 999e-999998 0E+999999 -> 9.99E-999997
300
+ fmax2186 fma 0.1 999e-999997 0E+999999 -> 9.99E-999996
301
+ fmax2187 fma 0.1 9999e-999997 0E+999999 -> 9.999E-999995
302
+ fmax2188 fma 0.1 99999e-999997 0E+999999 -> 9.9999E-999994
303
+
304
+ fmax2190 fma 1 9e-999998 0E+999999 -> 9E-999998
305
+ fmax2191 fma 1 99e-999998 0E+999999 -> 9.9E-999997
306
+ fmax2192 fma 1 999e-999998 0E+999999 -> 9.99E-999996
307
+ fmax2193 fma 9e-999998 1 0E+999999 -> 9E-999998
308
+ fmax2194 fma 99e-999998 1 0E+999999 -> 9.9E-999997
309
+ fmax2195 fma 999e-999998 1 0E+999999 -> 9.99E-999996
310
+
311
+ -- long operand triangle
312
+ precision: 33
313
+ fmax2246 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.290801193369671916511992830 Inexact Rounded
314
+ precision: 32
315
+ fmax2247 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.29080119336967191651199283 Inexact Rounded
316
+ precision: 31
317
+ fmax2248 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.2908011933696719165119928 Inexact Rounded
318
+ precision: 30
319
+ fmax2249 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.290801193369671916511993 Inexact Rounded
320
+ precision: 29
321
+ fmax2250 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.29080119336967191651199 Inexact Rounded
322
+ precision: 28
323
+ fmax2251 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.2908011933696719165120 Inexact Rounded
324
+ precision: 27
325
+ fmax2252 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.290801193369671916512 Inexact Rounded
326
+ precision: 26
327
+ fmax2253 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.29080119336967191651 Inexact Rounded
328
+ precision: 25
329
+ fmax2254 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.2908011933696719165 Inexact Rounded
330
+ precision: 24
331
+ fmax2255 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.290801193369671917 Inexact Rounded
332
+ precision: 23
333
+ fmax2256 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.29080119336967192 Inexact Rounded
334
+ precision: 22
335
+ fmax2257 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.2908011933696719 Inexact Rounded
336
+ precision: 21
337
+ fmax2258 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.290801193369672 Inexact Rounded
338
+ precision: 20
339
+ fmax2259 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.29080119336967 Inexact Rounded
340
+ precision: 19
341
+ fmax2260 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.2908011933697 Inexact Rounded
342
+ precision: 18
343
+ fmax2261 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.290801193370 Inexact Rounded
344
+ precision: 17
345
+ fmax2262 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.29080119337 Inexact Rounded
346
+ precision: 16
347
+ fmax2263 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.2908011934 Inexact Rounded
348
+ precision: 15
349
+ fmax2264 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.290801193 Inexact Rounded
350
+ precision: 14
351
+ fmax2265 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.29080119 Inexact Rounded
352
+ precision: 13
353
+ fmax2266 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.2908012 Inexact Rounded
354
+ precision: 12
355
+ fmax2267 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.290801 Inexact Rounded
356
+ precision: 11
357
+ fmax2268 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.29080 Inexact Rounded
358
+ precision: 10
359
+ fmax2269 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.2908 Inexact Rounded
360
+ precision: 9
361
+ fmax2270 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.291 Inexact Rounded
362
+ precision: 8
363
+ fmax2271 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.29 Inexact Rounded
364
+ precision: 7
365
+ fmax2272 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433.3 Inexact Rounded
366
+ precision: 6
367
+ fmax2273 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 145433 Inexact Rounded
368
+ precision: 5
369
+ fmax2274 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 1.4543E+5 Inexact Rounded
370
+ precision: 4
371
+ fmax2275 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 1.454E+5 Inexact Rounded
372
+ precision: 3
373
+ fmax2276 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 1.45E+5 Inexact Rounded
374
+ precision: 2
375
+ fmax2277 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 1.5E+5 Inexact Rounded
376
+ precision: 1
377
+ fmax2278 fma 30269.587755640502150977251770554 4.8046009735990873395936309640543 0E+999999 -> 1E+5 Inexact Rounded
378
+
379
+ -- test some edge cases with exact rounding
380
+ maxexponent: 9999
381
+ minexponent: -9999
382
+ precision: 9
383
+ fmax2301 fma 9 9 0E+999999 -> 81
384
+ fmax2302 fma 9 90 0E+999999 -> 810
385
+ fmax2303 fma 9 900 0E+999999 -> 8100
386
+ fmax2304 fma 9 9000 0E+999999 -> 81000
387
+ fmax2305 fma 9 90000 0E+999999 -> 810000
388
+ fmax2306 fma 9 900000 0E+999999 -> 8100000
389
+ fmax2307 fma 9 9000000 0E+999999 -> 81000000
390
+ fmax2308 fma 9 90000000 0E+999999 -> 810000000
391
+ fmax2309 fma 9 900000000 0E+999999 -> 8.10000000E+9 Rounded
392
+ fmax2310 fma 9 9000000000 0E+999999 -> 8.10000000E+10 Rounded
393
+ fmax2311 fma 9 90000000000 0E+999999 -> 8.10000000E+11 Rounded
394
+ fmax2312 fma 9 900000000000 0E+999999 -> 8.10000000E+12 Rounded
395
+ fmax2313 fma 9 9000000000000 0E+999999 -> 8.10000000E+13 Rounded
396
+ fmax2314 fma 9 90000000000000 0E+999999 -> 8.10000000E+14 Rounded
397
+ fmax2315 fma 9 900000000000000 0E+999999 -> 8.10000000E+15 Rounded
398
+ fmax2316 fma 9 9000000000000000 0E+999999 -> 8.10000000E+16 Rounded
399
+ fmax2317 fma 9 90000000000000000 0E+999999 -> 8.10000000E+17 Rounded
400
+ fmax2318 fma 9 900000000000000000 0E+999999 -> 8.10000000E+18 Rounded
401
+ fmax2319 fma 9 9000000000000000000 0E+999999 -> 8.10000000E+19 Rounded
402
+ fmax2320 fma 9 90000000000000000000 0E+999999 -> 8.10000000E+20 Rounded
403
+ fmax2321 fma 9 900000000000000000000 0E+999999 -> 8.10000000E+21 Rounded
404
+ fmax2322 fma 9 9000000000000000000000 0E+999999 -> 8.10000000E+22 Rounded
405
+ fmax2323 fma 9 90000000000000000000000 0E+999999 -> 8.10000000E+23 Rounded
406
+
407
+ -- fastpath breakers
408
+ precision: 29
409
+ fmax2330 fma 1.491824697641270317824852952837224 1.105170918075647624811707826490246514675628614562883537345747603 0E+999999 -> 1.6487212707001281468486507878 Inexact Rounded
410
+ precision: 55
411
+ fmax2331 fma 0.8958341352965282506768545828765117803873717284891040428 0.8958341352965282506768545828765117803873717284891040428 0E+999999 -> 0.8025187979624784829842553829934069955890983696752228299 Inexact Rounded
412
+
413
+
414
+ -- tryzeros cases
415
+ precision: 7
416
+ rounding: half_up
417
+ maxExponent: 92
418
+ minexponent: -92
419
+ fmax2504 fma 0E-60 1000E-60 0E+999999 -> 0E-98 Clamped
420
+ fmax2505 fma 100E+60 0E+60 0E+999999 -> 0E+92 Clamped
421
+
422
+ -- mixed with zeros
423
+ maxexponent: 999999
424
+ minexponent: -999999
425
+ precision: 9
426
+ fmax2541 fma 0 -1 0E+999999 -> 0
427
+ fmax2542 fma -0 -1 0E+999999 -> 0
428
+ fmax2543 fma 0 1 0E+999999 -> 0
429
+ fmax2544 fma -0 1 0E+999999 -> 0
430
+ fmax2545 fma -1 0 0E+999999 -> 0
431
+ fmax2546 fma -1 -0 0E+999999 -> 0
432
+ fmax2547 fma 1 0 0E+999999 -> 0
433
+ fmax2548 fma 1 -0 0E+999999 -> 0
434
+
435
+ fmax2551 fma 0.0 -1 0E+999999 -> 0.0
436
+ fmax2552 fma -0.0 -1 0E+999999 -> 0.0
437
+ fmax2553 fma 0.0 1 0E+999999 -> 0.0
438
+ fmax2554 fma -0.0 1 0E+999999 -> 0.0
439
+ fmax2555 fma -1.0 0 0E+999999 -> 0.0
440
+ fmax2556 fma -1.0 -0 0E+999999 -> 0.0
441
+ fmax2557 fma 1.0 0 0E+999999 -> 0.0
442
+ fmax2558 fma 1.0 -0 0E+999999 -> 0.0
443
+
444
+ fmax2561 fma 0 -1.0 0E+999999 -> 0.0
445
+ fmax2562 fma -0 -1.0 0E+999999 -> 0.0
446
+ fmax2563 fma 0 1.0 0E+999999 -> 0.0
447
+ fmax2564 fma -0 1.0 0E+999999 -> 0.0
448
+ fmax2565 fma -1 0.0 0E+999999 -> 0.0
449
+ fmax2566 fma -1 -0.0 0E+999999 -> 0.0
450
+ fmax2567 fma 1 0.0 0E+999999 -> 0.0
451
+ fmax2568 fma 1 -0.0 0E+999999 -> 0.0
452
+
453
+ fmax2571 fma 0.0 -1.0 0E+999999 -> 0.00
454
+ fmax2572 fma -0.0 -1.0 0E+999999 -> 0.00
455
+ fmax2573 fma 0.0 1.0 0E+999999 -> 0.00
456
+ fmax2574 fma -0.0 1.0 0E+999999 -> 0.00
457
+ fmax2575 fma -1.0 0.0 0E+999999 -> 0.00
458
+ fmax2576 fma -1.0 -0.0 0E+999999 -> 0.00
459
+ fmax2577 fma 1.0 0.0 0E+999999 -> 0.00
460
+ fmax2578 fma 1.0 -0.0 0E+999999 -> 0.00
461
+
462
+
463
+ -- Specials
464
+ fmax2580 fma Inf -Inf 0E+999999 -> -Infinity
465
+ fmax2581 fma Inf -1000 0E+999999 -> -Infinity
466
+ fmax2582 fma Inf -1 0E+999999 -> -Infinity
467
+ fmax2583 fma Inf -0 0E+999999 -> NaN Invalid_operation
468
+ fmax2584 fma Inf 0 0E+999999 -> NaN Invalid_operation
469
+ fmax2585 fma Inf 1 0E+999999 -> Infinity
470
+ fmax2586 fma Inf 1000 0E+999999 -> Infinity
471
+ fmax2587 fma Inf Inf 0E+999999 -> Infinity
472
+ fmax2588 fma -1000 Inf 0E+999999 -> -Infinity
473
+ fmax2589 fma -Inf Inf 0E+999999 -> -Infinity
474
+ fmax2590 fma -1 Inf 0E+999999 -> -Infinity
475
+ fmax2591 fma -0 Inf 0E+999999 -> NaN Invalid_operation
476
+ fmax2592 fma 0 Inf 0E+999999 -> NaN Invalid_operation
477
+ fmax2593 fma 1 Inf 0E+999999 -> Infinity
478
+ fmax2594 fma 1000 Inf 0E+999999 -> Infinity
479
+ fmax2595 fma Inf Inf 0E+999999 -> Infinity
480
+
481
+ fmax2600 fma -Inf -Inf 0E+999999 -> Infinity
482
+ fmax2601 fma -Inf -1000 0E+999999 -> Infinity
483
+ fmax2602 fma -Inf -1 0E+999999 -> Infinity
484
+ fmax2603 fma -Inf -0 0E+999999 -> NaN Invalid_operation
485
+ fmax2604 fma -Inf 0 0E+999999 -> NaN Invalid_operation
486
+ fmax2605 fma -Inf 1 0E+999999 -> -Infinity
487
+ fmax2606 fma -Inf 1000 0E+999999 -> -Infinity
488
+ fmax2607 fma -Inf Inf 0E+999999 -> -Infinity
489
+ fmax2608 fma -1000 Inf 0E+999999 -> -Infinity
490
+ fmax2609 fma -Inf -Inf 0E+999999 -> Infinity
491
+ fmax2610 fma -1 -Inf 0E+999999 -> Infinity
492
+ fmax2611 fma -0 -Inf 0E+999999 -> NaN Invalid_operation
493
+ fmax2612 fma 0 -Inf 0E+999999 -> NaN Invalid_operation
494
+ fmax2613 fma 1 -Inf 0E+999999 -> -Infinity
495
+ fmax2614 fma 1000 -Inf 0E+999999 -> -Infinity
496
+ fmax2615 fma Inf -Inf 0E+999999 -> -Infinity
497
+
498
+ fmax2621 fma NaN -Inf 0E+999999 -> NaN
499
+ fmax2622 fma NaN -1000 0E+999999 -> NaN
500
+ fmax2623 fma NaN -1 0E+999999 -> NaN
501
+ fmax2624 fma NaN -0 0E+999999 -> NaN
502
+ fmax2625 fma NaN 0 0E+999999 -> NaN
503
+ fmax2626 fma NaN 1 0E+999999 -> NaN
504
+ fmax2627 fma NaN 1000 0E+999999 -> NaN
505
+ fmax2628 fma NaN Inf 0E+999999 -> NaN
506
+ fmax2629 fma NaN NaN 0E+999999 -> NaN
507
+ fmax2630 fma -Inf NaN 0E+999999 -> NaN
508
+ fmax2631 fma -1000 NaN 0E+999999 -> NaN
509
+ fmax2632 fma -1 NaN 0E+999999 -> NaN
510
+ fmax2633 fma -0 NaN 0E+999999 -> NaN
511
+ fmax2634 fma 0 NaN 0E+999999 -> NaN
512
+ fmax2635 fma 1 NaN 0E+999999 -> NaN
513
+ fmax2636 fma 1000 NaN 0E+999999 -> NaN
514
+ fmax2637 fma Inf NaN 0E+999999 -> NaN
515
+
516
+ fmax2641 fma sNaN -Inf 0E+999999 -> NaN Invalid_operation
517
+ fmax2642 fma sNaN -1000 0E+999999 -> NaN Invalid_operation
518
+ fmax2643 fma sNaN -1 0E+999999 -> NaN Invalid_operation
519
+ fmax2644 fma sNaN -0 0E+999999 -> NaN Invalid_operation
520
+ fmax2645 fma sNaN 0 0E+999999 -> NaN Invalid_operation
521
+ fmax2646 fma sNaN 1 0E+999999 -> NaN Invalid_operation
522
+ fmax2647 fma sNaN 1000 0E+999999 -> NaN Invalid_operation
523
+ fmax2648 fma sNaN NaN 0E+999999 -> NaN Invalid_operation
524
+ fmax2649 fma sNaN sNaN 0E+999999 -> NaN Invalid_operation
525
+ fmax2650 fma NaN sNaN 0E+999999 -> NaN Invalid_operation
526
+ fmax2651 fma -Inf sNaN 0E+999999 -> NaN Invalid_operation
527
+ fmax2652 fma -1000 sNaN 0E+999999 -> NaN Invalid_operation
528
+ fmax2653 fma -1 sNaN 0E+999999 -> NaN Invalid_operation
529
+ fmax2654 fma -0 sNaN 0E+999999 -> NaN Invalid_operation
530
+ fmax2655 fma 0 sNaN 0E+999999 -> NaN Invalid_operation
531
+ fmax2656 fma 1 sNaN 0E+999999 -> NaN Invalid_operation
532
+ fmax2657 fma 1000 sNaN 0E+999999 -> NaN Invalid_operation
533
+ fmax2658 fma Inf sNaN 0E+999999 -> NaN Invalid_operation
534
+ fmax2659 fma NaN sNaN 0E+999999 -> NaN Invalid_operation
535
+
536
+ -- propagating NaNs
537
+ fmax2661 fma NaN9 -Inf 0E+999999 -> NaN9
538
+ fmax2662 fma NaN8 999 0E+999999 -> NaN8
539
+ fmax2663 fma NaN71 Inf 0E+999999 -> NaN71
540
+ fmax2664 fma NaN6 NaN5 0E+999999 -> NaN6
541
+ fmax2665 fma -Inf NaN4 0E+999999 -> NaN4
542
+ fmax2666 fma -999 NaN33 0E+999999 -> NaN33
543
+ fmax2667 fma Inf NaN2 0E+999999 -> NaN2
544
+
545
+ fmax2671 fma sNaN99 -Inf 0E+999999 -> NaN99 Invalid_operation
546
+ fmax2672 fma sNaN98 -11 0E+999999 -> NaN98 Invalid_operation
547
+ fmax2673 fma sNaN97 NaN 0E+999999 -> NaN97 Invalid_operation
548
+ fmax2674 fma sNaN16 sNaN94 0E+999999 -> NaN16 Invalid_operation
549
+ fmax2675 fma NaN95 sNaN93 0E+999999 -> NaN93 Invalid_operation
550
+ fmax2676 fma -Inf sNaN92 0E+999999 -> NaN92 Invalid_operation
551
+ fmax2677 fma 088 sNaN91 0E+999999 -> NaN91 Invalid_operation
552
+ fmax2678 fma Inf sNaN90 0E+999999 -> NaN90 Invalid_operation
553
+ fmax2679 fma NaN sNaN89 0E+999999 -> NaN89 Invalid_operation
554
+
555
+ fmax2681 fma -NaN9 -Inf 0E+999999 -> -NaN9
556
+ fmax2682 fma -NaN8 999 0E+999999 -> -NaN8
557
+ fmax2683 fma -NaN71 Inf 0E+999999 -> -NaN71
558
+ fmax2684 fma -NaN6 -NaN5 0E+999999 -> -NaN6
559
+ fmax2685 fma -Inf -NaN4 0E+999999 -> -NaN4
560
+ fmax2686 fma -999 -NaN33 0E+999999 -> -NaN33
561
+ fmax2687 fma Inf -NaN2 0E+999999 -> -NaN2
562
+
563
+ fmax2691 fma -sNaN99 -Inf 0E+999999 -> -NaN99 Invalid_operation
564
+ fmax2692 fma -sNaN98 -11 0E+999999 -> -NaN98 Invalid_operation
565
+ fmax2693 fma -sNaN97 NaN 0E+999999 -> -NaN97 Invalid_operation
566
+ fmax2694 fma -sNaN16 -sNaN94 0E+999999 -> -NaN16 Invalid_operation
567
+ fmax2695 fma -NaN95 -sNaN93 0E+999999 -> -NaN93 Invalid_operation
568
+ fmax2696 fma -Inf -sNaN92 0E+999999 -> -NaN92 Invalid_operation
569
+ fmax2697 fma 088 -sNaN91 0E+999999 -> -NaN91 Invalid_operation
570
+ fmax2698 fma Inf -sNaN90 0E+999999 -> -NaN90 Invalid_operation
571
+ fmax2699 fma -NaN -sNaN89 0E+999999 -> -NaN89 Invalid_operation
572
+
573
+ fmax2701 fma -NaN -Inf 0E+999999 -> -NaN
574
+ fmax2702 fma -NaN 999 0E+999999 -> -NaN
575
+ fmax2703 fma -NaN Inf 0E+999999 -> -NaN
576
+ fmax2704 fma -NaN -NaN 0E+999999 -> -NaN
577
+ fmax2705 fma -Inf -NaN0 0E+999999 -> -NaN
578
+ fmax2706 fma -999 -NaN 0E+999999 -> -NaN
579
+ fmax2707 fma Inf -NaN 0E+999999 -> -NaN
580
+
581
+ fmax2711 fma -sNaN -Inf 0E+999999 -> -NaN Invalid_operation
582
+ fmax2712 fma -sNaN -11 0E+999999 -> -NaN Invalid_operation
583
+ fmax2713 fma -sNaN00 NaN 0E+999999 -> -NaN Invalid_operation
584
+ fmax2714 fma -sNaN -sNaN 0E+999999 -> -NaN Invalid_operation
585
+ fmax2715 fma -NaN -sNaN 0E+999999 -> -NaN Invalid_operation
586
+ fmax2716 fma -Inf -sNaN 0E+999999 -> -NaN Invalid_operation
587
+ fmax2717 fma 088 -sNaN 0E+999999 -> -NaN Invalid_operation
588
+ fmax2718 fma Inf -sNaN 0E+999999 -> -NaN Invalid_operation
589
+ fmax2719 fma -NaN -sNaN 0E+999999 -> -NaN Invalid_operation
590
+
591
+ -- overflow and underflow tests .. note subnormal results
592
+ maxexponent: 999999
593
+ minexponent: -999999
594
+ fmax2730 fma +1.23456789012345E-0 9E+999999 0E+999999 -> Infinity Inexact Overflow Rounded
595
+ fmax2731 fma 9E+999999 +1.23456789012345E-0 0E+999999 -> Infinity Inexact Overflow Rounded
596
+ fmax2732 fma +0.100 9E-999999 0E+999999 -> 9.00E-1000000 Subnormal
597
+ fmax2733 fma 9E-999999 +0.100 0E+999999 -> 9.00E-1000000 Subnormal
598
+ fmax2735 fma -1.23456789012345E-0 9E+999999 0E+999999 -> -Infinity Inexact Overflow Rounded
599
+ fmax2736 fma 9E+999999 -1.23456789012345E-0 0E+999999 -> -Infinity Inexact Overflow Rounded
600
+ fmax2737 fma -0.100 9E-999999 0E+999999 -> -9.00E-1000000 Subnormal
601
+ fmax2738 fma 9E-999999 -0.100 0E+999999 -> -9.00E-1000000 Subnormal
602
+
603
+ -- signs
604
+ fmax2751 fma 1e+777777 1e+411111 0E+999999 -> Infinity Overflow Inexact Rounded
605
+ fmax2752 fma 1e+777777 -1e+411111 0E+999999 -> -Infinity Overflow Inexact Rounded
606
+ fmax2753 fma -1e+777777 1e+411111 0E+999999 -> -Infinity Overflow Inexact Rounded
607
+ fmax2754 fma -1e+777777 -1e+411111 0E+999999 -> Infinity Overflow Inexact Rounded
608
+ fmax2755 fma 1e-777777 1e-411111 0E+999999 -> 0E-1000007 Underflow Subnormal Inexact Rounded Clamped
609
+ fmax2756 fma 1e-777777 -1e-411111 0E+999999 -> -0E-1000007 Underflow Subnormal Inexact Rounded Clamped
610
+ fmax2757 fma -1e-777777 1e-411111 0E+999999 -> -0E-1000007 Underflow Subnormal Inexact Rounded Clamped
611
+ fmax2758 fma -1e-777777 -1e-411111 0E+999999 -> 0E-1000007 Underflow Subnormal Inexact Rounded Clamped
612
+
613
+ -- 'subnormal' boundary (all hard underflow or overflow in base arithemtic)
614
+ precision: 9
615
+ fmax2760 fma 1e-600000 1e-400001 0E+999999 -> 1E-1000001 Subnormal
616
+ fmax2761 fma 1e-600000 1e-400002 0E+999999 -> 1E-1000002 Subnormal
617
+ fmax2762 fma 1e-600000 1e-400003 0E+999999 -> 1E-1000003 Subnormal
618
+ fmax2763 fma 1e-600000 1e-400004 0E+999999 -> 1E-1000004 Subnormal
619
+ fmax2764 fma 1e-600000 1e-400005 0E+999999 -> 1E-1000005 Subnormal
620
+ fmax2765 fma 1e-600000 1e-400006 0E+999999 -> 1E-1000006 Subnormal
621
+ fmax2766 fma 1e-600000 1e-400007 0E+999999 -> 1E-1000007 Subnormal
622
+ fmax2767 fma 1e-600000 1e-400008 0E+999999 -> 0E-1000007 Underflow Subnormal Inexact Rounded Clamped
623
+ fmax2768 fma 1e-600000 1e-400009 0E+999999 -> 0E-1000007 Underflow Subnormal Inexact Rounded Clamped
624
+ fmax2769 fma 1e-600000 1e-400010 0E+999999 -> 0E-1000007 Underflow Subnormal Inexact Rounded Clamped
625
+ -- [no equivalent of 'subnormal' for overflow]
626
+ fmax2770 fma 1e+600000 1e+400001 0E+999999 -> Infinity Overflow Inexact Rounded
627
+ fmax2771 fma 1e+600000 1e+400002 0E+999999 -> Infinity Overflow Inexact Rounded
628
+ fmax2772 fma 1e+600000 1e+400003 0E+999999 -> Infinity Overflow Inexact Rounded
629
+ fmax2773 fma 1e+600000 1e+400004 0E+999999 -> Infinity Overflow Inexact Rounded
630
+ fmax2774 fma 1e+600000 1e+400005 0E+999999 -> Infinity Overflow Inexact Rounded
631
+ fmax2775 fma 1e+600000 1e+400006 0E+999999 -> Infinity Overflow Inexact Rounded
632
+ fmax2776 fma 1e+600000 1e+400007 0E+999999 -> Infinity Overflow Inexact Rounded
633
+ fmax2777 fma 1e+600000 1e+400008 0E+999999 -> Infinity Overflow Inexact Rounded
634
+ fmax2778 fma 1e+600000 1e+400009 0E+999999 -> Infinity Overflow Inexact Rounded
635
+ fmax2779 fma 1e+600000 1e+400010 0E+999999 -> Infinity Overflow Inexact Rounded
636
+
637
+ -- 'subnormal' test edge condition at higher precisions
638
+ precision: 99
639
+ fmax2780 fma 1e-600000 1e-400007 0E+999999 -> 1E-1000007 Subnormal
640
+ fmax2781 fma 1e-600000 1e-400008 0E+999999 -> 1E-1000008 Subnormal
641
+ fmax2782 fma 1e-600000 1e-400097 0E+999999 -> 1E-1000097 Subnormal
642
+ fmax2783 fma 1e-600000 1e-400098 0E+999999 -> 0E-1000097 Underflow Subnormal Inexact Rounded Clamped
643
+ precision: 999
644
+ fmax2784 fma 1e-600000 1e-400997 0E+999999 -> 1E-1000997 Subnormal
645
+ fmax2785 fma 1e-600000 1e-400998 0E+999999 -> 0E-1000997 Underflow Subnormal Inexact Rounded Clamped
646
+
647
+ -- test subnormals rounding
648
+ precision: 5
649
+ maxExponent: 999
650
+ minexponent: -999
651
+ rounding: half_even
652
+
653
+ fmax2801 fma 1.0000E-999 1 0E+999999 -> 1.0000E-999
654
+ fmax2802 fma 1.000E-999 1e-1 0E+999999 -> 1.000E-1000 Subnormal
655
+ fmax2803 fma 1.00E-999 1e-2 0E+999999 -> 1.00E-1001 Subnormal
656
+ fmax2804 fma 1.0E-999 1e-3 0E+999999 -> 1.0E-1002 Subnormal
657
+ fmax2805 fma 1.0E-999 1e-4 0E+999999 -> 1E-1003 Subnormal Rounded
658
+ fmax2806 fma 1.3E-999 1e-4 0E+999999 -> 1E-1003 Underflow Subnormal Inexact Rounded
659
+ fmax2807 fma 1.5E-999 1e-4 0E+999999 -> 2E-1003 Underflow Subnormal Inexact Rounded
660
+ fmax2808 fma 1.7E-999 1e-4 0E+999999 -> 2E-1003 Underflow Subnormal Inexact Rounded
661
+ fmax2809 fma 2.3E-999 1e-4 0E+999999 -> 2E-1003 Underflow Subnormal Inexact Rounded
662
+ fmax2810 fma 2.5E-999 1e-4 0E+999999 -> 2E-1003 Underflow Subnormal Inexact Rounded
663
+ fmax2811 fma 2.7E-999 1e-4 0E+999999 -> 3E-1003 Underflow Subnormal Inexact Rounded
664
+ fmax2812 fma 1.49E-999 1e-4 0E+999999 -> 1E-1003 Underflow Subnormal Inexact Rounded
665
+ fmax2813 fma 1.50E-999 1e-4 0E+999999 -> 2E-1003 Underflow Subnormal Inexact Rounded
666
+ fmax2814 fma 1.51E-999 1e-4 0E+999999 -> 2E-1003 Underflow Subnormal Inexact Rounded
667
+ fmax2815 fma 2.49E-999 1e-4 0E+999999 -> 2E-1003 Underflow Subnormal Inexact Rounded
668
+ fmax2816 fma 2.50E-999 1e-4 0E+999999 -> 2E-1003 Underflow Subnormal Inexact Rounded
669
+ fmax2817 fma 2.51E-999 1e-4 0E+999999 -> 3E-1003 Underflow Subnormal Inexact Rounded
670
+
671
+ fmax2818 fma 1E-999 1e-4 0E+999999 -> 1E-1003 Subnormal
672
+ fmax2819 fma 3E-999 1e-5 0E+999999 -> 0E-1003 Underflow Subnormal Inexact Rounded Clamped
673
+ fmax2820 fma 5E-999 1e-5 0E+999999 -> 0E-1003 Underflow Subnormal Inexact Rounded Clamped
674
+ fmax2821 fma 7E-999 1e-5 0E+999999 -> 1E-1003 Underflow Subnormal Inexact Rounded
675
+ fmax2822 fma 9E-999 1e-5 0E+999999 -> 1E-1003 Underflow Subnormal Inexact Rounded
676
+ fmax2823 fma 9.9E-999 1e-5 0E+999999 -> 1E-1003 Underflow Subnormal Inexact Rounded
677
+
678
+ fmax2824 fma 1E-999 -1e-4 0E+999999 -> -1E-1003 Subnormal
679
+ fmax2825 fma 3E-999 -1e-5 0E+999999 -> -0E-1003 Underflow Subnormal Inexact Rounded Clamped
680
+ fmax2826 fma -5E-999 1e-5 0E+999999 -> -0E-1003 Underflow Subnormal Inexact Rounded Clamped
681
+ fmax2827 fma 7E-999 -1e-5 0E+999999 -> -1E-1003 Underflow Subnormal Inexact Rounded
682
+ fmax2828 fma -9E-999 1e-5 0E+999999 -> -1E-1003 Underflow Subnormal Inexact Rounded
683
+ fmax2829 fma 9.9E-999 -1e-5 0E+999999 -> -1E-1003 Underflow Subnormal Inexact Rounded
684
+ fmax2830 fma 3.0E-999 -1e-5 0E+999999 -> -0E-1003 Underflow Subnormal Inexact Rounded Clamped
685
+
686
+ fmax2831 fma 1.0E-501 1e-501 0E+999999 -> 1.0E-1002 Subnormal
687
+ fmax2832 fma 2.0E-501 2e-501 0E+999999 -> 4.0E-1002 Subnormal
688
+ fmax2833 fma 4.0E-501 4e-501 0E+999999 -> 1.60E-1001 Subnormal
689
+ fmax2834 fma 10.0E-501 10e-501 0E+999999 -> 1.000E-1000 Subnormal
690
+ fmax2835 fma 30.0E-501 30e-501 0E+999999 -> 9.000E-1000 Subnormal
691
+ fmax2836 fma 40.0E-501 40e-501 0E+999999 -> 1.6000E-999
692
+
693
+ -- squares
694
+ fmax2840 fma 1E-502 1e-502 0E+999999 -> 0E-1003 Underflow Subnormal Inexact Rounded Clamped
695
+ fmax2841 fma 1E-501 1e-501 0E+999999 -> 1E-1002 Subnormal
696
+ fmax2842 fma 2E-501 2e-501 0E+999999 -> 4E-1002 Subnormal
697
+ fmax2843 fma 4E-501 4e-501 0E+999999 -> 1.6E-1001 Subnormal
698
+ fmax2844 fma 10E-501 10e-501 0E+999999 -> 1.00E-1000 Subnormal
699
+ fmax2845 fma 30E-501 30e-501 0E+999999 -> 9.00E-1000 Subnormal
700
+ fmax2846 fma 40E-501 40e-501 0E+999999 -> 1.600E-999
701
+
702
+ -- cubes
703
+ fmax2850 fma 1E-670 1e-335 0E+999999 -> 0E-1003 Underflow Subnormal Inexact Rounded Clamped
704
+ fmax2851 fma 1E-668 1e-334 0E+999999 -> 1E-1002 Subnormal
705
+ fmax2852 fma 4E-668 2e-334 0E+999999 -> 8E-1002 Subnormal
706
+ fmax2853 fma 9E-668 3e-334 0E+999999 -> 2.7E-1001 Subnormal
707
+ fmax2854 fma 16E-668 4e-334 0E+999999 -> 6.4E-1001 Subnormal
708
+ fmax2855 fma 25E-668 5e-334 0E+999999 -> 1.25E-1000 Subnormal
709
+ fmax2856 fma 10E-668 100e-334 0E+999999 -> 1.000E-999
710
+
711
+ -- test derived from result of 0.099 ** 999 at 15 digits with unlimited exponent
712
+ precision: 19
713
+ fmax2860 fma 6636851557994578716E-520 6636851557994578716E-520 0E+999999 -> 4.40477986028551E-1003 Underflow Subnormal Inexact Rounded
714
+
715
+ -- Long operand overflow may be a different path
716
+ precision: 3
717
+ maxExponent: 999999
718
+ minexponent: -999999
719
+ fmax2870 fma 1 9.999E+999999 0E+999999 -> Infinity Inexact Overflow Rounded
720
+ fmax2871 fma 1 -9.999E+999999 0E+999999 -> -Infinity Inexact Overflow Rounded
721
+ fmax2872 fma 9.999E+999999 1 0E+999999 -> Infinity Inexact Overflow Rounded
722
+ fmax2873 fma -9.999E+999999 1 0E+999999 -> -Infinity Inexact Overflow Rounded
723
+
724
+ -- check for double-rounded subnormals
725
+ precision: 5
726
+ maxexponent: 79
727
+ minexponent: -79
728
+ fmax2881 fma 1.2347E-40 1.2347E-40 0E+999999 -> 1.524E-80 Inexact Rounded Subnormal Underflow
729
+ fmax2882 fma 1.234E-40 1.234E-40 0E+999999 -> 1.523E-80 Inexact Rounded Subnormal Underflow
730
+ fmax2883 fma 1.23E-40 1.23E-40 0E+999999 -> 1.513E-80 Inexact Rounded Subnormal Underflow
731
+ fmax2884 fma 1.2E-40 1.2E-40 0E+999999 -> 1.44E-80 Subnormal
732
+ fmax2885 fma 1.2E-40 1.2E-41 0E+999999 -> 1.44E-81 Subnormal
733
+ fmax2886 fma 1.2E-40 1.2E-42 0E+999999 -> 1.4E-82 Subnormal Inexact Rounded Underflow
734
+ fmax2887 fma 1.2E-40 1.3E-42 0E+999999 -> 1.6E-82 Subnormal Inexact Rounded Underflow
735
+ fmax2888 fma 1.3E-40 1.3E-42 0E+999999 -> 1.7E-82 Subnormal Inexact Rounded Underflow
736
+ fmax2889 fma 1.3E-40 1.3E-43 0E+999999 -> 2E-83 Subnormal Inexact Rounded Underflow
737
+ fmax2890 fma 1.3E-41 1.3E-43 0E+999999 -> 0E-83 Clamped Subnormal Inexact Rounded Underflow
738
+
739
+ fmax2891 fma 1.2345E-39 1.234E-40 0E+999999 -> 1.5234E-79 Inexact Rounded
740
+ fmax2892 fma 1.23456E-39 1.234E-40 0E+999999 -> 1.5234E-79 Inexact Rounded
741
+ fmax2893 fma 1.2345E-40 1.234E-40 0E+999999 -> 1.523E-80 Inexact Rounded Subnormal Underflow
742
+ fmax2894 fma 1.23456E-40 1.234E-40 0E+999999 -> 1.523E-80 Inexact Rounded Subnormal Underflow
743
+ fmax2895 fma 1.2345E-41 1.234E-40 0E+999999 -> 1.52E-81 Inexact Rounded Subnormal Underflow
744
+ fmax2896 fma 1.23456E-41 1.234E-40 0E+999999 -> 1.52E-81 Inexact Rounded Subnormal Underflow
745
+
746
+ -- Now explore the case where we get a normal result with Underflow
747
+ precision: 16
748
+ rounding: half_up
749
+ maxExponent: 384
750
+ minExponent: -383
751
+
752
+ fmax2900 fma 0.3000000000E-191 0.3000000000E-191 0E+999999 -> 9.00000000000000E-384 Subnormal Rounded
753
+ fmax2901 fma 0.3000000001E-191 0.3000000001E-191 0E+999999 -> 9.00000000600000E-384 Underflow Inexact Subnormal Rounded
754
+ fmax2902 fma 9.999999999999999E-383 0.0999999999999 0E+999999 -> 9.99999999999000E-384 Underflow Inexact Subnormal Rounded
755
+ fmax2903 fma 9.999999999999999E-383 0.09999999999999 0E+999999 -> 9.99999999999900E-384 Underflow Inexact Subnormal Rounded
756
+ fmax2904 fma 9.999999999999999E-383 0.099999999999999 0E+999999 -> 9.99999999999990E-384 Underflow Inexact Subnormal Rounded
757
+ fmax2905 fma 9.999999999999999E-383 0.0999999999999999 0E+999999 -> 9.99999999999999E-384 Underflow Inexact Subnormal Rounded
758
+ -- prove operands are exact
759
+ fmax2906 fma 9.999999999999999E-383 1 0E+999999 -> 9.999999999999999E-383
760
+ fmax2907 fma 1 0.09999999999999999 0E+999999 -> 0.09999999999999999
761
+ -- the next rounds to Nmin
762
+ fmax2908 fma 9.999999999999999E-383 0.09999999999999999 0E+999999 -> 1.000000000000000E-383 Underflow Inexact Subnormal Rounded
763
+ fmax2909 fma 9.999999999999999E-383 0.099999999999999999 0E+999999 -> 1.000000000000000E-383 Underflow Inexact Subnormal Rounded
764
+ fmax2910 fma 9.999999999999999E-383 0.0999999999999999999 0E+999999 -> 1.000000000000000E-383 Underflow Inexact Subnormal Rounded
765
+ fmax2911 fma 9.999999999999999E-383 0.09999999999999999999 0E+999999 -> 1.000000000000000E-383 Underflow Inexact Subnormal Rounded
766
+
767
+ -- Examples from SQL proposal (Krishna Kulkarni)
768
+ precision: 34
769
+ rounding: half_up
770
+ maxExponent: 6144
771
+ minExponent: -6143
772
+ fmax2921 fma 130E-2 120E-2 0E+999999 -> 1.5600
773
+ fmax2922 fma 130E-2 12E-1 0E+999999 -> 1.560
774
+ fmax2923 fma 130E-2 1E0 0E+999999 -> 1.30
775
+
776
+ -- Null tests
777
+ fmax2990 fma # 10 0E+999999 -> NaN Invalid_operation
778
+ fmax2991 fma 10 # 0E+999999 -> NaN Invalid_operation
779
+
780
+ -- ADDITION TESTS ------------------------------------------------------
781
+ precision: 9
782
+ rounding: half_up
783
+ maxExponent: 384
784
+ minexponent: -383
785
+
786
+ -- [first group are 'quick confidence check']
787
+ fmax3001 fma 1 1 1 -> 2
788
+ fmax3002 fma 1 2 3 -> 5
789
+ fmax3003 fma 1 '5.75' '3.3' -> 9.05
790
+ fmax3004 fma 1 '5' '-3' -> 2
791
+ fmax3005 fma 1 '-5' '-3' -> -8
792
+ fmax3006 fma 1 '-7' '2.5' -> -4.5
793
+ fmax3007 fma 1 '0.7' '0.3' -> 1.0
794
+ fmax3008 fma 1 '1.25' '1.25' -> 2.50
795
+ fmax3009 fma 1 '1.23456789' '1.00000000' -> '2.23456789'
796
+ fmax3010 fma 1 '1.23456789' '1.00000011' -> '2.23456800'
797
+
798
+ fmax3011 fma 1 '0.4444444444' '0.5555555555' -> '1.00000000' Inexact Rounded
799
+ fmax3012 fma 1 '0.4444444440' '0.5555555555' -> '1.00000000' Inexact Rounded
800
+ fmax3013 fma 1 '0.4444444444' '0.5555555550' -> '0.999999999' Inexact Rounded
801
+ fmax3014 fma 1 '0.44444444449' '0' -> '0.444444444' Inexact Rounded
802
+ fmax3015 fma 1 '0.444444444499' '0' -> '0.444444444' Inexact Rounded
803
+ fmax3016 fma 1 '0.4444444444999' '0' -> '0.444444444' Inexact Rounded
804
+ fmax3017 fma 1 '0.4444444445000' '0' -> '0.444444445' Inexact Rounded
805
+ fmax3018 fma 1 '0.4444444445001' '0' -> '0.444444445' Inexact Rounded
806
+ fmax3019 fma 1 '0.444444444501' '0' -> '0.444444445' Inexact Rounded
807
+ fmax3020 fma 1 '0.44444444451' '0' -> '0.444444445' Inexact Rounded
808
+
809
+ fmax3021 fma 1 0 1 -> 1
810
+ fmax3022 fma 1 1 1 -> 2
811
+ fmax3023 fma 1 2 1 -> 3
812
+ fmax3024 fma 1 3 1 -> 4
813
+ fmax3025 fma 1 4 1 -> 5
814
+ fmax3026 fma 1 5 1 -> 6
815
+ fmax3027 fma 1 6 1 -> 7
816
+ fmax3028 fma 1 7 1 -> 8
817
+ fmax3029 fma 1 8 1 -> 9
818
+ fmax3030 fma 1 9 1 -> 10
819
+
820
+ -- some carrying effects
821
+ fmax3031 fma 1 '0.9998' '0.0000' -> '0.9998'
822
+ fmax3032 fma 1 '0.9998' '0.0001' -> '0.9999'
823
+ fmax3033 fma 1 '0.9998' '0.0002' -> '1.0000'
824
+ fmax3034 fma 1 '0.9998' '0.0003' -> '1.0001'
825
+
826
+ fmax3035 fma 1 '70' '10000e+9' -> '1.00000000E+13' Inexact Rounded
827
+ fmax3036 fma 1 '700' '10000e+9' -> '1.00000000E+13' Inexact Rounded
828
+ fmax3037 fma 1 '7000' '10000e+9' -> '1.00000000E+13' Inexact Rounded
829
+ fmax3038 fma 1 '70000' '10000e+9' -> '1.00000001E+13' Inexact Rounded
830
+ fmax3039 fma 1 '700000' '10000e+9' -> '1.00000007E+13' Rounded
831
+
832
+ -- symmetry:
833
+ fmax3040 fma 1 '10000e+9' '70' -> '1.00000000E+13' Inexact Rounded
834
+ fmax3041 fma 1 '10000e+9' '700' -> '1.00000000E+13' Inexact Rounded
835
+ fmax3042 fma 1 '10000e+9' '7000' -> '1.00000000E+13' Inexact Rounded
836
+ fmax3044 fma 1 '10000e+9' '70000' -> '1.00000001E+13' Inexact Rounded
837
+ fmax3045 fma 1 '10000e+9' '700000' -> '1.00000007E+13' Rounded
838
+
839
+ -- same, higher precision
840
+ precision: 15
841
+ fmax3046 fma 1 '10000e+9' '7' -> '10000000000007'
842
+ fmax3047 fma 1 '10000e+9' '70' -> '10000000000070'
843
+ fmax3048 fma 1 '10000e+9' '700' -> '10000000000700'
844
+ fmax3049 fma 1 '10000e+9' '7000' -> '10000000007000'
845
+ fmax3050 fma 1 '10000e+9' '70000' -> '10000000070000'
846
+ fmax3051 fma 1 '10000e+9' '700000' -> '10000000700000'
847
+ fmax3052 fma 1 '10000e+9' '7000000' -> '10000007000000'
848
+
849
+ -- examples from decarith
850
+ fmax3053 fma 1 '12' '7.00' -> '19.00'
851
+ fmax3054 fma 1 '1.3' '-1.07' -> '0.23'
852
+ fmax3055 fma 1 '1.3' '-1.30' -> '0.00'
853
+ fmax3056 fma 1 '1.3' '-2.07' -> '-0.77'
854
+ fmax3057 fma 1 '1E+2' '1E+4' -> '1.01E+4'
855
+
856
+ -- zero preservation
857
+ precision: 6
858
+ fmax3060 fma 1 '10000e+9' '70000' -> '1.00000E+13' Inexact Rounded
859
+ fmax3061 fma 1 1 '0.0001' -> '1.0001'
860
+ fmax3062 fma 1 1 '0.00001' -> '1.00001'
861
+ fmax3063 fma 1 1 '0.000001' -> '1.00000' Inexact Rounded
862
+ fmax3064 fma 1 1 '0.0000001' -> '1.00000' Inexact Rounded
863
+ fmax3065 fma 1 1 '0.00000001' -> '1.00000' Inexact Rounded
864
+
865
+ -- some funny zeros [in case of bad signum]
866
+ fmax3070 fma 1 1 0 -> 1
867
+ fmax3071 fma 1 1 0. -> 1
868
+ fmax3072 fma 1 1 .0 -> 1.0
869
+ fmax3073 fma 1 1 0.0 -> 1.0
870
+ fmax3074 fma 1 1 0.00 -> 1.00
871
+ fmax3075 fma 1 0 1 -> 1
872
+ fmax3076 fma 1 0. 1 -> 1
873
+ fmax3077 fma 1 .0 1 -> 1.0
874
+ fmax3078 fma 1 0.0 1 -> 1.0
875
+ fmax3079 fma 1 0.00 1 -> 1.00
876
+
877
+ precision: 9
878
+
879
+ -- some carries
880
+ fmax3080 fma 1 999999998 1 -> 999999999
881
+ fmax3081 fma 1 999999999 1 -> 1.00000000E+9 Rounded
882
+ fmax3082 fma 1 99999999 1 -> 100000000
883
+ fmax3083 fma 1 9999999 1 -> 10000000
884
+ fmax3084 fma 1 999999 1 -> 1000000
885
+ fmax3085 fma 1 99999 1 -> 100000
886
+ fmax3086 fma 1 9999 1 -> 10000
887
+ fmax3087 fma 1 999 1 -> 1000
888
+ fmax3088 fma 1 99 1 -> 100
889
+ fmax3089 fma 1 9 1 -> 10
890
+
891
+
892
+ -- more LHS swaps
893
+ fmax3090 fma 1 '-56267E-10' 0 -> '-0.0000056267'
894
+ fmax3091 fma 1 '-56267E-6' 0 -> '-0.056267'
895
+ fmax3092 fma 1 '-56267E-5' 0 -> '-0.56267'
896
+ fmax3093 fma 1 '-56267E-4' 0 -> '-5.6267'
897
+ fmax3094 fma 1 '-56267E-3' 0 -> '-56.267'
898
+ fmax3095 fma 1 '-56267E-2' 0 -> '-562.67'
899
+ fmax3096 fma 1 '-56267E-1' 0 -> '-5626.7'
900
+ fmax3097 fma 1 '-56267E-0' 0 -> '-56267'
901
+ fmax3098 fma 1 '-5E-10' 0 -> '-5E-10'
902
+ fmax3099 fma 1 '-5E-7' 0 -> '-5E-7'
903
+ fmax3100 fma 1 '-5E-6' 0 -> '-0.000005'
904
+ fmax3101 fma 1 '-5E-5' 0 -> '-0.00005'
905
+ fmax3102 fma 1 '-5E-4' 0 -> '-0.0005'
906
+ fmax3103 fma 1 '-5E-1' 0 -> '-0.5'
907
+ fmax3104 fma 1 '-5E0' 0 -> '-5'
908
+ fmax3105 fma 1 '-5E1' 0 -> '-50'
909
+ fmax3106 fma 1 '-5E5' 0 -> '-500000'
910
+ fmax3107 fma 1 '-5E8' 0 -> '-500000000'
911
+ fmax3108 fma 1 '-5E9' 0 -> '-5.00000000E+9' Rounded
912
+ fmax3109 fma 1 '-5E10' 0 -> '-5.00000000E+10' Rounded
913
+ fmax3110 fma 1 '-5E11' 0 -> '-5.00000000E+11' Rounded
914
+ fmax3111 fma 1 '-5E100' 0 -> '-5.00000000E+100' Rounded
915
+
916
+ -- more RHS swaps
917
+ fmax3113 fma 1 0 '-56267E-10' -> '-0.0000056267'
918
+ fmax3114 fma 1 0 '-56267E-6' -> '-0.056267'
919
+ fmax3116 fma 1 0 '-56267E-5' -> '-0.56267'
920
+ fmax3117 fma 1 0 '-56267E-4' -> '-5.6267'
921
+ fmax3119 fma 1 0 '-56267E-3' -> '-56.267'
922
+ fmax3120 fma 1 0 '-56267E-2' -> '-562.67'
923
+ fmax3121 fma 1 0 '-56267E-1' -> '-5626.7'
924
+ fmax3122 fma 1 0 '-56267E-0' -> '-56267'
925
+ fmax3123 fma 1 0 '-5E-10' -> '-5E-10'
926
+ fmax3124 fma 1 0 '-5E-7' -> '-5E-7'
927
+ fmax3125 fma 1 0 '-5E-6' -> '-0.000005'
928
+ fmax3126 fma 1 0 '-5E-5' -> '-0.00005'
929
+ fmax3127 fma 1 0 '-5E-4' -> '-0.0005'
930
+ fmax3128 fma 1 0 '-5E-1' -> '-0.5'
931
+ fmax3129 fma 1 0 '-5E0' -> '-5'
932
+ fmax3130 fma 1 0 '-5E1' -> '-50'
933
+ fmax3131 fma 1 0 '-5E5' -> '-500000'
934
+ fmax3132 fma 1 0 '-5E8' -> '-500000000'
935
+ fmax3133 fma 1 0 '-5E9' -> '-5.00000000E+9' Rounded
936
+ fmax3134 fma 1 0 '-5E10' -> '-5.00000000E+10' Rounded
937
+ fmax3135 fma 1 0 '-5E11' -> '-5.00000000E+11' Rounded
938
+ fmax3136 fma 1 0 '-5E100' -> '-5.00000000E+100' Rounded
939
+
940
+ -- related
941
+ fmax3137 fma 1 1 '0E-12' -> '1.00000000' Rounded
942
+ fmax3138 fma 1 -1 '0E-12' -> '-1.00000000' Rounded
943
+ fmax3139 fma 1 '0E-12' 1 -> '1.00000000' Rounded
944
+ fmax3140 fma 1 '0E-12' -1 -> '-1.00000000' Rounded
945
+ fmax3141 fma 1 1E+4 0.0000 -> '10000.0000'
946
+ fmax3142 fma 1 1E+4 0.00000 -> '10000.0000' Rounded
947
+ fmax3143 fma 1 0.000 1E+5 -> '100000.000'
948
+ fmax3144 fma 1 0.0000 1E+5 -> '100000.000' Rounded
949
+
950
+ -- [some of the next group are really constructor tests]
951
+ fmax3146 fma 1 '00.0' 0 -> '0.0'
952
+ fmax3147 fma 1 '0.00' 0 -> '0.00'
953
+ fmax3148 fma 1 0 '0.00' -> '0.00'
954
+ fmax3149 fma 1 0 '00.0' -> '0.0'
955
+ fmax3150 fma 1 '00.0' '0.00' -> '0.00'
956
+ fmax3151 fma 1 '0.00' '00.0' -> '0.00'
957
+ fmax3152 fma 1 '3' '.3' -> '3.3'
958
+ fmax3153 fma 1 '3.' '.3' -> '3.3'
959
+ fmax3154 fma 1 '3.0' '.3' -> '3.3'
960
+ fmax3155 fma 1 '3.00' '.3' -> '3.30'
961
+ fmax3156 fma 1 '3' '3' -> '6'
962
+ fmax3157 fma 1 '3' '+3' -> '6'
963
+ fmax3158 fma 1 '3' '-3' -> '0'
964
+ fmax3159 fma 1 '0.3' '-0.3' -> '0.0'
965
+ fmax3160 fma 1 '0.03' '-0.03' -> '0.00'
966
+
967
+ -- try borderline precision, with carries, etc.
968
+ precision: 15
969
+ fmax3161 fma 1 '1E+12' '-1' -> '999999999999'
970
+ fmax3162 fma 1 '1E+12' '1.11' -> '1000000000001.11'
971
+ fmax3163 fma 1 '1.11' '1E+12' -> '1000000000001.11'
972
+ fmax3164 fma 1 '-1' '1E+12' -> '999999999999'
973
+ fmax3165 fma 1 '7E+12' '-1' -> '6999999999999'
974
+ fmax3166 fma 1 '7E+12' '1.11' -> '7000000000001.11'
975
+ fmax3167 fma 1 '1.11' '7E+12' -> '7000000000001.11'
976
+ fmax3168 fma 1 '-1' '7E+12' -> '6999999999999'
977
+
978
+ -- 123456789012345 123456789012345 1 23456789012345
979
+ fmax3170 fma 1 '0.444444444444444' '0.555555555555563' -> '1.00000000000001' Inexact Rounded
980
+ fmax3171 fma 1 '0.444444444444444' '0.555555555555562' -> '1.00000000000001' Inexact Rounded
981
+ fmax3172 fma 1 '0.444444444444444' '0.555555555555561' -> '1.00000000000001' Inexact Rounded
982
+ fmax3173 fma 1 '0.444444444444444' '0.555555555555560' -> '1.00000000000000' Inexact Rounded
983
+ fmax3174 fma 1 '0.444444444444444' '0.555555555555559' -> '1.00000000000000' Inexact Rounded
984
+ fmax3175 fma 1 '0.444444444444444' '0.555555555555558' -> '1.00000000000000' Inexact Rounded
985
+ fmax3176 fma 1 '0.444444444444444' '0.555555555555557' -> '1.00000000000000' Inexact Rounded
986
+ fmax3177 fma 1 '0.444444444444444' '0.555555555555556' -> '1.00000000000000' Rounded
987
+ fmax3178 fma 1 '0.444444444444444' '0.555555555555555' -> '0.999999999999999'
988
+ fmax3179 fma 1 '0.444444444444444' '0.555555555555554' -> '0.999999999999998'
989
+ fmax3180 fma 1 '0.444444444444444' '0.555555555555553' -> '0.999999999999997'
990
+ fmax3181 fma 1 '0.444444444444444' '0.555555555555552' -> '0.999999999999996'
991
+ fmax3182 fma 1 '0.444444444444444' '0.555555555555551' -> '0.999999999999995'
992
+ fmax3183 fma 1 '0.444444444444444' '0.555555555555550' -> '0.999999999999994'
993
+
994
+ -- and some more, including residue effects and different roundings
995
+ precision: 9
996
+ rounding: half_up
997
+ fmax3200 fma 1 '123456789' 0 -> '123456789'
998
+ fmax3201 fma 1 '123456789' 0.000000001 -> '123456789' Inexact Rounded
999
+ fmax3202 fma 1 '123456789' 0.000001 -> '123456789' Inexact Rounded
1000
+ fmax3203 fma 1 '123456789' 0.1 -> '123456789' Inexact Rounded
1001
+ fmax3204 fma 1 '123456789' 0.4 -> '123456789' Inexact Rounded
1002
+ fmax3205 fma 1 '123456789' 0.49 -> '123456789' Inexact Rounded
1003
+ fmax3206 fma 1 '123456789' 0.499999 -> '123456789' Inexact Rounded
1004
+ fmax3207 fma 1 '123456789' 0.499999999 -> '123456789' Inexact Rounded
1005
+ fmax3208 fma 1 '123456789' 0.5 -> '123456790' Inexact Rounded
1006
+ fmax3209 fma 1 '123456789' 0.500000001 -> '123456790' Inexact Rounded
1007
+ fmax3210 fma 1 '123456789' 0.500001 -> '123456790' Inexact Rounded
1008
+ fmax3211 fma 1 '123456789' 0.51 -> '123456790' Inexact Rounded
1009
+ fmax3212 fma 1 '123456789' 0.6 -> '123456790' Inexact Rounded
1010
+ fmax3213 fma 1 '123456789' 0.9 -> '123456790' Inexact Rounded
1011
+ fmax3214 fma 1 '123456789' 0.99999 -> '123456790' Inexact Rounded
1012
+ fmax3215 fma 1 '123456789' 0.999999999 -> '123456790' Inexact Rounded
1013
+ fmax3216 fma 1 '123456789' 1 -> '123456790'
1014
+ fmax3217 fma 1 '123456789' 1.000000001 -> '123456790' Inexact Rounded
1015
+ fmax3218 fma 1 '123456789' 1.00001 -> '123456790' Inexact Rounded
1016
+ fmax3219 fma 1 '123456789' 1.1 -> '123456790' Inexact Rounded
1017
+
1018
+ rounding: half_even
1019
+ fmax3220 fma 1 '123456789' 0 -> '123456789'
1020
+ fmax3221 fma 1 '123456789' 0.000000001 -> '123456789' Inexact Rounded
1021
+ fmax3222 fma 1 '123456789' 0.000001 -> '123456789' Inexact Rounded
1022
+ fmax3223 fma 1 '123456789' 0.1 -> '123456789' Inexact Rounded
1023
+ fmax3224 fma 1 '123456789' 0.4 -> '123456789' Inexact Rounded
1024
+ fmax3225 fma 1 '123456789' 0.49 -> '123456789' Inexact Rounded
1025
+ fmax3226 fma 1 '123456789' 0.499999 -> '123456789' Inexact Rounded
1026
+ fmax3227 fma 1 '123456789' 0.499999999 -> '123456789' Inexact Rounded
1027
+ fmax3228 fma 1 '123456789' 0.5 -> '123456790' Inexact Rounded
1028
+ fmax3229 fma 1 '123456789' 0.500000001 -> '123456790' Inexact Rounded
1029
+ fmax3230 fma 1 '123456789' 0.500001 -> '123456790' Inexact Rounded
1030
+ fmax3231 fma 1 '123456789' 0.51 -> '123456790' Inexact Rounded
1031
+ fmax3232 fma 1 '123456789' 0.6 -> '123456790' Inexact Rounded
1032
+ fmax3233 fma 1 '123456789' 0.9 -> '123456790' Inexact Rounded
1033
+ fmax3234 fma 1 '123456789' 0.99999 -> '123456790' Inexact Rounded
1034
+ fmax3235 fma 1 '123456789' 0.999999999 -> '123456790' Inexact Rounded
1035
+ fmax3236 fma 1 '123456789' 1 -> '123456790'
1036
+ fmax3237 fma 1 '123456789' 1.00000001 -> '123456790' Inexact Rounded
1037
+ fmax3238 fma 1 '123456789' 1.00001 -> '123456790' Inexact Rounded
1038
+ fmax3239 fma 1 '123456789' 1.1 -> '123456790' Inexact Rounded
1039
+ -- critical few with even bottom digit...
1040
+ fmax3240 fma 1 '123456788' 0.499999999 -> '123456788' Inexact Rounded
1041
+ fmax3241 fma 1 '123456788' 0.5 -> '123456788' Inexact Rounded
1042
+ fmax3242 fma 1 '123456788' 0.500000001 -> '123456789' Inexact Rounded
1043
+
1044
+ rounding: down
1045
+ fmax3250 fma 1 '123456789' 0 -> '123456789'
1046
+ fmax3251 fma 1 '123456789' 0.000000001 -> '123456789' Inexact Rounded
1047
+ fmax3252 fma 1 '123456789' 0.000001 -> '123456789' Inexact Rounded
1048
+ fmax3253 fma 1 '123456789' 0.1 -> '123456789' Inexact Rounded
1049
+ fmax3254 fma 1 '123456789' 0.4 -> '123456789' Inexact Rounded
1050
+ fmax3255 fma 1 '123456789' 0.49 -> '123456789' Inexact Rounded
1051
+ fmax3256 fma 1 '123456789' 0.499999 -> '123456789' Inexact Rounded
1052
+ fmax3257 fma 1 '123456789' 0.499999999 -> '123456789' Inexact Rounded
1053
+ fmax3258 fma 1 '123456789' 0.5 -> '123456789' Inexact Rounded
1054
+ fmax3259 fma 1 '123456789' 0.500000001 -> '123456789' Inexact Rounded
1055
+ fmax3260 fma 1 '123456789' 0.500001 -> '123456789' Inexact Rounded
1056
+ fmax3261 fma 1 '123456789' 0.51 -> '123456789' Inexact Rounded
1057
+ fmax3262 fma 1 '123456789' 0.6 -> '123456789' Inexact Rounded
1058
+ fmax3263 fma 1 '123456789' 0.9 -> '123456789' Inexact Rounded
1059
+ fmax3264 fma 1 '123456789' 0.99999 -> '123456789' Inexact Rounded
1060
+ fmax3265 fma 1 '123456789' 0.999999999 -> '123456789' Inexact Rounded
1061
+ fmax3266 fma 1 '123456789' 1 -> '123456790'
1062
+ fmax3267 fma 1 '123456789' 1.00000001 -> '123456790' Inexact Rounded
1063
+ fmax3268 fma 1 '123456789' 1.00001 -> '123456790' Inexact Rounded
1064
+ fmax3269 fma 1 '123456789' 1.1 -> '123456790' Inexact Rounded
1065
+
1066
+ -- input preparation tests (operands should not be rounded)
1067
+ precision: 3
1068
+ rounding: half_up
1069
+
1070
+ fmax3270 fma 1 '12345678900000' 9999999999999 -> '2.23E+13' Inexact Rounded
1071
+ fmax3271 fma 1 '9999999999999' 12345678900000 -> '2.23E+13' Inexact Rounded
1072
+
1073
+ fmax3272 fma 1 '12E+3' '3444' -> '1.54E+4' Inexact Rounded
1074
+ fmax3273 fma 1 '12E+3' '3446' -> '1.54E+4' Inexact Rounded
1075
+ fmax3274 fma 1 '12E+3' '3449.9' -> '1.54E+4' Inexact Rounded
1076
+ fmax3275 fma 1 '12E+3' '3450.0' -> '1.55E+4' Inexact Rounded
1077
+ fmax3276 fma 1 '12E+3' '3450.1' -> '1.55E+4' Inexact Rounded
1078
+ fmax3277 fma 1 '12E+3' '3454' -> '1.55E+4' Inexact Rounded
1079
+ fmax3278 fma 1 '12E+3' '3456' -> '1.55E+4' Inexact Rounded
1080
+
1081
+ fmax3281 fma 1 '3444' '12E+3' -> '1.54E+4' Inexact Rounded
1082
+ fmax3282 fma 1 '3446' '12E+3' -> '1.54E+4' Inexact Rounded
1083
+ fmax3283 fma 1 '3449.9' '12E+3' -> '1.54E+4' Inexact Rounded
1084
+ fmax3284 fma 1 '3450.0' '12E+3' -> '1.55E+4' Inexact Rounded
1085
+ fmax3285 fma 1 '3450.1' '12E+3' -> '1.55E+4' Inexact Rounded
1086
+ fmax3286 fma 1 '3454' '12E+3' -> '1.55E+4' Inexact Rounded
1087
+ fmax3287 fma 1 '3456' '12E+3' -> '1.55E+4' Inexact Rounded
1088
+
1089
+ rounding: half_down
1090
+ fmax3291 fma 1 '3444' '12E+3' -> '1.54E+4' Inexact Rounded
1091
+ fmax3292 fma 1 '3446' '12E+3' -> '1.54E+4' Inexact Rounded
1092
+ fmax3293 fma 1 '3449.9' '12E+3' -> '1.54E+4' Inexact Rounded
1093
+ fmax3294 fma 1 '3450.0' '12E+3' -> '1.54E+4' Inexact Rounded
1094
+ fmax3295 fma 1 '3450.1' '12E+3' -> '1.55E+4' Inexact Rounded
1095
+ fmax3296 fma 1 '3454' '12E+3' -> '1.55E+4' Inexact Rounded
1096
+ fmax3297 fma 1 '3456' '12E+3' -> '1.55E+4' Inexact Rounded
1097
+
1098
+ -- 1 in last place tests
1099
+ rounding: half_up
1100
+ fmax3301 fma 1 -1 1 -> 0
1101
+ fmax3302 fma 1 0 1 -> 1
1102
+ fmax3303 fma 1 1 1 -> 2
1103
+ fmax3304 fma 1 12 1 -> 13
1104
+ fmax3305 fma 1 98 1 -> 99
1105
+ fmax3306 fma 1 99 1 -> 100
1106
+ fmax3307 fma 1 100 1 -> 101
1107
+ fmax3308 fma 1 101 1 -> 102
1108
+ fmax3309 fma 1 -1 -1 -> -2
1109
+ fmax3310 fma 1 0 -1 -> -1
1110
+ fmax3311 fma 1 1 -1 -> 0
1111
+ fmax3312 fma 1 12 -1 -> 11
1112
+ fmax3313 fma 1 98 -1 -> 97
1113
+ fmax3314 fma 1 99 -1 -> 98
1114
+ fmax3315 fma 1 100 -1 -> 99
1115
+ fmax3316 fma 1 101 -1 -> 100
1116
+
1117
+ fmax3321 fma 1 -0.01 0.01 -> 0.00
1118
+ fmax3322 fma 1 0.00 0.01 -> 0.01
1119
+ fmax3323 fma 1 0.01 0.01 -> 0.02
1120
+ fmax3324 fma 1 0.12 0.01 -> 0.13
1121
+ fmax3325 fma 1 0.98 0.01 -> 0.99
1122
+ fmax3326 fma 1 0.99 0.01 -> 1.00
1123
+ fmax3327 fma 1 1.00 0.01 -> 1.01
1124
+ fmax3328 fma 1 1.01 0.01 -> 1.02
1125
+ fmax3329 fma 1 -0.01 -0.01 -> -0.02
1126
+ fmax3330 fma 1 0.00 -0.01 -> -0.01
1127
+ fmax3331 fma 1 0.01 -0.01 -> 0.00
1128
+ fmax3332 fma 1 0.12 -0.01 -> 0.11
1129
+ fmax3333 fma 1 0.98 -0.01 -> 0.97
1130
+ fmax3334 fma 1 0.99 -0.01 -> 0.98
1131
+ fmax3335 fma 1 1.00 -0.01 -> 0.99
1132
+ fmax3336 fma 1 1.01 -0.01 -> 1.00
1133
+
1134
+ -- some more cases where fma 1 ing 0 affects the coefficient
1135
+ precision: 9
1136
+ fmax3340 fma 1 1E+3 0 -> 1000
1137
+ fmax3341 fma 1 1E+8 0 -> 100000000
1138
+ fmax3342 fma 1 1E+9 0 -> 1.00000000E+9 Rounded
1139
+ fmax3343 fma 1 1E+10 0 -> 1.00000000E+10 Rounded
1140
+ -- which simply follow from these cases ...
1141
+ fmax3344 fma 1 1E+3 1 -> 1001
1142
+ fmax3345 fma 1 1E+8 1 -> 100000001
1143
+ fmax3346 fma 1 1E+9 1 -> 1.00000000E+9 Inexact Rounded
1144
+ fmax3347 fma 1 1E+10 1 -> 1.00000000E+10 Inexact Rounded
1145
+ fmax3348 fma 1 1E+3 7 -> 1007
1146
+ fmax3349 fma 1 1E+8 7 -> 100000007
1147
+ fmax3350 fma 1 1E+9 7 -> 1.00000001E+9 Inexact Rounded
1148
+ fmax3351 fma 1 1E+10 7 -> 1.00000000E+10 Inexact Rounded
1149
+
1150
+ -- tryzeros cases
1151
+ precision: 7
1152
+ rounding: half_up
1153
+ maxExponent: 92
1154
+ minexponent: -92
1155
+ fmax3361 fma 1 0E+50 10000E+1 -> 1.0000E+5
1156
+ fmax3362 fma 1 10000E+1 0E-50 -> 100000.0 Rounded
1157
+ fmax3363 fma 1 10000E+1 10000E-50 -> 100000.0 Rounded Inexact
1158
+ fmax3364 fma 1 9.999999E+92 -9.999999E+92 -> 0E+86
1159
+
1160
+ -- a curiosity from JSR 13 testing
1161
+ rounding: half_down
1162
+ precision: 10
1163
+ fmax3370 fma 1 99999999 81512 -> 100081511
1164
+ precision: 6
1165
+ fmax3371 fma 1 99999999 81512 -> 1.00082E+8 Rounded Inexact
1166
+ rounding: half_up
1167
+ precision: 10
1168
+ fmax3372 fma 1 99999999 81512 -> 100081511
1169
+ precision: 6
1170
+ fmax3373 fma 1 99999999 81512 -> 1.00082E+8 Rounded Inexact
1171
+ rounding: half_even
1172
+ precision: 10
1173
+ fmax3374 fma 1 99999999 81512 -> 100081511
1174
+ precision: 6
1175
+ fmax3375 fma 1 99999999 81512 -> 1.00082E+8 Rounded Inexact
1176
+
1177
+ -- ulp replacement tests
1178
+ precision: 9
1179
+ maxexponent: 999999
1180
+ minexponent: -999999
1181
+ fmax3400 fma 1 1 77e-7 -> 1.0000077
1182
+ fmax3401 fma 1 1 77e-8 -> 1.00000077
1183
+ fmax3402 fma 1 1 77e-9 -> 1.00000008 Inexact Rounded
1184
+ fmax3403 fma 1 1 77e-10 -> 1.00000001 Inexact Rounded
1185
+ fmax3404 fma 1 1 77e-11 -> 1.00000000 Inexact Rounded
1186
+ fmax3405 fma 1 1 77e-12 -> 1.00000000 Inexact Rounded
1187
+ fmax3406 fma 1 1 77e-999 -> 1.00000000 Inexact Rounded
1188
+ fmax3407 fma 1 1 77e-999999 -> 1.00000000 Inexact Rounded
1189
+
1190
+ fmax3410 fma 1 10 77e-7 -> 10.0000077
1191
+ fmax3411 fma 1 10 77e-8 -> 10.0000008 Inexact Rounded
1192
+ fmax3412 fma 1 10 77e-9 -> 10.0000001 Inexact Rounded
1193
+ fmax3413 fma 1 10 77e-10 -> 10.0000000 Inexact Rounded
1194
+ fmax3414 fma 1 10 77e-11 -> 10.0000000 Inexact Rounded
1195
+ fmax3415 fma 1 10 77e-12 -> 10.0000000 Inexact Rounded
1196
+ fmax3416 fma 1 10 77e-999 -> 10.0000000 Inexact Rounded
1197
+ fmax3417 fma 1 10 77e-999999 -> 10.0000000 Inexact Rounded
1198
+
1199
+ fmax3420 fma 1 77e-7 1 -> 1.0000077
1200
+ fmax3421 fma 1 77e-8 1 -> 1.00000077
1201
+ fmax3422 fma 1 77e-9 1 -> 1.00000008 Inexact Rounded
1202
+ fmax3423 fma 1 77e-10 1 -> 1.00000001 Inexact Rounded
1203
+ fmax3424 fma 1 77e-11 1 -> 1.00000000 Inexact Rounded
1204
+ fmax3425 fma 1 77e-12 1 -> 1.00000000 Inexact Rounded
1205
+ fmax3426 fma 1 77e-999 1 -> 1.00000000 Inexact Rounded
1206
+ fmax3427 fma 1 77e-999999 1 -> 1.00000000 Inexact Rounded
1207
+
1208
+ fmax3430 fma 1 77e-7 10 -> 10.0000077
1209
+ fmax3431 fma 1 77e-8 10 -> 10.0000008 Inexact Rounded
1210
+ fmax3432 fma 1 77e-9 10 -> 10.0000001 Inexact Rounded
1211
+ fmax3433 fma 1 77e-10 10 -> 10.0000000 Inexact Rounded
1212
+ fmax3434 fma 1 77e-11 10 -> 10.0000000 Inexact Rounded
1213
+ fmax3435 fma 1 77e-12 10 -> 10.0000000 Inexact Rounded
1214
+ fmax3436 fma 1 77e-999 10 -> 10.0000000 Inexact Rounded
1215
+ fmax3437 fma 1 77e-999999 10 -> 10.0000000 Inexact Rounded
1216
+
1217
+ -- negative ulps
1218
+ fmax3440 fma 1 1 -77e-7 -> 0.9999923
1219
+ fmax3441 fma 1 1 -77e-8 -> 0.99999923
1220
+ fmax3442 fma 1 1 -77e-9 -> 0.999999923
1221
+ fmax3443 fma 1 1 -77e-10 -> 0.999999992 Inexact Rounded
1222
+ fmax3444 fma 1 1 -77e-11 -> 0.999999999 Inexact Rounded
1223
+ fmax3445 fma 1 1 -77e-12 -> 1.00000000 Inexact Rounded
1224
+ fmax3446 fma 1 1 -77e-999 -> 1.00000000 Inexact Rounded
1225
+ fmax3447 fma 1 1 -77e-999999 -> 1.00000000 Inexact Rounded
1226
+
1227
+ fmax3450 fma 1 10 -77e-7 -> 9.9999923
1228
+ fmax3451 fma 1 10 -77e-8 -> 9.99999923
1229
+ fmax3452 fma 1 10 -77e-9 -> 9.99999992 Inexact Rounded
1230
+ fmax3453 fma 1 10 -77e-10 -> 9.99999999 Inexact Rounded
1231
+ fmax3454 fma 1 10 -77e-11 -> 10.0000000 Inexact Rounded
1232
+ fmax3455 fma 1 10 -77e-12 -> 10.0000000 Inexact Rounded
1233
+ fmax3456 fma 1 10 -77e-999 -> 10.0000000 Inexact Rounded
1234
+ fmax3457 fma 1 10 -77e-999999 -> 10.0000000 Inexact Rounded
1235
+
1236
+ fmax3460 fma 1 -77e-7 1 -> 0.9999923
1237
+ fmax3461 fma 1 -77e-8 1 -> 0.99999923
1238
+ fmax3462 fma 1 -77e-9 1 -> 0.999999923
1239
+ fmax3463 fma 1 -77e-10 1 -> 0.999999992 Inexact Rounded
1240
+ fmax3464 fma 1 -77e-11 1 -> 0.999999999 Inexact Rounded
1241
+ fmax3465 fma 1 -77e-12 1 -> 1.00000000 Inexact Rounded
1242
+ fmax3466 fma 1 -77e-999 1 -> 1.00000000 Inexact Rounded
1243
+ fmax3467 fma 1 -77e-999999 1 -> 1.00000000 Inexact Rounded
1244
+
1245
+ fmax3470 fma 1 -77e-7 10 -> 9.9999923
1246
+ fmax3471 fma 1 -77e-8 10 -> 9.99999923
1247
+ fmax3472 fma 1 -77e-9 10 -> 9.99999992 Inexact Rounded
1248
+ fmax3473 fma 1 -77e-10 10 -> 9.99999999 Inexact Rounded
1249
+ fmax3474 fma 1 -77e-11 10 -> 10.0000000 Inexact Rounded
1250
+ fmax3475 fma 1 -77e-12 10 -> 10.0000000 Inexact Rounded
1251
+ fmax3476 fma 1 -77e-999 10 -> 10.0000000 Inexact Rounded
1252
+ fmax3477 fma 1 -77e-999999 10 -> 10.0000000 Inexact Rounded
1253
+
1254
+ -- negative ulps
1255
+ fmax3480 fma 1 -1 77e-7 -> -0.9999923
1256
+ fmax3481 fma 1 -1 77e-8 -> -0.99999923
1257
+ fmax3482 fma 1 -1 77e-9 -> -0.999999923
1258
+ fmax3483 fma 1 -1 77e-10 -> -0.999999992 Inexact Rounded
1259
+ fmax3484 fma 1 -1 77e-11 -> -0.999999999 Inexact Rounded
1260
+ fmax3485 fma 1 -1 77e-12 -> -1.00000000 Inexact Rounded
1261
+ fmax3486 fma 1 -1 77e-999 -> -1.00000000 Inexact Rounded
1262
+ fmax3487 fma 1 -1 77e-999999 -> -1.00000000 Inexact Rounded
1263
+
1264
+ fmax3490 fma 1 -10 77e-7 -> -9.9999923
1265
+ fmax3491 fma 1 -10 77e-8 -> -9.99999923
1266
+ fmax3492 fma 1 -10 77e-9 -> -9.99999992 Inexact Rounded
1267
+ fmax3493 fma 1 -10 77e-10 -> -9.99999999 Inexact Rounded
1268
+ fmax3494 fma 1 -10 77e-11 -> -10.0000000 Inexact Rounded
1269
+ fmax3495 fma 1 -10 77e-12 -> -10.0000000 Inexact Rounded
1270
+ fmax3496 fma 1 -10 77e-999 -> -10.0000000 Inexact Rounded
1271
+ fmax3497 fma 1 -10 77e-999999 -> -10.0000000 Inexact Rounded
1272
+
1273
+ fmax3500 fma 1 77e-7 -1 -> -0.9999923
1274
+ fmax3501 fma 1 77e-8 -1 -> -0.99999923
1275
+ fmax3502 fma 1 77e-9 -1 -> -0.999999923
1276
+ fmax3503 fma 1 77e-10 -1 -> -0.999999992 Inexact Rounded
1277
+ fmax3504 fma 1 77e-11 -1 -> -0.999999999 Inexact Rounded
1278
+ fmax3505 fma 1 77e-12 -1 -> -1.00000000 Inexact Rounded
1279
+ fmax3506 fma 1 77e-999 -1 -> -1.00000000 Inexact Rounded
1280
+ fmax3507 fma 1 77e-999999 -1 -> -1.00000000 Inexact Rounded
1281
+
1282
+ fmax3510 fma 1 77e-7 -10 -> -9.9999923
1283
+ fmax3511 fma 1 77e-8 -10 -> -9.99999923
1284
+ fmax3512 fma 1 77e-9 -10 -> -9.99999992 Inexact Rounded
1285
+ fmax3513 fma 1 77e-10 -10 -> -9.99999999 Inexact Rounded
1286
+ fmax3514 fma 1 77e-11 -10 -> -10.0000000 Inexact Rounded
1287
+ fmax3515 fma 1 77e-12 -10 -> -10.0000000 Inexact Rounded
1288
+ fmax3516 fma 1 77e-999 -10 -> -10.0000000 Inexact Rounded
1289
+ fmax3517 fma 1 77e-999999 -10 -> -10.0000000 Inexact Rounded
1290
+
1291
+
1292
+ -- long operands
1293
+ maxexponent: 999
1294
+ minexponent: -999
1295
+ precision: 9
1296
+ fmax3521 fma 1 12345678000 0 -> 1.23456780E+10 Rounded
1297
+ fmax3522 fma 1 0 12345678000 -> 1.23456780E+10 Rounded
1298
+ fmax3523 fma 1 1234567800 0 -> 1.23456780E+9 Rounded
1299
+ fmax3524 fma 1 0 1234567800 -> 1.23456780E+9 Rounded
1300
+ fmax3525 fma 1 1234567890 0 -> 1.23456789E+9 Rounded
1301
+ fmax3526 fma 1 0 1234567890 -> 1.23456789E+9 Rounded
1302
+ fmax3527 fma 1 1234567891 0 -> 1.23456789E+9 Inexact Rounded
1303
+ fmax3528 fma 1 0 1234567891 -> 1.23456789E+9 Inexact Rounded
1304
+ fmax3529 fma 1 12345678901 0 -> 1.23456789E+10 Inexact Rounded
1305
+ fmax3530 fma 1 0 12345678901 -> 1.23456789E+10 Inexact Rounded
1306
+ fmax3531 fma 1 1234567896 0 -> 1.23456790E+9 Inexact Rounded
1307
+ fmax3532 fma 1 0 1234567896 -> 1.23456790E+9 Inexact Rounded
1308
+
1309
+ precision: 15
1310
+ -- still checking
1311
+ fmax3541 fma 1 12345678000 0 -> 12345678000
1312
+ fmax3542 fma 1 0 12345678000 -> 12345678000
1313
+ fmax3543 fma 1 1234567800 0 -> 1234567800
1314
+ fmax3544 fma 1 0 1234567800 -> 1234567800
1315
+ fmax3545 fma 1 1234567890 0 -> 1234567890
1316
+ fmax3546 fma 1 0 1234567890 -> 1234567890
1317
+ fmax3547 fma 1 1234567891 0 -> 1234567891
1318
+ fmax3548 fma 1 0 1234567891 -> 1234567891
1319
+ fmax3549 fma 1 12345678901 0 -> 12345678901
1320
+ fmax3550 fma 1 0 12345678901 -> 12345678901
1321
+ fmax3551 fma 1 1234567896 0 -> 1234567896
1322
+ fmax3552 fma 1 0 1234567896 -> 1234567896
1323
+
1324
+ -- verify a query
1325
+ precision: 16
1326
+ maxExponent: +394
1327
+ minExponent: -393
1328
+ rounding: down
1329
+ fmax3561 fma 1 1e-398 9.000000000000000E+384 -> 9.000000000000000E+384 Inexact Rounded
1330
+ fmax3562 fma 1 0 9.000000000000000E+384 -> 9.000000000000000E+384 Rounded
1331
+ -- and using decimal64 bounds...
1332
+ precision: 16
1333
+ maxExponent: +384
1334
+ minExponent: -383
1335
+ rounding: down
1336
+ fmax3563 fma 1 1e-388 9.000000000000000E+374 -> 9.000000000000000E+374 Inexact Rounded
1337
+ fmax3564 fma 1 0 9.000000000000000E+374 -> 9.000000000000000E+374 Rounded
1338
+
1339
+
1340
+ -- some more residue effects with extreme rounding
1341
+ precision: 9
1342
+ rounding: half_up
1343
+ fmax3601 fma 1 123456789 0.000001 -> 123456789 Inexact Rounded
1344
+ rounding: half_even
1345
+ fmax3602 fma 1 123456789 0.000001 -> 123456789 Inexact Rounded
1346
+ rounding: half_down
1347
+ fmax3603 fma 1 123456789 0.000001 -> 123456789 Inexact Rounded
1348
+ rounding: floor
1349
+ fmax3604 fma 1 123456789 0.000001 -> 123456789 Inexact Rounded
1350
+ rounding: ceiling
1351
+ fmax3605 fma 1 123456789 0.000001 -> 123456790 Inexact Rounded
1352
+ rounding: up
1353
+ fmax3606 fma 1 123456789 0.000001 -> 123456790 Inexact Rounded
1354
+ rounding: down
1355
+ fmax3607 fma 1 123456789 0.000001 -> 123456789 Inexact Rounded
1356
+
1357
+ rounding: half_up
1358
+ fmax3611 fma 1 123456789 -0.000001 -> 123456789 Inexact Rounded
1359
+ rounding: half_even
1360
+ fmax3612 fma 1 123456789 -0.000001 -> 123456789 Inexact Rounded
1361
+ rounding: half_down
1362
+ fmax3613 fma 1 123456789 -0.000001 -> 123456789 Inexact Rounded
1363
+ rounding: floor
1364
+ fmax3614 fma 1 123456789 -0.000001 -> 123456788 Inexact Rounded
1365
+ rounding: ceiling
1366
+ fmax3615 fma 1 123456789 -0.000001 -> 123456789 Inexact Rounded
1367
+ rounding: up
1368
+ fmax3616 fma 1 123456789 -0.000001 -> 123456789 Inexact Rounded
1369
+ rounding: down
1370
+ fmax3617 fma 1 123456789 -0.000001 -> 123456788 Inexact Rounded
1371
+
1372
+ rounding: half_up
1373
+ fmax3621 fma 1 123456789 0.499999 -> 123456789 Inexact Rounded
1374
+ rounding: half_even
1375
+ fmax3622 fma 1 123456789 0.499999 -> 123456789 Inexact Rounded
1376
+ rounding: half_down
1377
+ fmax3623 fma 1 123456789 0.499999 -> 123456789 Inexact Rounded
1378
+ rounding: floor
1379
+ fmax3624 fma 1 123456789 0.499999 -> 123456789 Inexact Rounded
1380
+ rounding: ceiling
1381
+ fmax3625 fma 1 123456789 0.499999 -> 123456790 Inexact Rounded
1382
+ rounding: up
1383
+ fmax3626 fma 1 123456789 0.499999 -> 123456790 Inexact Rounded
1384
+ rounding: down
1385
+ fmax3627 fma 1 123456789 0.499999 -> 123456789 Inexact Rounded
1386
+
1387
+ rounding: half_up
1388
+ fmax3631 fma 1 123456789 -0.499999 -> 123456789 Inexact Rounded
1389
+ rounding: half_even
1390
+ fmax3632 fma 1 123456789 -0.499999 -> 123456789 Inexact Rounded
1391
+ rounding: half_down
1392
+ fmax3633 fma 1 123456789 -0.499999 -> 123456789 Inexact Rounded
1393
+ rounding: floor
1394
+ fmax3634 fma 1 123456789 -0.499999 -> 123456788 Inexact Rounded
1395
+ rounding: ceiling
1396
+ fmax3635 fma 1 123456789 -0.499999 -> 123456789 Inexact Rounded
1397
+ rounding: up
1398
+ fmax3636 fma 1 123456789 -0.499999 -> 123456789 Inexact Rounded
1399
+ rounding: down
1400
+ fmax3637 fma 1 123456789 -0.499999 -> 123456788 Inexact Rounded
1401
+
1402
+ rounding: half_up
1403
+ fmax3641 fma 1 123456789 0.500001 -> 123456790 Inexact Rounded
1404
+ rounding: half_even
1405
+ fmax3642 fma 1 123456789 0.500001 -> 123456790 Inexact Rounded
1406
+ rounding: half_down
1407
+ fmax3643 fma 1 123456789 0.500001 -> 123456790 Inexact Rounded
1408
+ rounding: floor
1409
+ fmax3644 fma 1 123456789 0.500001 -> 123456789 Inexact Rounded
1410
+ rounding: ceiling
1411
+ fmax3645 fma 1 123456789 0.500001 -> 123456790 Inexact Rounded
1412
+ rounding: up
1413
+ fmax3646 fma 1 123456789 0.500001 -> 123456790 Inexact Rounded
1414
+ rounding: down
1415
+ fmax3647 fma 1 123456789 0.500001 -> 123456789 Inexact Rounded
1416
+
1417
+ rounding: half_up
1418
+ fmax3651 fma 1 123456789 -0.500001 -> 123456788 Inexact Rounded
1419
+ rounding: half_even
1420
+ fmax3652 fma 1 123456789 -0.500001 -> 123456788 Inexact Rounded
1421
+ rounding: half_down
1422
+ fmax3653 fma 1 123456789 -0.500001 -> 123456788 Inexact Rounded
1423
+ rounding: floor
1424
+ fmax3654 fma 1 123456789 -0.500001 -> 123456788 Inexact Rounded
1425
+ rounding: ceiling
1426
+ fmax3655 fma 1 123456789 -0.500001 -> 123456789 Inexact Rounded
1427
+ rounding: up
1428
+ fmax3656 fma 1 123456789 -0.500001 -> 123456789 Inexact Rounded
1429
+ rounding: down
1430
+ fmax3657 fma 1 123456789 -0.500001 -> 123456788 Inexact Rounded
1431
+
1432
+ -- long operand triangle
1433
+ rounding: half_up
1434
+ precision: 37
1435
+ fmax3660 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.42211023638922337114834538
1436
+ precision: 36
1437
+ fmax3661 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.4221102363892233711483454 Inexact Rounded
1438
+ precision: 35
1439
+ fmax3662 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.422110236389223371148345 Inexact Rounded
1440
+ precision: 34
1441
+ fmax3663 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.42211023638922337114835 Inexact Rounded
1442
+ precision: 33
1443
+ fmax3664 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.4221102363892233711483 Inexact Rounded
1444
+ precision: 32
1445
+ fmax3665 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.422110236389223371148 Inexact Rounded
1446
+ precision: 31
1447
+ fmax3666 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.42211023638922337115 Inexact Rounded
1448
+ precision: 30
1449
+ fmax3667 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.4221102363892233711 Inexact Rounded
1450
+ precision: 29
1451
+ fmax3668 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.422110236389223371 Inexact Rounded
1452
+ precision: 28
1453
+ fmax3669 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.42211023638922337 Inexact Rounded
1454
+ precision: 27
1455
+ fmax3670 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.4221102363892234 Inexact Rounded
1456
+ precision: 26
1457
+ fmax3671 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.422110236389223 Inexact Rounded
1458
+ precision: 25
1459
+ fmax3672 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.42211023638922 Inexact Rounded
1460
+ precision: 24
1461
+ fmax3673 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.4221102363892 Inexact Rounded
1462
+ precision: 23
1463
+ fmax3674 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.422110236389 Inexact Rounded
1464
+ precision: 22
1465
+ fmax3675 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.42211023639 Inexact Rounded
1466
+ precision: 21
1467
+ fmax3676 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.4221102364 Inexact Rounded
1468
+ precision: 20
1469
+ fmax3677 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.422110236 Inexact Rounded
1470
+ precision: 19
1471
+ fmax3678 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.42211024 Inexact Rounded
1472
+ precision: 18
1473
+ fmax3679 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.4221102 Inexact Rounded
1474
+ precision: 17
1475
+ fmax3680 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.422110 Inexact Rounded
1476
+ precision: 16
1477
+ fmax3681 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.42211 Inexact Rounded
1478
+ precision: 15
1479
+ fmax3682 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.4221 Inexact Rounded
1480
+ precision: 14
1481
+ fmax3683 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.422 Inexact Rounded
1482
+ precision: 13
1483
+ fmax3684 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.42 Inexact Rounded
1484
+ precision: 12
1485
+ fmax3685 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166.4 Inexact Rounded
1486
+ precision: 11
1487
+ fmax3686 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 98471174166 Inexact Rounded
1488
+ precision: 10
1489
+ fmax3687 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 9.847117417E+10 Inexact Rounded
1490
+ precision: 9
1491
+ fmax3688 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 9.84711742E+10 Inexact Rounded
1492
+ precision: 8
1493
+ fmax3689 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 9.8471174E+10 Inexact Rounded
1494
+ precision: 7
1495
+ fmax3690 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 9.847117E+10 Inexact Rounded
1496
+ precision: 6
1497
+ fmax3691 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 9.84712E+10 Inexact Rounded
1498
+ precision: 5
1499
+ fmax3692 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 9.8471E+10 Inexact Rounded
1500
+ precision: 4
1501
+ fmax3693 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 9.847E+10 Inexact Rounded
1502
+ precision: 3
1503
+ fmax3694 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 9.85E+10 Inexact Rounded
1504
+ precision: 2
1505
+ fmax3695 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 9.8E+10 Inexact Rounded
1506
+ precision: 1
1507
+ fmax3696 fma 1 98471198160.56524417578665886060 -23994.14313393939743548945165462 -> 1E+11 Inexact Rounded
1508
+
1509
+ -- more zeros, etc.
1510
+ rounding: half_up
1511
+ precision: 9
1512
+
1513
+ fmax3701 fma 1 5.00 1.00E-3 -> 5.00100
1514
+ fmax3702 fma 1 00.00 0.000 -> 0.000
1515
+ fmax3703 fma 1 00.00 0E-3 -> 0.000
1516
+ fmax3704 fma 1 0E-3 00.00 -> 0.000
1517
+
1518
+ fmax3710 fma 1 0E+3 00.00 -> 0.00
1519
+ fmax3711 fma 1 0E+3 00.0 -> 0.0
1520
+ fmax3712 fma 1 0E+3 00. -> 0
1521
+ fmax3713 fma 1 0E+3 00.E+1 -> 0E+1
1522
+ fmax3714 fma 1 0E+3 00.E+2 -> 0E+2
1523
+ fmax3715 fma 1 0E+3 00.E+3 -> 0E+3
1524
+ fmax3716 fma 1 0E+3 00.E+4 -> 0E+3
1525
+ fmax3717 fma 1 0E+3 00.E+5 -> 0E+3
1526
+ fmax3718 fma 1 0E+3 -00.0 -> 0.0
1527
+ fmax3719 fma 1 0E+3 -00. -> 0
1528
+ fmax3731 fma 1 0E+3 -00.E+1 -> 0E+1
1529
+
1530
+ fmax3720 fma 1 00.00 0E+3 -> 0.00
1531
+ fmax3721 fma 1 00.0 0E+3 -> 0.0
1532
+ fmax3722 fma 1 00. 0E+3 -> 0
1533
+ fmax3723 fma 1 00.E+1 0E+3 -> 0E+1
1534
+ fmax3724 fma 1 00.E+2 0E+3 -> 0E+2
1535
+ fmax3725 fma 1 00.E+3 0E+3 -> 0E+3
1536
+ fmax3726 fma 1 00.E+4 0E+3 -> 0E+3
1537
+ fmax3727 fma 1 00.E+5 0E+3 -> 0E+3
1538
+ fmax3728 fma 1 -00.00 0E+3 -> 0.00
1539
+ fmax3729 fma 1 -00.0 0E+3 -> 0.0
1540
+ fmax3730 fma 1 -00. 0E+3 -> 0
1541
+
1542
+ fmax3732 fma 1 0 0 -> 0
1543
+ fmax3733 fma 1 0 -0 -> 0
1544
+ fmax3734 fma 1 -0 0 -> 0
1545
+ fmax3735 fma 1 -0 -0 -> -0 -- IEEE 854 special case
1546
+
1547
+ fmax3736 fma 1 1 -1 -> 0
1548
+ fmax3737 fma 1 -1 -1 -> -2
1549
+ fmax3738 fma 1 1 1 -> 2
1550
+ fmax3739 fma 1 -1 1 -> 0
1551
+
1552
+ fmax3741 fma 1 0 -1 -> -1
1553
+ fmax3742 fma 1 -0 -1 -> -1
1554
+ fmax3743 fma 1 0 1 -> 1
1555
+ fmax3744 fma 1 -0 1 -> 1
1556
+ fmax3745 fma 1 -1 0 -> -1
1557
+ fmax3746 fma 1 -1 -0 -> -1
1558
+ fmax3747 fma 1 1 0 -> 1
1559
+ fmax3748 fma 1 1 -0 -> 1
1560
+
1561
+ fmax3751 fma 1 0.0 -1 -> -1.0
1562
+ fmax3752 fma 1 -0.0 -1 -> -1.0
1563
+ fmax3753 fma 1 0.0 1 -> 1.0
1564
+ fmax3754 fma 1 -0.0 1 -> 1.0
1565
+ fmax3755 fma 1 -1.0 0 -> -1.0
1566
+ fmax3756 fma 1 -1.0 -0 -> -1.0
1567
+ fmax3757 fma 1 1.0 0 -> 1.0
1568
+ fmax3758 fma 1 1.0 -0 -> 1.0
1569
+
1570
+ fmax3761 fma 1 0 -1.0 -> -1.0
1571
+ fmax3762 fma 1 -0 -1.0 -> -1.0
1572
+ fmax3763 fma 1 0 1.0 -> 1.0
1573
+ fmax3764 fma 1 -0 1.0 -> 1.0
1574
+ fmax3765 fma 1 -1 0.0 -> -1.0
1575
+ fmax3766 fma 1 -1 -0.0 -> -1.0
1576
+ fmax3767 fma 1 1 0.0 -> 1.0
1577
+ fmax3768 fma 1 1 -0.0 -> 1.0
1578
+
1579
+ fmax3771 fma 1 0.0 -1.0 -> -1.0
1580
+ fmax3772 fma 1 -0.0 -1.0 -> -1.0
1581
+ fmax3773 fma 1 0.0 1.0 -> 1.0
1582
+ fmax3774 fma 1 -0.0 1.0 -> 1.0
1583
+ fmax3775 fma 1 -1.0 0.0 -> -1.0
1584
+ fmax3776 fma 1 -1.0 -0.0 -> -1.0
1585
+ fmax3777 fma 1 1.0 0.0 -> 1.0
1586
+ fmax3778 fma 1 1.0 -0.0 -> 1.0
1587
+
1588
+ -- Specials
1589
+ fmax3780 fma 1 -Inf -Inf -> -Infinity
1590
+ fmax3781 fma 1 -Inf -1000 -> -Infinity
1591
+ fmax3782 fma 1 -Inf -1 -> -Infinity
1592
+ fmax3783 fma 1 -Inf -0 -> -Infinity
1593
+ fmax3784 fma 1 -Inf 0 -> -Infinity
1594
+ fmax3785 fma 1 -Inf 1 -> -Infinity
1595
+ fmax3786 fma 1 -Inf 1000 -> -Infinity
1596
+ fmax3787 fma 1 -1000 -Inf -> -Infinity
1597
+ fmax3788 fma 1 -Inf -Inf -> -Infinity
1598
+ fmax3789 fma 1 -1 -Inf -> -Infinity
1599
+ fmax3790 fma 1 -0 -Inf -> -Infinity
1600
+ fmax3791 fma 1 0 -Inf -> -Infinity
1601
+ fmax3792 fma 1 1 -Inf -> -Infinity
1602
+ fmax3793 fma 1 1000 -Inf -> -Infinity
1603
+ fmax3794 fma 1 Inf -Inf -> NaN Invalid_operation
1604
+
1605
+ fmax3800 fma 1 Inf -Inf -> NaN Invalid_operation
1606
+ fmax3801 fma 1 Inf -1000 -> Infinity
1607
+ fmax3802 fma 1 Inf -1 -> Infinity
1608
+ fmax3803 fma 1 Inf -0 -> Infinity
1609
+ fmax3804 fma 1 Inf 0 -> Infinity
1610
+ fmax3805 fma 1 Inf 1 -> Infinity
1611
+ fmax3806 fma 1 Inf 1000 -> Infinity
1612
+ fmax3807 fma 1 Inf Inf -> Infinity
1613
+ fmax3808 fma 1 -1000 Inf -> Infinity
1614
+ fmax3809 fma 1 -Inf Inf -> NaN Invalid_operation
1615
+ fmax3810 fma 1 -1 Inf -> Infinity
1616
+ fmax3811 fma 1 -0 Inf -> Infinity
1617
+ fmax3812 fma 1 0 Inf -> Infinity
1618
+ fmax3813 fma 1 1 Inf -> Infinity
1619
+ fmax3814 fma 1 1000 Inf -> Infinity
1620
+ fmax3815 fma 1 Inf Inf -> Infinity
1621
+
1622
+ fmax3821 fma 1 NaN -Inf -> NaN
1623
+ fmax3822 fma 1 NaN -1000 -> NaN
1624
+ fmax3823 fma 1 NaN -1 -> NaN
1625
+ fmax3824 fma 1 NaN -0 -> NaN
1626
+ fmax3825 fma 1 NaN 0 -> NaN
1627
+ fmax3826 fma 1 NaN 1 -> NaN
1628
+ fmax3827 fma 1 NaN 1000 -> NaN
1629
+ fmax3828 fma 1 NaN Inf -> NaN
1630
+ fmax3829 fma 1 NaN NaN -> NaN
1631
+ fmax3830 fma 1 -Inf NaN -> NaN
1632
+ fmax3831 fma 1 -1000 NaN -> NaN
1633
+ fmax3832 fma 1 -1 NaN -> NaN
1634
+ fmax3833 fma 1 -0 NaN -> NaN
1635
+ fmax3834 fma 1 0 NaN -> NaN
1636
+ fmax3835 fma 1 1 NaN -> NaN
1637
+ fmax3836 fma 1 1000 NaN -> NaN
1638
+ fmax3837 fma 1 Inf NaN -> NaN
1639
+
1640
+ fmax3841 fma 1 sNaN -Inf -> NaN Invalid_operation
1641
+ fmax3842 fma 1 sNaN -1000 -> NaN Invalid_operation
1642
+ fmax3843 fma 1 sNaN -1 -> NaN Invalid_operation
1643
+ fmax3844 fma 1 sNaN -0 -> NaN Invalid_operation
1644
+ fmax3845 fma 1 sNaN 0 -> NaN Invalid_operation
1645
+ fmax3846 fma 1 sNaN 1 -> NaN Invalid_operation
1646
+ fmax3847 fma 1 sNaN 1000 -> NaN Invalid_operation
1647
+ fmax3848 fma 1 sNaN NaN -> NaN Invalid_operation
1648
+ fmax3849 fma 1 sNaN sNaN -> NaN Invalid_operation
1649
+ fmax3850 fma 1 NaN sNaN -> NaN Invalid_operation
1650
+ fmax3851 fma 1 -Inf sNaN -> NaN Invalid_operation
1651
+ fmax3852 fma 1 -1000 sNaN -> NaN Invalid_operation
1652
+ fmax3853 fma 1 -1 sNaN -> NaN Invalid_operation
1653
+ fmax3854 fma 1 -0 sNaN -> NaN Invalid_operation
1654
+ fmax3855 fma 1 0 sNaN -> NaN Invalid_operation
1655
+ fmax3856 fma 1 1 sNaN -> NaN Invalid_operation
1656
+ fmax3857 fma 1 1000 sNaN -> NaN Invalid_operation
1657
+ fmax3858 fma 1 Inf sNaN -> NaN Invalid_operation
1658
+ fmax3859 fma 1 NaN sNaN -> NaN Invalid_operation
1659
+
1660
+ -- propagating NaNs
1661
+ fmax3861 fma 1 NaN1 -Inf -> NaN1
1662
+ fmax3862 fma 1 +NaN2 -1000 -> NaN2
1663
+ fmax3863 fma 1 NaN3 1000 -> NaN3
1664
+ fmax3864 fma 1 NaN4 Inf -> NaN4
1665
+ fmax3865 fma 1 NaN5 +NaN6 -> NaN5
1666
+ fmax3866 fma 1 -Inf NaN7 -> NaN7
1667
+ fmax3867 fma 1 -1000 NaN8 -> NaN8
1668
+ fmax3868 fma 1 1000 NaN9 -> NaN9
1669
+ fmax3869 fma 1 Inf +NaN10 -> NaN10
1670
+ fmax3871 fma 1 sNaN11 -Inf -> NaN11 Invalid_operation
1671
+ fmax3872 fma 1 sNaN12 -1000 -> NaN12 Invalid_operation
1672
+ fmax3873 fma 1 sNaN13 1000 -> NaN13 Invalid_operation
1673
+ fmax3874 fma 1 sNaN14 NaN17 -> NaN14 Invalid_operation
1674
+ fmax3875 fma 1 sNaN15 sNaN18 -> NaN15 Invalid_operation
1675
+ fmax3876 fma 1 NaN16 sNaN19 -> NaN19 Invalid_operation
1676
+ fmax3877 fma 1 -Inf +sNaN20 -> NaN20 Invalid_operation
1677
+ fmax3878 fma 1 -1000 sNaN21 -> NaN21 Invalid_operation
1678
+ fmax3879 fma 1 1000 sNaN22 -> NaN22 Invalid_operation
1679
+ fmax3880 fma 1 Inf sNaN23 -> NaN23 Invalid_operation
1680
+ fmax3881 fma 1 +NaN25 +sNaN24 -> NaN24 Invalid_operation
1681
+ fmax3882 fma 1 -NaN26 NaN28 -> -NaN26
1682
+ fmax3883 fma 1 -sNaN27 sNaN29 -> -NaN27 Invalid_operation
1683
+ fmax3884 fma 1 1000 -NaN30 -> -NaN30
1684
+ fmax3885 fma 1 1000 -sNaN31 -> -NaN31 Invalid_operation
1685
+
1686
+ -- overflow, underflow and subnormal tests
1687
+ maxexponent: 999999
1688
+ minexponent: -999999
1689
+ precision: 9
1690
+ fmax3890 fma 1 1E+999999 9E+999999 -> Infinity Overflow Inexact Rounded
1691
+ fmax3891 fma 1 9E+999999 1E+999999 -> Infinity Overflow Inexact Rounded
1692
+ fmax3892 fma 1 -1.1E-999999 1E-999999 -> -1E-1000000 Subnormal
1693
+ fmax3893 fma 1 1E-999999 -1.1e-999999 -> -1E-1000000 Subnormal
1694
+ fmax3894 fma 1 -1.0001E-999999 1E-999999 -> -1E-1000003 Subnormal
1695
+ fmax3895 fma 1 1E-999999 -1.0001e-999999 -> -1E-1000003 Subnormal
1696
+ fmax3896 fma 1 -1E+999999 -9E+999999 -> -Infinity Overflow Inexact Rounded
1697
+ fmax3897 fma 1 -9E+999999 -1E+999999 -> -Infinity Overflow Inexact Rounded
1698
+ fmax3898 fma 1 +1.1E-999999 -1E-999999 -> 1E-1000000 Subnormal
1699
+ fmax3899 fma 1 -1E-999999 +1.1e-999999 -> 1E-1000000 Subnormal
1700
+ fmax3900 fma 1 +1.0001E-999999 -1E-999999 -> 1E-1000003 Subnormal
1701
+ fmax3901 fma 1 -1E-999999 +1.0001e-999999 -> 1E-1000003 Subnormal
1702
+ fmax3902 fma 1 -1E+999999 +9E+999999 -> 8E+999999
1703
+ fmax3903 fma 1 -9E+999999 +1E+999999 -> -8E+999999
1704
+
1705
+ precision: 3
1706
+ fmax3904 fma 1 0 -9.999E+999999 -> -Infinity Inexact Overflow Rounded
1707
+ fmax3905 fma 1 -9.999E+999999 0 -> -Infinity Inexact Overflow Rounded
1708
+ fmax3906 fma 1 0 9.999E+999999 -> Infinity Inexact Overflow Rounded
1709
+ fmax3907 fma 1 9.999E+999999 0 -> Infinity Inexact Overflow Rounded
1710
+
1711
+ precision: 3
1712
+ maxexponent: 999
1713
+ minexponent: -999
1714
+ fmax3910 fma 1 1.00E-999 0 -> 1.00E-999
1715
+ fmax3911 fma 1 0.1E-999 0 -> 1E-1000 Subnormal
1716
+ fmax3912 fma 1 0.10E-999 0 -> 1.0E-1000 Subnormal
1717
+ fmax3913 fma 1 0.100E-999 0 -> 1.0E-1000 Subnormal Rounded
1718
+ fmax3914 fma 1 0.01E-999 0 -> 1E-1001 Subnormal
1719
+ -- next is rounded to Nmin
1720
+ fmax3915 fma 1 0.999E-999 0 -> 1.00E-999 Inexact Rounded Subnormal Underflow
1721
+ fmax3916 fma 1 0.099E-999 0 -> 1.0E-1000 Inexact Rounded Subnormal Underflow
1722
+ fmax3917 fma 1 0.009E-999 0 -> 1E-1001 Inexact Rounded Subnormal Underflow
1723
+ fmax3918 fma 1 0.001E-999 0 -> 0E-1001 Inexact Rounded Subnormal Underflow Clamped
1724
+ fmax3919 fma 1 0.0009E-999 0 -> 0E-1001 Inexact Rounded Subnormal Underflow Clamped
1725
+ fmax3920 fma 1 0.0001E-999 0 -> 0E-1001 Inexact Rounded Subnormal Underflow Clamped
1726
+
1727
+ fmax3930 fma 1 -1.00E-999 0 -> -1.00E-999
1728
+ fmax3931 fma 1 -0.1E-999 0 -> -1E-1000 Subnormal
1729
+ fmax3932 fma 1 -0.10E-999 0 -> -1.0E-1000 Subnormal
1730
+ fmax3933 fma 1 -0.100E-999 0 -> -1.0E-1000 Subnormal Rounded
1731
+ fmax3934 fma 1 -0.01E-999 0 -> -1E-1001 Subnormal
1732
+ -- next is rounded to Nmin
1733
+ fmax3935 fma 1 -0.999E-999 0 -> -1.00E-999 Inexact Rounded Subnormal Underflow
1734
+ fmax3936 fma 1 -0.099E-999 0 -> -1.0E-1000 Inexact Rounded Subnormal Underflow
1735
+ fmax3937 fma 1 -0.009E-999 0 -> -1E-1001 Inexact Rounded Subnormal Underflow
1736
+ fmax3938 fma 1 -0.001E-999 0 -> -0E-1001 Inexact Rounded Subnormal Underflow Clamped
1737
+ fmax3939 fma 1 -0.0009E-999 0 -> -0E-1001 Inexact Rounded Subnormal Underflow Clamped
1738
+ fmax3940 fma 1 -0.0001E-999 0 -> -0E-1001 Inexact Rounded Subnormal Underflow Clamped
1739
+
1740
+ -- some non-zero subnormal fma 1 s
1741
+ fmax3950 fma 1 1.00E-999 0.1E-999 -> 1.10E-999
1742
+ fmax3951 fma 1 0.1E-999 0.1E-999 -> 2E-1000 Subnormal
1743
+ fmax3952 fma 1 0.10E-999 0.1E-999 -> 2.0E-1000 Subnormal
1744
+ fmax3953 fma 1 0.100E-999 0.1E-999 -> 2.0E-1000 Subnormal Rounded
1745
+ fmax3954 fma 1 0.01E-999 0.1E-999 -> 1.1E-1000 Subnormal
1746
+ fmax3955 fma 1 0.999E-999 0.1E-999 -> 1.10E-999 Inexact Rounded
1747
+ fmax3956 fma 1 0.099E-999 0.1E-999 -> 2.0E-1000 Inexact Rounded Subnormal Underflow
1748
+ fmax3957 fma 1 0.009E-999 0.1E-999 -> 1.1E-1000 Inexact Rounded Subnormal Underflow
1749
+ fmax3958 fma 1 0.001E-999 0.1E-999 -> 1.0E-1000 Inexact Rounded Subnormal Underflow
1750
+ fmax3959 fma 1 0.0009E-999 0.1E-999 -> 1.0E-1000 Inexact Rounded Subnormal Underflow
1751
+ fmax3960 fma 1 0.0001E-999 0.1E-999 -> 1.0E-1000 Inexact Rounded Subnormal Underflow
1752
+ -- negatives...
1753
+ fmax3961 fma 1 1.00E-999 -0.1E-999 -> 9.0E-1000 Subnormal
1754
+ fmax3962 fma 1 0.1E-999 -0.1E-999 -> 0E-1000
1755
+ fmax3963 fma 1 0.10E-999 -0.1E-999 -> 0E-1001
1756
+ fmax3964 fma 1 0.100E-999 -0.1E-999 -> 0E-1001 Clamped
1757
+ fmax3965 fma 1 0.01E-999 -0.1E-999 -> -9E-1001 Subnormal
1758
+ fmax3966 fma 1 0.999E-999 -0.1E-999 -> 9.0E-1000 Inexact Rounded Subnormal Underflow
1759
+ fmax3967 fma 1 0.099E-999 -0.1E-999 -> -0E-1001 Inexact Rounded Subnormal Underflow Clamped
1760
+ fmax3968 fma 1 0.009E-999 -0.1E-999 -> -9E-1001 Inexact Rounded Subnormal Underflow
1761
+ fmax3969 fma 1 0.001E-999 -0.1E-999 -> -1.0E-1000 Inexact Rounded Subnormal Underflow
1762
+ fmax3970 fma 1 0.0009E-999 -0.1E-999 -> -1.0E-1000 Inexact Rounded Subnormal Underflow
1763
+ fmax3971 fma 1 0.0001E-999 -0.1E-999 -> -1.0E-1000 Inexact Rounded Subnormal Underflow
1764
+
1765
+ -- some 'real' numbers
1766
+ maxExponent: 384
1767
+ minExponent: -383
1768
+ precision: 8
1769
+ fmax3566 fma 1 99999061735E-394 0E-394 -> 9.999906E-384 Inexact Rounded Underflow Subnormal
1770
+ precision: 7
1771
+ fmax3567 fma 1 99999061735E-394 0E-394 -> 9.99991E-384 Inexact Rounded Underflow Subnormal
1772
+ precision: 6
1773
+ fmax3568 fma 1 99999061735E-394 0E-394 -> 9.9999E-384 Inexact Rounded Underflow Subnormal
1774
+
1775
+ -- now the case where we can get underflow but the result is normal
1776
+ -- [note this can't happen if the operands are also bounded, as we
1777
+ -- cannot represent 1E-399, for example]
1778
+ precision: 16
1779
+ rounding: half_up
1780
+ maxExponent: 384
1781
+ minExponent: -383
1782
+
1783
+ fmax3571 fma 1 1E-383 0 -> 1E-383
1784
+ fmax3572 fma 1 1E-384 0 -> 1E-384 Subnormal
1785
+ fmax3573 fma 1 1E-383 1E-384 -> 1.1E-383
1786
+ fmax3574 subtract 1E-383 1E-384 -> 9E-384 Subnormal
1787
+
1788
+ -- Here we explore the boundary of rounding a subnormal to Nmin
1789
+ fmax3575 subtract 1E-383 1E-398 -> 9.99999999999999E-384 Subnormal
1790
+ fmax3576 subtract 1E-383 1E-398 -> 9.99999999999999E-384 Subnormal
1791
+ fmax3577 subtract 1E-383 1E-399 -> 1.000000000000000E-383 Underflow Inexact Subnormal Rounded
1792
+ fmax3578 subtract 1E-383 1E-400 -> 1.000000000000000E-383 Underflow Inexact Subnormal Rounded
1793
+ fmax3579 subtract 1E-383 1E-401 -> 1.000000000000000E-383 Underflow Inexact Subnormal Rounded
1794
+ fmax3580 subtract 1E-383 1E-402 -> 1.000000000000000E-383 Underflow Inexact Subnormal Rounded
1795
+
1796
+ -- check for double-rounded subnormals
1797
+ precision: 5
1798
+ maxexponent: 79
1799
+ minexponent: -79
1800
+ -- Add: lhs and rhs 0
1801
+ fmax31001 fma 1 1.52444E-80 0 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1802
+ fmax31002 fma 1 1.52445E-80 0 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1803
+ fmax31003 fma 1 1.52446E-80 0 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1804
+ fmax31004 fma 1 0 1.52444E-80 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1805
+ fmax31005 fma 1 0 1.52445E-80 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1806
+ fmax31006 fma 1 0 1.52446E-80 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1807
+
1808
+ -- Add: lhs >> rhs and vice versa
1809
+ fmax31011 fma 1 1.52444E-80 1E-100 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1810
+ fmax31012 fma 1 1.52445E-80 1E-100 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1811
+ fmax31013 fma 1 1.52446E-80 1E-100 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1812
+ fmax31014 fma 1 1E-100 1.52444E-80 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1813
+ fmax31015 fma 1 1E-100 1.52445E-80 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1814
+ fmax31016 fma 1 1E-100 1.52446E-80 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1815
+
1816
+ -- Add: lhs + rhs fma 1 ition carried out
1817
+ fmax31021 fma 1 1.52443E-80 1.00001E-80 -> 2.524E-80 Inexact Rounded Subnormal Underflow
1818
+ fmax31022 fma 1 1.52444E-80 1.00001E-80 -> 2.524E-80 Inexact Rounded Subnormal Underflow
1819
+ fmax31023 fma 1 1.52445E-80 1.00001E-80 -> 2.524E-80 Inexact Rounded Subnormal Underflow
1820
+ fmax31024 fma 1 1.00001E-80 1.52443E-80 -> 2.524E-80 Inexact Rounded Subnormal Underflow
1821
+ fmax31025 fma 1 1.00001E-80 1.52444E-80 -> 2.524E-80 Inexact Rounded Subnormal Underflow
1822
+ fmax31026 fma 1 1.00001E-80 1.52445E-80 -> 2.524E-80 Inexact Rounded Subnormal Underflow
1823
+
1824
+ -- And for round down full and subnormal results
1825
+ precision: 16
1826
+ maxExponent: +384
1827
+ minExponent: -383
1828
+ rounding: down
1829
+
1830
+ fmax31100 fma 1 1e+2 -1e-383 -> 99.99999999999999 Rounded Inexact
1831
+ fmax31101 fma 1 1e+1 -1e-383 -> 9.999999999999999 Rounded Inexact
1832
+ fmax31103 fma 1 +1 -1e-383 -> 0.9999999999999999 Rounded Inexact
1833
+ fmax31104 fma 1 1e-1 -1e-383 -> 0.09999999999999999 Rounded Inexact
1834
+ fmax31105 fma 1 1e-2 -1e-383 -> 0.009999999999999999 Rounded Inexact
1835
+ fmax31106 fma 1 1e-3 -1e-383 -> 0.0009999999999999999 Rounded Inexact
1836
+ fmax31107 fma 1 1e-4 -1e-383 -> 0.00009999999999999999 Rounded Inexact
1837
+ fmax31108 fma 1 1e-5 -1e-383 -> 0.000009999999999999999 Rounded Inexact
1838
+ fmax31109 fma 1 1e-6 -1e-383 -> 9.999999999999999E-7 Rounded Inexact
1839
+
1840
+ rounding: ceiling
1841
+ fmax31110 fma 1 -1e+2 +1e-383 -> -99.99999999999999 Rounded Inexact
1842
+ fmax31111 fma 1 -1e+1 +1e-383 -> -9.999999999999999 Rounded Inexact
1843
+ fmax31113 fma 1 -1 +1e-383 -> -0.9999999999999999 Rounded Inexact
1844
+ fmax31114 fma 1 -1e-1 +1e-383 -> -0.09999999999999999 Rounded Inexact
1845
+ fmax31115 fma 1 -1e-2 +1e-383 -> -0.009999999999999999 Rounded Inexact
1846
+ fmax31116 fma 1 -1e-3 +1e-383 -> -0.0009999999999999999 Rounded Inexact
1847
+ fmax31117 fma 1 -1e-4 +1e-383 -> -0.00009999999999999999 Rounded Inexact
1848
+ fmax31118 fma 1 -1e-5 +1e-383 -> -0.000009999999999999999 Rounded Inexact
1849
+ fmax31119 fma 1 -1e-6 +1e-383 -> -9.999999999999999E-7 Rounded Inexact
1850
+
1851
+ rounding: down
1852
+ precision: 7
1853
+ maxExponent: +96
1854
+ minExponent: -95
1855
+ fmax31130 fma 1 1 -1e-200 -> 0.9999999 Rounded Inexact
1856
+ -- subnormal boundary
1857
+ fmax31131 fma 1 1.000000E-94 -1e-200 -> 9.999999E-95 Rounded Inexact
1858
+ fmax31132 fma 1 1.000001E-95 -1e-200 -> 1.000000E-95 Rounded Inexact
1859
+ fmax31133 fma 1 1.000000E-95 -1e-200 -> 9.99999E-96 Rounded Inexact Subnormal Underflow
1860
+ fmax31134 fma 1 0.999999E-95 -1e-200 -> 9.99998E-96 Rounded Inexact Subnormal Underflow
1861
+ fmax31135 fma 1 0.001000E-95 -1e-200 -> 9.99E-99 Rounded Inexact Subnormal Underflow
1862
+ fmax31136 fma 1 0.000999E-95 -1e-200 -> 9.98E-99 Rounded Inexact Subnormal Underflow
1863
+ fmax31137 fma 1 1.000000E-95 -1e-101 -> 9.99999E-96 Subnormal
1864
+ fmax31138 fma 1 10000E-101 -1e-200 -> 9.999E-98 Subnormal Inexact Rounded Underflow
1865
+ fmax31139 fma 1 1000E-101 -1e-200 -> 9.99E-99 Subnormal Inexact Rounded Underflow
1866
+ fmax31140 fma 1 100E-101 -1e-200 -> 9.9E-100 Subnormal Inexact Rounded Underflow
1867
+ fmax31141 fma 1 10E-101 -1e-200 -> 9E-101 Subnormal Inexact Rounded Underflow
1868
+ fmax31142 fma 1 1E-101 -1e-200 -> 0E-101 Subnormal Inexact Rounded Underflow Clamped
1869
+ fmax31143 fma 1 0E-101 -1e-200 -> -0E-101 Subnormal Inexact Rounded Underflow Clamped
1870
+ fmax31144 fma 1 1E-102 -1e-200 -> 0E-101 Subnormal Inexact Rounded Underflow Clamped
1871
+
1872
+ fmax31151 fma 1 10000E-102 -1e-200 -> 9.99E-99 Subnormal Inexact Rounded Underflow
1873
+ fmax31152 fma 1 1000E-102 -1e-200 -> 9.9E-100 Subnormal Inexact Rounded Underflow
1874
+ fmax31153 fma 1 100E-102 -1e-200 -> 9E-101 Subnormal Inexact Rounded Underflow
1875
+ fmax31154 fma 1 10E-102 -1e-200 -> 0E-101 Subnormal Inexact Rounded Underflow Clamped
1876
+ fmax31155 fma 1 1E-102 -1e-200 -> 0E-101 Subnormal Inexact Rounded Underflow Clamped
1877
+ fmax31156 fma 1 0E-102 -1e-200 -> -0E-101 Subnormal Inexact Rounded Underflow Clamped
1878
+ fmax31157 fma 1 1E-103 -1e-200 -> 0E-101 Subnormal Inexact Rounded Underflow Clamped
1879
+
1880
+ fmax31160 fma 1 100E-105 -1e-101 -> -0E-101 Subnormal Inexact Rounded Underflow Clamped
1881
+ fmax31161 fma 1 100E-105 -1e-201 -> 0E-101 Subnormal Inexact Rounded Underflow Clamped
1882
+
1883
+ -- tests based on Gunnar Degnbol's edge case
1884
+ precision: 15
1885
+ rounding: half_up
1886
+ maxExponent: 384
1887
+ minexponent: -383
1888
+
1889
+ fmax31200 fma 1 1E15 -0.5 -> 1.00000000000000E+15 Inexact Rounded
1890
+ fmax31201 fma 1 1E15 -0.50 -> 1.00000000000000E+15 Inexact Rounded
1891
+ fmax31210 fma 1 1E15 -0.51 -> 999999999999999 Inexact Rounded
1892
+ fmax31211 fma 1 1E15 -0.501 -> 999999999999999 Inexact Rounded
1893
+ fmax31212 fma 1 1E15 -0.5001 -> 999999999999999 Inexact Rounded
1894
+ fmax31213 fma 1 1E15 -0.50001 -> 999999999999999 Inexact Rounded
1895
+ fmax31214 fma 1 1E15 -0.500001 -> 999999999999999 Inexact Rounded
1896
+ fmax31215 fma 1 1E15 -0.5000001 -> 999999999999999 Inexact Rounded
1897
+ fmax31216 fma 1 1E15 -0.50000001 -> 999999999999999 Inexact Rounded
1898
+ fmax31217 fma 1 1E15 -0.500000001 -> 999999999999999 Inexact Rounded
1899
+ fmax31218 fma 1 1E15 -0.5000000001 -> 999999999999999 Inexact Rounded
1900
+ fmax31219 fma 1 1E15 -0.50000000001 -> 999999999999999 Inexact Rounded
1901
+ fmax31220 fma 1 1E15 -0.500000000001 -> 999999999999999 Inexact Rounded
1902
+ fmax31221 fma 1 1E15 -0.5000000000001 -> 999999999999999 Inexact Rounded
1903
+ fmax31222 fma 1 1E15 -0.50000000000001 -> 999999999999999 Inexact Rounded
1904
+ fmax31223 fma 1 1E15 -0.500000000000001 -> 999999999999999 Inexact Rounded
1905
+ fmax31224 fma 1 1E15 -0.5000000000000001 -> 999999999999999 Inexact Rounded
1906
+ fmax31225 fma 1 1E15 -0.5000000000000000 -> 1.00000000000000E+15 Inexact Rounded
1907
+ fmax31230 fma 1 1E15 -5000000.000000001 -> 999999995000000 Inexact Rounded
1908
+
1909
+ precision: 16
1910
+
1911
+ fmax31300 fma 1 1E16 -0.5 -> 1.000000000000000E+16 Inexact Rounded
1912
+ fmax31310 fma 1 1E16 -0.51 -> 9999999999999999 Inexact Rounded
1913
+ fmax31311 fma 1 1E16 -0.501 -> 9999999999999999 Inexact Rounded
1914
+ fmax31312 fma 1 1E16 -0.5001 -> 9999999999999999 Inexact Rounded
1915
+ fmax31313 fma 1 1E16 -0.50001 -> 9999999999999999 Inexact Rounded
1916
+ fmax31314 fma 1 1E16 -0.500001 -> 9999999999999999 Inexact Rounded
1917
+ fmax31315 fma 1 1E16 -0.5000001 -> 9999999999999999 Inexact Rounded
1918
+ fmax31316 fma 1 1E16 -0.50000001 -> 9999999999999999 Inexact Rounded
1919
+ fmax31317 fma 1 1E16 -0.500000001 -> 9999999999999999 Inexact Rounded
1920
+ fmax31318 fma 1 1E16 -0.5000000001 -> 9999999999999999 Inexact Rounded
1921
+ fmax31319 fma 1 1E16 -0.50000000001 -> 9999999999999999 Inexact Rounded
1922
+ fmax31320 fma 1 1E16 -0.500000000001 -> 9999999999999999 Inexact Rounded
1923
+ fmax31321 fma 1 1E16 -0.5000000000001 -> 9999999999999999 Inexact Rounded
1924
+ fmax31322 fma 1 1E16 -0.50000000000001 -> 9999999999999999 Inexact Rounded
1925
+ fmax31323 fma 1 1E16 -0.500000000000001 -> 9999999999999999 Inexact Rounded
1926
+ fmax31324 fma 1 1E16 -0.5000000000000001 -> 9999999999999999 Inexact Rounded
1927
+ fmax31325 fma 1 1E16 -0.5000000000000000 -> 1.000000000000000E+16 Inexact Rounded
1928
+ fmax31326 fma 1 1E16 -0.500000000000000 -> 1.000000000000000E+16 Inexact Rounded
1929
+ fmax31327 fma 1 1E16 -0.50000000000000 -> 1.000000000000000E+16 Inexact Rounded
1930
+ fmax31328 fma 1 1E16 -0.5000000000000 -> 1.000000000000000E+16 Inexact Rounded
1931
+ fmax31329 fma 1 1E16 -0.500000000000 -> 1.000000000000000E+16 Inexact Rounded
1932
+ fmax31330 fma 1 1E16 -0.50000000000 -> 1.000000000000000E+16 Inexact Rounded
1933
+ fmax31331 fma 1 1E16 -0.5000000000 -> 1.000000000000000E+16 Inexact Rounded
1934
+ fmax31332 fma 1 1E16 -0.500000000 -> 1.000000000000000E+16 Inexact Rounded
1935
+ fmax31333 fma 1 1E16 -0.50000000 -> 1.000000000000000E+16 Inexact Rounded
1936
+ fmax31334 fma 1 1E16 -0.5000000 -> 1.000000000000000E+16 Inexact Rounded
1937
+ fmax31335 fma 1 1E16 -0.500000 -> 1.000000000000000E+16 Inexact Rounded
1938
+ fmax31336 fma 1 1E16 -0.50000 -> 1.000000000000000E+16 Inexact Rounded
1939
+ fmax31337 fma 1 1E16 -0.5000 -> 1.000000000000000E+16 Inexact Rounded
1940
+ fmax31338 fma 1 1E16 -0.500 -> 1.000000000000000E+16 Inexact Rounded
1941
+ fmax31339 fma 1 1E16 -0.50 -> 1.000000000000000E+16 Inexact Rounded
1942
+
1943
+ fmax31340 fma 1 1E16 -5000000.000010001 -> 9999999995000000 Inexact Rounded
1944
+ fmax31341 fma 1 1E16 -5000000.000000001 -> 9999999995000000 Inexact Rounded
1945
+
1946
+ fmax31349 fma 1 9999999999999999 0.4 -> 9999999999999999 Inexact Rounded
1947
+ fmax31350 fma 1 9999999999999999 0.49 -> 9999999999999999 Inexact Rounded
1948
+ fmax31351 fma 1 9999999999999999 0.499 -> 9999999999999999 Inexact Rounded
1949
+ fmax31352 fma 1 9999999999999999 0.4999 -> 9999999999999999 Inexact Rounded
1950
+ fmax31353 fma 1 9999999999999999 0.49999 -> 9999999999999999 Inexact Rounded
1951
+ fmax31354 fma 1 9999999999999999 0.499999 -> 9999999999999999 Inexact Rounded
1952
+ fmax31355 fma 1 9999999999999999 0.4999999 -> 9999999999999999 Inexact Rounded
1953
+ fmax31356 fma 1 9999999999999999 0.49999999 -> 9999999999999999 Inexact Rounded
1954
+ fmax31357 fma 1 9999999999999999 0.499999999 -> 9999999999999999 Inexact Rounded
1955
+ fmax31358 fma 1 9999999999999999 0.4999999999 -> 9999999999999999 Inexact Rounded
1956
+ fmax31359 fma 1 9999999999999999 0.49999999999 -> 9999999999999999 Inexact Rounded
1957
+ fmax31360 fma 1 9999999999999999 0.499999999999 -> 9999999999999999 Inexact Rounded
1958
+ fmax31361 fma 1 9999999999999999 0.4999999999999 -> 9999999999999999 Inexact Rounded
1959
+ fmax31362 fma 1 9999999999999999 0.49999999999999 -> 9999999999999999 Inexact Rounded
1960
+ fmax31363 fma 1 9999999999999999 0.499999999999999 -> 9999999999999999 Inexact Rounded
1961
+ fmax31364 fma 1 9999999999999999 0.4999999999999999 -> 9999999999999999 Inexact Rounded
1962
+ fmax31365 fma 1 9999999999999999 0.5000000000000000 -> 1.000000000000000E+16 Inexact Rounded
1963
+ fmax31367 fma 1 9999999999999999 0.500000000000000 -> 1.000000000000000E+16 Inexact Rounded
1964
+ fmax31368 fma 1 9999999999999999 0.50000000000000 -> 1.000000000000000E+16 Inexact Rounded
1965
+ fmax31369 fma 1 9999999999999999 0.5000000000000 -> 1.000000000000000E+16 Inexact Rounded
1966
+ fmax31370 fma 1 9999999999999999 0.500000000000 -> 1.000000000000000E+16 Inexact Rounded
1967
+ fmax31371 fma 1 9999999999999999 0.50000000000 -> 1.000000000000000E+16 Inexact Rounded
1968
+ fmax31372 fma 1 9999999999999999 0.5000000000 -> 1.000000000000000E+16 Inexact Rounded
1969
+ fmax31373 fma 1 9999999999999999 0.500000000 -> 1.000000000000000E+16 Inexact Rounded
1970
+ fmax31374 fma 1 9999999999999999 0.50000000 -> 1.000000000000000E+16 Inexact Rounded
1971
+ fmax31375 fma 1 9999999999999999 0.5000000 -> 1.000000000000000E+16 Inexact Rounded
1972
+ fmax31376 fma 1 9999999999999999 0.500000 -> 1.000000000000000E+16 Inexact Rounded
1973
+ fmax31377 fma 1 9999999999999999 0.50000 -> 1.000000000000000E+16 Inexact Rounded
1974
+ fmax31378 fma 1 9999999999999999 0.5000 -> 1.000000000000000E+16 Inexact Rounded
1975
+ fmax31379 fma 1 9999999999999999 0.500 -> 1.000000000000000E+16 Inexact Rounded
1976
+ fmax31380 fma 1 9999999999999999 0.50 -> 1.000000000000000E+16 Inexact Rounded
1977
+ fmax31381 fma 1 9999999999999999 0.5 -> 1.000000000000000E+16 Inexact Rounded
1978
+ fmax31382 fma 1 9999999999999999 0.5000000000000001 -> 1.000000000000000E+16 Inexact Rounded
1979
+ fmax31383 fma 1 9999999999999999 0.500000000000001 -> 1.000000000000000E+16 Inexact Rounded
1980
+ fmax31384 fma 1 9999999999999999 0.50000000000001 -> 1.000000000000000E+16 Inexact Rounded
1981
+ fmax31385 fma 1 9999999999999999 0.5000000000001 -> 1.000000000000000E+16 Inexact Rounded
1982
+ fmax31386 fma 1 9999999999999999 0.500000000001 -> 1.000000000000000E+16 Inexact Rounded
1983
+ fmax31387 fma 1 9999999999999999 0.50000000001 -> 1.000000000000000E+16 Inexact Rounded
1984
+ fmax31388 fma 1 9999999999999999 0.5000000001 -> 1.000000000000000E+16 Inexact Rounded
1985
+ fmax31389 fma 1 9999999999999999 0.500000001 -> 1.000000000000000E+16 Inexact Rounded
1986
+ fmax31390 fma 1 9999999999999999 0.50000001 -> 1.000000000000000E+16 Inexact Rounded
1987
+ fmax31391 fma 1 9999999999999999 0.5000001 -> 1.000000000000000E+16 Inexact Rounded
1988
+ fmax31392 fma 1 9999999999999999 0.500001 -> 1.000000000000000E+16 Inexact Rounded
1989
+ fmax31393 fma 1 9999999999999999 0.50001 -> 1.000000000000000E+16 Inexact Rounded
1990
+ fmax31394 fma 1 9999999999999999 0.5001 -> 1.000000000000000E+16 Inexact Rounded
1991
+ fmax31395 fma 1 9999999999999999 0.501 -> 1.000000000000000E+16 Inexact Rounded
1992
+ fmax31396 fma 1 9999999999999999 0.51 -> 1.000000000000000E+16 Inexact Rounded
1993
+
1994
+ -- More GD edge cases, where difference between the unadjusted
1995
+ -- exponents is larger than the maximum precision and one side is 0
1996
+ precision: 15
1997
+ rounding: half_up
1998
+ maxExponent: 384
1999
+ minexponent: -383
2000
+
2001
+ fmax31400 fma 1 0 1.23456789012345 -> 1.23456789012345
2002
+ fmax31401 fma 1 0 1.23456789012345E-1 -> 0.123456789012345
2003
+ fmax31402 fma 1 0 1.23456789012345E-2 -> 0.0123456789012345
2004
+ fmax31403 fma 1 0 1.23456789012345E-3 -> 0.00123456789012345
2005
+ fmax31404 fma 1 0 1.23456789012345E-4 -> 0.000123456789012345
2006
+ fmax31405 fma 1 0 1.23456789012345E-5 -> 0.0000123456789012345
2007
+ fmax31406 fma 1 0 1.23456789012345E-6 -> 0.00000123456789012345
2008
+ fmax31407 fma 1 0 1.23456789012345E-7 -> 1.23456789012345E-7
2009
+ fmax31408 fma 1 0 1.23456789012345E-8 -> 1.23456789012345E-8
2010
+ fmax31409 fma 1 0 1.23456789012345E-9 -> 1.23456789012345E-9
2011
+ fmax31410 fma 1 0 1.23456789012345E-10 -> 1.23456789012345E-10
2012
+ fmax31411 fma 1 0 1.23456789012345E-11 -> 1.23456789012345E-11
2013
+ fmax31412 fma 1 0 1.23456789012345E-12 -> 1.23456789012345E-12
2014
+ fmax31413 fma 1 0 1.23456789012345E-13 -> 1.23456789012345E-13
2015
+ fmax31414 fma 1 0 1.23456789012345E-14 -> 1.23456789012345E-14
2016
+ fmax31415 fma 1 0 1.23456789012345E-15 -> 1.23456789012345E-15
2017
+ fmax31416 fma 1 0 1.23456789012345E-16 -> 1.23456789012345E-16
2018
+ fmax31417 fma 1 0 1.23456789012345E-17 -> 1.23456789012345E-17
2019
+ fmax31418 fma 1 0 1.23456789012345E-18 -> 1.23456789012345E-18
2020
+ fmax31419 fma 1 0 1.23456789012345E-19 -> 1.23456789012345E-19
2021
+
2022
+ -- same, precision 16..
2023
+ precision: 16
2024
+ fmax31420 fma 1 0 1.123456789012345 -> 1.123456789012345
2025
+ fmax31421 fma 1 0 1.123456789012345E-1 -> 0.1123456789012345
2026
+ fmax31422 fma 1 0 1.123456789012345E-2 -> 0.01123456789012345
2027
+ fmax31423 fma 1 0 1.123456789012345E-3 -> 0.001123456789012345
2028
+ fmax31424 fma 1 0 1.123456789012345E-4 -> 0.0001123456789012345
2029
+ fmax31425 fma 1 0 1.123456789012345E-5 -> 0.00001123456789012345
2030
+ fmax31426 fma 1 0 1.123456789012345E-6 -> 0.000001123456789012345
2031
+ fmax31427 fma 1 0 1.123456789012345E-7 -> 1.123456789012345E-7
2032
+ fmax31428 fma 1 0 1.123456789012345E-8 -> 1.123456789012345E-8
2033
+ fmax31429 fma 1 0 1.123456789012345E-9 -> 1.123456789012345E-9
2034
+ fmax31430 fma 1 0 1.123456789012345E-10 -> 1.123456789012345E-10
2035
+ fmax31431 fma 1 0 1.123456789012345E-11 -> 1.123456789012345E-11
2036
+ fmax31432 fma 1 0 1.123456789012345E-12 -> 1.123456789012345E-12
2037
+ fmax31433 fma 1 0 1.123456789012345E-13 -> 1.123456789012345E-13
2038
+ fmax31434 fma 1 0 1.123456789012345E-14 -> 1.123456789012345E-14
2039
+ fmax31435 fma 1 0 1.123456789012345E-15 -> 1.123456789012345E-15
2040
+ fmax31436 fma 1 0 1.123456789012345E-16 -> 1.123456789012345E-16
2041
+ fmax31437 fma 1 0 1.123456789012345E-17 -> 1.123456789012345E-17
2042
+ fmax31438 fma 1 0 1.123456789012345E-18 -> 1.123456789012345E-18
2043
+ fmax31439 fma 1 0 1.123456789012345E-19 -> 1.123456789012345E-19
2044
+
2045
+ -- same, reversed 0
2046
+ fmax31440 fma 1 1.123456789012345 0 -> 1.123456789012345
2047
+ fmax31441 fma 1 1.123456789012345E-1 0 -> 0.1123456789012345
2048
+ fmax31442 fma 1 1.123456789012345E-2 0 -> 0.01123456789012345
2049
+ fmax31443 fma 1 1.123456789012345E-3 0 -> 0.001123456789012345
2050
+ fmax31444 fma 1 1.123456789012345E-4 0 -> 0.0001123456789012345
2051
+ fmax31445 fma 1 1.123456789012345E-5 0 -> 0.00001123456789012345
2052
+ fmax31446 fma 1 1.123456789012345E-6 0 -> 0.000001123456789012345
2053
+ fmax31447 fma 1 1.123456789012345E-7 0 -> 1.123456789012345E-7
2054
+ fmax31448 fma 1 1.123456789012345E-8 0 -> 1.123456789012345E-8
2055
+ fmax31449 fma 1 1.123456789012345E-9 0 -> 1.123456789012345E-9
2056
+ fmax31450 fma 1 1.123456789012345E-10 0 -> 1.123456789012345E-10
2057
+ fmax31451 fma 1 1.123456789012345E-11 0 -> 1.123456789012345E-11
2058
+ fmax31452 fma 1 1.123456789012345E-12 0 -> 1.123456789012345E-12
2059
+ fmax31453 fma 1 1.123456789012345E-13 0 -> 1.123456789012345E-13
2060
+ fmax31454 fma 1 1.123456789012345E-14 0 -> 1.123456789012345E-14
2061
+ fmax31455 fma 1 1.123456789012345E-15 0 -> 1.123456789012345E-15
2062
+ fmax31456 fma 1 1.123456789012345E-16 0 -> 1.123456789012345E-16
2063
+ fmax31457 fma 1 1.123456789012345E-17 0 -> 1.123456789012345E-17
2064
+ fmax31458 fma 1 1.123456789012345E-18 0 -> 1.123456789012345E-18
2065
+ fmax31459 fma 1 1.123456789012345E-19 0 -> 1.123456789012345E-19
2066
+
2067
+ -- same, Es on the 0
2068
+ fmax31460 fma 1 1.123456789012345 0E-0 -> 1.123456789012345
2069
+ fmax31461 fma 1 1.123456789012345 0E-1 -> 1.123456789012345
2070
+ fmax31462 fma 1 1.123456789012345 0E-2 -> 1.123456789012345
2071
+ fmax31463 fma 1 1.123456789012345 0E-3 -> 1.123456789012345
2072
+ fmax31464 fma 1 1.123456789012345 0E-4 -> 1.123456789012345
2073
+ fmax31465 fma 1 1.123456789012345 0E-5 -> 1.123456789012345
2074
+ fmax31466 fma 1 1.123456789012345 0E-6 -> 1.123456789012345
2075
+ fmax31467 fma 1 1.123456789012345 0E-7 -> 1.123456789012345
2076
+ fmax31468 fma 1 1.123456789012345 0E-8 -> 1.123456789012345
2077
+ fmax31469 fma 1 1.123456789012345 0E-9 -> 1.123456789012345
2078
+ fmax31470 fma 1 1.123456789012345 0E-10 -> 1.123456789012345
2079
+ fmax31471 fma 1 1.123456789012345 0E-11 -> 1.123456789012345
2080
+ fmax31472 fma 1 1.123456789012345 0E-12 -> 1.123456789012345
2081
+ fmax31473 fma 1 1.123456789012345 0E-13 -> 1.123456789012345
2082
+ fmax31474 fma 1 1.123456789012345 0E-14 -> 1.123456789012345
2083
+ fmax31475 fma 1 1.123456789012345 0E-15 -> 1.123456789012345
2084
+ -- next four flag Rounded because the 0 extends the result
2085
+ fmax31476 fma 1 1.123456789012345 0E-16 -> 1.123456789012345 Rounded
2086
+ fmax31477 fma 1 1.123456789012345 0E-17 -> 1.123456789012345 Rounded
2087
+ fmax31478 fma 1 1.123456789012345 0E-18 -> 1.123456789012345 Rounded
2088
+ fmax31479 fma 1 1.123456789012345 0E-19 -> 1.123456789012345 Rounded
2089
+
2090
+ -- sum of two opposite-sign operands is exactly 0 and floor => -0
2091
+ precision: 16
2092
+ maxExponent: 384
2093
+ minexponent: -383
2094
+
2095
+ rounding: half_up
2096
+ -- exact zeros from zeros
2097
+ fmax31500 fma 1 0 0E-19 -> 0E-19
2098
+ fmax31501 fma 1 -0 0E-19 -> 0E-19
2099
+ fmax31502 fma 1 0 -0E-19 -> 0E-19
2100
+ fmax31503 fma 1 -0 -0E-19 -> -0E-19
2101
+ fmax31504 fma 1 0E-400 0E-19 -> 0E-398 Clamped
2102
+ fmax31505 fma 1 -0E-400 0E-19 -> 0E-398 Clamped
2103
+ fmax31506 fma 1 0E-400 -0E-19 -> 0E-398 Clamped
2104
+ fmax31507 fma 1 -0E-400 -0E-19 -> -0E-398 Clamped
2105
+ -- inexact zeros
2106
+ fmax31511 fma 1 1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2107
+ fmax31512 fma 1 -1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2108
+ fmax31513 fma 1 1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2109
+ fmax31514 fma 1 -1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2110
+ -- some exact zeros from non-zeros
2111
+ fmax31515 fma 1 1E-401 1E-401 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2112
+ fmax31516 fma 1 -1E-401 1E-401 -> 0E-398 Clamped
2113
+ fmax31517 fma 1 1E-401 -1E-401 -> 0E-398 Clamped
2114
+ fmax31518 fma 1 -1E-401 -1E-401 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2115
+
2116
+ rounding: half_down
2117
+ -- exact zeros from zeros
2118
+ fmax31520 fma 1 0 0E-19 -> 0E-19
2119
+ fmax31521 fma 1 -0 0E-19 -> 0E-19
2120
+ fmax31522 fma 1 0 -0E-19 -> 0E-19
2121
+ fmax31523 fma 1 -0 -0E-19 -> -0E-19
2122
+ fmax31524 fma 1 0E-400 0E-19 -> 0E-398 Clamped
2123
+ fmax31525 fma 1 -0E-400 0E-19 -> 0E-398 Clamped
2124
+ fmax31526 fma 1 0E-400 -0E-19 -> 0E-398 Clamped
2125
+ fmax31527 fma 1 -0E-400 -0E-19 -> -0E-398 Clamped
2126
+ -- inexact zeros
2127
+ fmax31531 fma 1 1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2128
+ fmax31532 fma 1 -1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2129
+ fmax31533 fma 1 1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2130
+ fmax31534 fma 1 -1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2131
+ -- some exact zeros from non-zeros
2132
+ fmax31535 fma 1 1E-401 1E-401 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2133
+ fmax31536 fma 1 -1E-401 1E-401 -> 0E-398 Clamped
2134
+ fmax31537 fma 1 1E-401 -1E-401 -> 0E-398 Clamped
2135
+ fmax31538 fma 1 -1E-401 -1E-401 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2136
+
2137
+ rounding: half_even
2138
+ -- exact zeros from zeros
2139
+ fmax31540 fma 1 0 0E-19 -> 0E-19
2140
+ fmax31541 fma 1 -0 0E-19 -> 0E-19
2141
+ fmax31542 fma 1 0 -0E-19 -> 0E-19
2142
+ fmax31543 fma 1 -0 -0E-19 -> -0E-19
2143
+ fmax31544 fma 1 0E-400 0E-19 -> 0E-398 Clamped
2144
+ fmax31545 fma 1 -0E-400 0E-19 -> 0E-398 Clamped
2145
+ fmax31546 fma 1 0E-400 -0E-19 -> 0E-398 Clamped
2146
+ fmax31547 fma 1 -0E-400 -0E-19 -> -0E-398 Clamped
2147
+ -- inexact zeros
2148
+ fmax31551 fma 1 1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2149
+ fmax31552 fma 1 -1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2150
+ fmax31553 fma 1 1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2151
+ fmax31554 fma 1 -1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2152
+ -- some exact zeros from non-zeros
2153
+ fmax31555 fma 1 1E-401 1E-401 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2154
+ fmax31556 fma 1 -1E-401 1E-401 -> 0E-398 Clamped
2155
+ fmax31557 fma 1 1E-401 -1E-401 -> 0E-398 Clamped
2156
+ fmax31558 fma 1 -1E-401 -1E-401 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2157
+
2158
+ rounding: up
2159
+ -- exact zeros from zeros
2160
+ fmax31560 fma 1 0 0E-19 -> 0E-19
2161
+ fmax31561 fma 1 -0 0E-19 -> 0E-19
2162
+ fmax31562 fma 1 0 -0E-19 -> 0E-19
2163
+ fmax31563 fma 1 -0 -0E-19 -> -0E-19
2164
+ fmax31564 fma 1 0E-400 0E-19 -> 0E-398 Clamped
2165
+ fmax31565 fma 1 -0E-400 0E-19 -> 0E-398 Clamped
2166
+ fmax31566 fma 1 0E-400 -0E-19 -> 0E-398 Clamped
2167
+ fmax31567 fma 1 -0E-400 -0E-19 -> -0E-398 Clamped
2168
+ -- inexact zeros
2169
+ fmax31571 fma 1 1E-401 1E-400 -> 1E-398 Subnormal Inexact Rounded Underflow
2170
+ fmax31572 fma 1 -1E-401 1E-400 -> 1E-398 Subnormal Inexact Rounded Underflow
2171
+ fmax31573 fma 1 1E-401 -1E-400 -> -1E-398 Subnormal Inexact Rounded Underflow
2172
+ fmax31574 fma 1 -1E-401 -1E-400 -> -1E-398 Subnormal Inexact Rounded Underflow
2173
+ -- some exact zeros from non-zeros
2174
+ fmax31575 fma 1 1E-401 1E-401 -> 1E-398 Subnormal Inexact Rounded Underflow
2175
+ fmax31576 fma 1 -1E-401 1E-401 -> 0E-398 Clamped
2176
+ fmax31577 fma 1 1E-401 -1E-401 -> 0E-398 Clamped
2177
+ fmax31578 fma 1 -1E-401 -1E-401 -> -1E-398 Subnormal Inexact Rounded Underflow
2178
+
2179
+ rounding: down
2180
+ -- exact zeros from zeros
2181
+ fmax31580 fma 1 0 0E-19 -> 0E-19
2182
+ fmax31581 fma 1 -0 0E-19 -> 0E-19
2183
+ fmax31582 fma 1 0 -0E-19 -> 0E-19
2184
+ fmax31583 fma 1 -0 -0E-19 -> -0E-19
2185
+ fmax31584 fma 1 0E-400 0E-19 -> 0E-398 Clamped
2186
+ fmax31585 fma 1 -0E-400 0E-19 -> 0E-398 Clamped
2187
+ fmax31586 fma 1 0E-400 -0E-19 -> 0E-398 Clamped
2188
+ fmax31587 fma 1 -0E-400 -0E-19 -> -0E-398 Clamped
2189
+ -- inexact zeros
2190
+ fmax31591 fma 1 1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2191
+ fmax31592 fma 1 -1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2192
+ fmax31593 fma 1 1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2193
+ fmax31594 fma 1 -1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2194
+ -- some exact zeros from non-zeros
2195
+ fmax31595 fma 1 1E-401 1E-401 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2196
+ fmax31596 fma 1 -1E-401 1E-401 -> 0E-398 Clamped
2197
+ fmax31597 fma 1 1E-401 -1E-401 -> 0E-398 Clamped
2198
+ fmax31598 fma 1 -1E-401 -1E-401 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2199
+
2200
+ rounding: ceiling
2201
+ -- exact zeros from zeros
2202
+ fmax31600 fma 1 0 0E-19 -> 0E-19
2203
+ fmax31601 fma 1 -0 0E-19 -> 0E-19
2204
+ fmax31602 fma 1 0 -0E-19 -> 0E-19
2205
+ fmax31603 fma 1 -0 -0E-19 -> -0E-19
2206
+ fmax31604 fma 1 0E-400 0E-19 -> 0E-398 Clamped
2207
+ fmax31605 fma 1 -0E-400 0E-19 -> 0E-398 Clamped
2208
+ fmax31606 fma 1 0E-400 -0E-19 -> 0E-398 Clamped
2209
+ fmax31607 fma 1 -0E-400 -0E-19 -> -0E-398 Clamped
2210
+ -- inexact zeros
2211
+ fmax31611 fma 1 1E-401 1E-400 -> 1E-398 Subnormal Inexact Rounded Underflow
2212
+ fmax31612 fma 1 -1E-401 1E-400 -> 1E-398 Subnormal Inexact Rounded Underflow
2213
+ fmax31613 fma 1 1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2214
+ fmax31614 fma 1 -1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2215
+ -- some exact zeros from non-zeros
2216
+ fmax31615 fma 1 1E-401 1E-401 -> 1E-398 Subnormal Inexact Rounded Underflow
2217
+ fmax31616 fma 1 -1E-401 1E-401 -> 0E-398 Clamped
2218
+ fmax31617 fma 1 1E-401 -1E-401 -> 0E-398 Clamped
2219
+ fmax31618 fma 1 -1E-401 -1E-401 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
2220
+
2221
+ -- and the extra-special ugly case; unusual minuses marked by -- *
2222
+ rounding: floor
2223
+ -- exact zeros from zeros
2224
+ fmax31620 fma 1 0 0E-19 -> 0E-19
2225
+ fmax31621 fma 1 -0 0E-19 -> -0E-19 -- *
2226
+ fmax31622 fma 1 0 -0E-19 -> -0E-19 -- *
2227
+ fmax31623 fma 1 -0 -0E-19 -> -0E-19
2228
+ fmax31624 fma 1 0E-400 0E-19 -> 0E-398 Clamped
2229
+ fmax31625 fma 1 -0E-400 0E-19 -> -0E-398 Clamped -- *
2230
+ fmax31626 fma 1 0E-400 -0E-19 -> -0E-398 Clamped -- *
2231
+ fmax31627 fma 1 -0E-400 -0E-19 -> -0E-398 Clamped
2232
+ -- inexact zeros
2233
+ fmax31631 fma 1 1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2234
+ fmax31632 fma 1 -1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2235
+ fmax31633 fma 1 1E-401 -1E-400 -> -1E-398 Subnormal Inexact Rounded Underflow
2236
+ fmax31634 fma 1 -1E-401 -1E-400 -> -1E-398 Subnormal Inexact Rounded Underflow
2237
+ -- some exact zeros from non-zeros
2238
+ fmax31635 fma 1 1E-401 1E-401 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
2239
+ fmax31636 fma 1 -1E-401 1E-401 -> -0E-398 Clamped -- *
2240
+ fmax31637 fma 1 1E-401 -1E-401 -> -0E-398 Clamped -- *
2241
+ fmax31638 fma 1 -1E-401 -1E-401 -> -1E-398 Subnormal Inexact Rounded Underflow
2242
+
2243
+ -- BigDecimal problem testcases 2006.01.23
2244
+ precision: 16
2245
+ maxExponent: 384
2246
+ minexponent: -383
2247
+
2248
+ rounding: down
2249
+ precision: 7
2250
+ fmax31651 fma 1 10001E+2 -2E+1 -> 1.00008E+6
2251
+ precision: 6
2252
+ fmax31652 fma 1 10001E+2 -2E+1 -> 1.00008E+6
2253
+ precision: 5
2254
+ fmax31653 fma 1 10001E+2 -2E+1 -> 1.0000E+6 Inexact Rounded
2255
+ precision: 4
2256
+ fmax31654 fma 1 10001E+2 -2E+1 -> 1.000E+6 Inexact Rounded
2257
+ precision: 3
2258
+ fmax31655 fma 1 10001E+2 -2E+1 -> 1.00E+6 Inexact Rounded
2259
+ precision: 2
2260
+ fmax31656 fma 1 10001E+2 -2E+1 -> 1.0E+6 Inexact Rounded
2261
+ precision: 1
2262
+ fmax31657 fma 1 10001E+2 -2E+1 -> 1E+6 Inexact Rounded
2263
+
2264
+ rounding: half_even
2265
+ precision: 7
2266
+ fmax31661 fma 1 10001E+2 -2E+1 -> 1.00008E+6
2267
+ precision: 6
2268
+ fmax31662 fma 1 10001E+2 -2E+1 -> 1.00008E+6
2269
+ precision: 5
2270
+ fmax31663 fma 1 10001E+2 -2E+1 -> 1.0001E+6 Inexact Rounded
2271
+ precision: 4
2272
+ fmax31664 fma 1 10001E+2 -2E+1 -> 1.000E+6 Inexact Rounded
2273
+ precision: 3
2274
+ fmax31665 fma 1 10001E+2 -2E+1 -> 1.00E+6 Inexact Rounded
2275
+ precision: 2
2276
+ fmax31666 fma 1 10001E+2 -2E+1 -> 1.0E+6 Inexact Rounded
2277
+ precision: 1
2278
+ fmax31667 fma 1 10001E+2 -2E+1 -> 1E+6 Inexact Rounded
2279
+
2280
+ rounding: up
2281
+ precision: 7
2282
+ fmax31671 fma 1 10001E+2 -2E+1 -> 1.00008E+6
2283
+ precision: 6
2284
+ fmax31672 fma 1 10001E+2 -2E+1 -> 1.00008E+6
2285
+ precision: 5
2286
+ fmax31673 fma 1 10001E+2 -2E+1 -> 1.0001E+6 Inexact Rounded
2287
+ precision: 4
2288
+ fmax31674 fma 1 10001E+2 -2E+1 -> 1.001E+6 Inexact Rounded
2289
+ precision: 3
2290
+ fmax31675 fma 1 10001E+2 -2E+1 -> 1.01E+6 Inexact Rounded
2291
+ precision: 2
2292
+ fmax31676 fma 1 10001E+2 -2E+1 -> 1.1E+6 Inexact Rounded
2293
+ precision: 1
2294
+ fmax31677 fma 1 10001E+2 -2E+1 -> 2E+6 Inexact Rounded
2295
+
2296
+ precision: 34
2297
+ rounding: half_up
2298
+ maxExponent: 6144
2299
+ minExponent: -6143
2300
+ -- Examples from SQL proposal (Krishna Kulkarni)
2301
+ fmax31701 fma 1 130E-2 120E-2 -> 2.50
2302
+ fmax31702 fma 1 130E-2 12E-1 -> 2.50
2303
+ fmax31703 fma 1 130E-2 1E0 -> 2.30
2304
+ fmax31704 fma 1 1E2 1E4 -> 1.01E+4
2305
+ fmax31705 subtract 130E-2 120E-2 -> 0.10
2306
+ fmax31706 subtract 130E-2 12E-1 -> 0.10
2307
+ fmax31707 subtract 130E-2 1E0 -> 0.30
2308
+ fmax31708 subtract 1E2 1E4 -> -9.9E+3
2309
+
2310
+ ------------------------------------------------------------------------
2311
+ -- Same as above, using decimal64 default parameters --
2312
+ ------------------------------------------------------------------------
2313
+ precision: 16
2314
+ rounding: half_even
2315
+ maxExponent: 384
2316
+ minexponent: -383
2317
+
2318
+ -- [first group are 'quick confidence check']
2319
+ fmax36001 fma 1 1 1 -> 2
2320
+ fmax36002 fma 1 2 3 -> 5
2321
+ fmax36003 fma 1 '5.75' '3.3' -> 9.05
2322
+ fmax36004 fma 1 '5' '-3' -> 2
2323
+ fmax36005 fma 1 '-5' '-3' -> -8
2324
+ fmax36006 fma 1 '-7' '2.5' -> -4.5
2325
+ fmax36007 fma 1 '0.7' '0.3' -> 1.0
2326
+ fmax36008 fma 1 '1.25' '1.25' -> 2.50
2327
+ fmax36009 fma 1 '1.23456789' '1.00000000' -> '2.23456789'
2328
+ fmax36010 fma 1 '1.23456789' '1.00000011' -> '2.23456800'
2329
+
2330
+ fmax36011 fma 1 '0.44444444444444444' '0.55555555555555555' -> '1.000000000000000' Inexact Rounded
2331
+ fmax36012 fma 1 '0.44444444444444440' '0.55555555555555555' -> '1.000000000000000' Inexact Rounded
2332
+ fmax36013 fma 1 '0.44444444444444444' '0.55555555555555550' -> '0.9999999999999999' Inexact Rounded
2333
+ fmax36014 fma 1 '0.444444444444444449' '0' -> '0.4444444444444444' Inexact Rounded
2334
+ fmax36015 fma 1 '0.4444444444444444499' '0' -> '0.4444444444444444' Inexact Rounded
2335
+ fmax36016 fma 1 '0.44444444444444444999' '0' -> '0.4444444444444444' Inexact Rounded
2336
+ fmax36017 fma 1 '0.44444444444444445000' '0' -> '0.4444444444444444' Inexact Rounded
2337
+ fmax36018 fma 1 '0.44444444444444445001' '0' -> '0.4444444444444445' Inexact Rounded
2338
+ fmax36019 fma 1 '0.4444444444444444501' '0' -> '0.4444444444444445' Inexact Rounded
2339
+ fmax36020 fma 1 '0.444444444444444451' '0' -> '0.4444444444444445' Inexact Rounded
2340
+
2341
+ fmax36021 fma 1 0 1 -> 1
2342
+ fmax36022 fma 1 1 1 -> 2
2343
+ fmax36023 fma 1 2 1 -> 3
2344
+ fmax36024 fma 1 3 1 -> 4
2345
+ fmax36025 fma 1 4 1 -> 5
2346
+ fmax36026 fma 1 5 1 -> 6
2347
+ fmax36027 fma 1 6 1 -> 7
2348
+ fmax36028 fma 1 7 1 -> 8
2349
+ fmax36029 fma 1 8 1 -> 9
2350
+ fmax36030 fma 1 9 1 -> 10
2351
+
2352
+ -- some carrying effects
2353
+ fmax36031 fma 1 '0.9998' '0.0000' -> '0.9998'
2354
+ fmax36032 fma 1 '0.9998' '0.0001' -> '0.9999'
2355
+ fmax36033 fma 1 '0.9998' '0.0002' -> '1.0000'
2356
+ fmax36034 fma 1 '0.9998' '0.0003' -> '1.0001'
2357
+
2358
+ fmax36035 fma 1 '70' '10000e+16' -> '1.000000000000000E+20' Inexact Rounded
2359
+ fmax36036 fma 1 '700' '10000e+16' -> '1.000000000000000E+20' Inexact Rounded
2360
+ fmax36037 fma 1 '7000' '10000e+16' -> '1.000000000000000E+20' Inexact Rounded
2361
+ fmax36038 fma 1 '70000' '10000e+16' -> '1.000000000000001E+20' Inexact Rounded
2362
+ fmax36039 fma 1 '700000' '10000e+16' -> '1.000000000000007E+20' Rounded
2363
+
2364
+ -- symmetry:
2365
+ fmax36040 fma 1 '10000e+16' '70' -> '1.000000000000000E+20' Inexact Rounded
2366
+ fmax36041 fma 1 '10000e+16' '700' -> '1.000000000000000E+20' Inexact Rounded
2367
+ fmax36042 fma 1 '10000e+16' '7000' -> '1.000000000000000E+20' Inexact Rounded
2368
+ fmax36044 fma 1 '10000e+16' '70000' -> '1.000000000000001E+20' Inexact Rounded
2369
+ fmax36045 fma 1 '10000e+16' '700000' -> '1.000000000000007E+20' Rounded
2370
+
2371
+ fmax36046 fma 1 '10000e+9' '7' -> '10000000000007'
2372
+ fmax36047 fma 1 '10000e+9' '70' -> '10000000000070'
2373
+ fmax36048 fma 1 '10000e+9' '700' -> '10000000000700'
2374
+ fmax36049 fma 1 '10000e+9' '7000' -> '10000000007000'
2375
+ fmax36050 fma 1 '10000e+9' '70000' -> '10000000070000'
2376
+ fmax36051 fma 1 '10000e+9' '700000' -> '10000000700000'
2377
+
2378
+ -- examples from decarith
2379
+ fmax36053 fma 1 '12' '7.00' -> '19.00'
2380
+ fmax36054 fma 1 '1.3' '-1.07' -> '0.23'
2381
+ fmax36055 fma 1 '1.3' '-1.30' -> '0.00'
2382
+ fmax36056 fma 1 '1.3' '-2.07' -> '-0.77'
2383
+ fmax36057 fma 1 '1E+2' '1E+4' -> '1.01E+4'
2384
+
2385
+ -- from above
2386
+ fmax36061 fma 1 1 '0.1' -> '1.1'
2387
+ fmax36062 fma 1 1 '0.01' -> '1.01'
2388
+ fmax36063 fma 1 1 '0.001' -> '1.001'
2389
+ fmax36064 fma 1 1 '0.0001' -> '1.0001'
2390
+ fmax36065 fma 1 1 '0.00001' -> '1.00001'
2391
+ fmax36066 fma 1 1 '0.000001' -> '1.000001'
2392
+ fmax36067 fma 1 1 '0.0000001' -> '1.0000001'
2393
+ fmax36068 fma 1 1 '0.00000001' -> '1.00000001'
2394
+
2395
+ -- some funny zeros [in case of bad signum]
2396
+ fmax36070 fma 1 1 0 -> 1
2397
+ fmax36071 fma 1 1 0. -> 1
2398
+ fmax36072 fma 1 1 .0 -> 1.0
2399
+ fmax36073 fma 1 1 0.0 -> 1.0
2400
+ fmax36074 fma 1 1 0.00 -> 1.00
2401
+ fmax36075 fma 1 0 1 -> 1
2402
+ fmax36076 fma 1 0. 1 -> 1
2403
+ fmax36077 fma 1 .0 1 -> 1.0
2404
+ fmax36078 fma 1 0.0 1 -> 1.0
2405
+ fmax36079 fma 1 0.00 1 -> 1.00
2406
+
2407
+ -- some carries
2408
+ fmax36080 fma 1 9999999999999998 1 -> 9999999999999999
2409
+ fmax36081 fma 1 9999999999999999 1 -> 1.000000000000000E+16 Rounded
2410
+ fmax36082 fma 1 999999999999999 1 -> 1000000000000000
2411
+ fmax36083 fma 1 9999999999999 1 -> 10000000000000
2412
+ fmax36084 fma 1 99999999999 1 -> 100000000000
2413
+ fmax36085 fma 1 999999999 1 -> 1000000000
2414
+ fmax36086 fma 1 9999999 1 -> 10000000
2415
+ fmax36087 fma 1 99999 1 -> 100000
2416
+ fmax36088 fma 1 999 1 -> 1000
2417
+ fmax36089 fma 1 9 1 -> 10
2418
+
2419
+
2420
+ -- more LHS swaps
2421
+ fmax36090 fma 1 '-56267E-10' 0 -> '-0.0000056267'
2422
+ fmax36091 fma 1 '-56267E-6' 0 -> '-0.056267'
2423
+ fmax36092 fma 1 '-56267E-5' 0 -> '-0.56267'
2424
+ fmax36093 fma 1 '-56267E-4' 0 -> '-5.6267'
2425
+ fmax36094 fma 1 '-56267E-3' 0 -> '-56.267'
2426
+ fmax36095 fma 1 '-56267E-2' 0 -> '-562.67'
2427
+ fmax36096 fma 1 '-56267E-1' 0 -> '-5626.7'
2428
+ fmax36097 fma 1 '-56267E-0' 0 -> '-56267'
2429
+ fmax36098 fma 1 '-5E-10' 0 -> '-5E-10'
2430
+ fmax36099 fma 1 '-5E-7' 0 -> '-5E-7'
2431
+ fmax36100 fma 1 '-5E-6' 0 -> '-0.000005'
2432
+ fmax36101 fma 1 '-5E-5' 0 -> '-0.00005'
2433
+ fmax36102 fma 1 '-5E-4' 0 -> '-0.0005'
2434
+ fmax36103 fma 1 '-5E-1' 0 -> '-0.5'
2435
+ fmax36104 fma 1 '-5E0' 0 -> '-5'
2436
+ fmax36105 fma 1 '-5E1' 0 -> '-50'
2437
+ fmax36106 fma 1 '-5E5' 0 -> '-500000'
2438
+ fmax36107 fma 1 '-5E15' 0 -> '-5000000000000000'
2439
+ fmax36108 fma 1 '-5E16' 0 -> '-5.000000000000000E+16' Rounded
2440
+ fmax36109 fma 1 '-5E17' 0 -> '-5.000000000000000E+17' Rounded
2441
+ fmax36110 fma 1 '-5E18' 0 -> '-5.000000000000000E+18' Rounded
2442
+ fmax36111 fma 1 '-5E100' 0 -> '-5.000000000000000E+100' Rounded
2443
+
2444
+ -- more RHS swaps
2445
+ fmax36113 fma 1 0 '-56267E-10' -> '-0.0000056267'
2446
+ fmax36114 fma 1 0 '-56267E-6' -> '-0.056267'
2447
+ fmax36116 fma 1 0 '-56267E-5' -> '-0.56267'
2448
+ fmax36117 fma 1 0 '-56267E-4' -> '-5.6267'
2449
+ fmax36119 fma 1 0 '-56267E-3' -> '-56.267'
2450
+ fmax36120 fma 1 0 '-56267E-2' -> '-562.67'
2451
+ fmax36121 fma 1 0 '-56267E-1' -> '-5626.7'
2452
+ fmax36122 fma 1 0 '-56267E-0' -> '-56267'
2453
+ fmax36123 fma 1 0 '-5E-10' -> '-5E-10'
2454
+ fmax36124 fma 1 0 '-5E-7' -> '-5E-7'
2455
+ fmax36125 fma 1 0 '-5E-6' -> '-0.000005'
2456
+ fmax36126 fma 1 0 '-5E-5' -> '-0.00005'
2457
+ fmax36127 fma 1 0 '-5E-4' -> '-0.0005'
2458
+ fmax36128 fma 1 0 '-5E-1' -> '-0.5'
2459
+ fmax36129 fma 1 0 '-5E0' -> '-5'
2460
+ fmax36130 fma 1 0 '-5E1' -> '-50'
2461
+ fmax36131 fma 1 0 '-5E5' -> '-500000'
2462
+ fmax36132 fma 1 0 '-5E15' -> '-5000000000000000'
2463
+ fmax36133 fma 1 0 '-5E16' -> '-5.000000000000000E+16' Rounded
2464
+ fmax36134 fma 1 0 '-5E17' -> '-5.000000000000000E+17' Rounded
2465
+ fmax36135 fma 1 0 '-5E18' -> '-5.000000000000000E+18' Rounded
2466
+ fmax36136 fma 1 0 '-5E100' -> '-5.000000000000000E+100' Rounded
2467
+
2468
+ -- related
2469
+ fmax36137 fma 1 1 '0E-19' -> '1.000000000000000' Rounded
2470
+ fmax36138 fma 1 -1 '0E-19' -> '-1.000000000000000' Rounded
2471
+ fmax36139 fma 1 '0E-19' 1 -> '1.000000000000000' Rounded
2472
+ fmax36140 fma 1 '0E-19' -1 -> '-1.000000000000000' Rounded
2473
+ fmax36141 fma 1 1E+11 0.0000 -> '100000000000.0000'
2474
+ fmax36142 fma 1 1E+11 0.00000 -> '100000000000.0000' Rounded
2475
+ fmax36143 fma 1 0.000 1E+12 -> '1000000000000.000'
2476
+ fmax36144 fma 1 0.0000 1E+12 -> '1000000000000.000' Rounded
2477
+
2478
+ -- [some of the next group are really constructor tests]
2479
+ fmax36146 fma 1 '00.0' 0 -> '0.0'
2480
+ fmax36147 fma 1 '0.00' 0 -> '0.00'
2481
+ fmax36148 fma 1 0 '0.00' -> '0.00'
2482
+ fmax36149 fma 1 0 '00.0' -> '0.0'
2483
+ fmax36150 fma 1 '00.0' '0.00' -> '0.00'
2484
+ fmax36151 fma 1 '0.00' '00.0' -> '0.00'
2485
+ fmax36152 fma 1 '3' '.3' -> '3.3'
2486
+ fmax36153 fma 1 '3.' '.3' -> '3.3'
2487
+ fmax36154 fma 1 '3.0' '.3' -> '3.3'
2488
+ fmax36155 fma 1 '3.00' '.3' -> '3.30'
2489
+ fmax36156 fma 1 '3' '3' -> '6'
2490
+ fmax36157 fma 1 '3' '+3' -> '6'
2491
+ fmax36158 fma 1 '3' '-3' -> '0'
2492
+ fmax36159 fma 1 '0.3' '-0.3' -> '0.0'
2493
+ fmax36160 fma 1 '0.03' '-0.03' -> '0.00'
2494
+
2495
+ -- try borderline precision, with carries, etc.
2496
+ fmax36161 fma 1 '1E+13' '-1' -> '9999999999999'
2497
+ fmax36162 fma 1 '1E+13' '1.11' -> '10000000000001.11'
2498
+ fmax36163 fma 1 '1.11' '1E+13' -> '10000000000001.11'
2499
+ fmax36164 fma 1 '-1' '1E+13' -> '9999999999999'
2500
+ fmax36165 fma 1 '7E+13' '-1' -> '69999999999999'
2501
+ fmax36166 fma 1 '7E+13' '1.11' -> '70000000000001.11'
2502
+ fmax36167 fma 1 '1.11' '7E+13' -> '70000000000001.11'
2503
+ fmax36168 fma 1 '-1' '7E+13' -> '69999999999999'
2504
+
2505
+ -- 1234567890123456 1234567890123456 1 234567890123456
2506
+ fmax36170 fma 1 '0.4444444444444444' '0.5555555555555563' -> '1.000000000000001' Inexact Rounded
2507
+ fmax36171 fma 1 '0.4444444444444444' '0.5555555555555562' -> '1.000000000000001' Inexact Rounded
2508
+ fmax36172 fma 1 '0.4444444444444444' '0.5555555555555561' -> '1.000000000000000' Inexact Rounded
2509
+ fmax36173 fma 1 '0.4444444444444444' '0.5555555555555560' -> '1.000000000000000' Inexact Rounded
2510
+ fmax36174 fma 1 '0.4444444444444444' '0.5555555555555559' -> '1.000000000000000' Inexact Rounded
2511
+ fmax36175 fma 1 '0.4444444444444444' '0.5555555555555558' -> '1.000000000000000' Inexact Rounded
2512
+ fmax36176 fma 1 '0.4444444444444444' '0.5555555555555557' -> '1.000000000000000' Inexact Rounded
2513
+ fmax36177 fma 1 '0.4444444444444444' '0.5555555555555556' -> '1.000000000000000' Rounded
2514
+ fmax36178 fma 1 '0.4444444444444444' '0.5555555555555555' -> '0.9999999999999999'
2515
+ fmax36179 fma 1 '0.4444444444444444' '0.5555555555555554' -> '0.9999999999999998'
2516
+ fmax36180 fma 1 '0.4444444444444444' '0.5555555555555553' -> '0.9999999999999997'
2517
+ fmax36181 fma 1 '0.4444444444444444' '0.5555555555555552' -> '0.9999999999999996'
2518
+ fmax36182 fma 1 '0.4444444444444444' '0.5555555555555551' -> '0.9999999999999995'
2519
+ fmax36183 fma 1 '0.4444444444444444' '0.5555555555555550' -> '0.9999999999999994'
2520
+
2521
+ -- and some more, including residue effects and different roundings
2522
+ rounding: half_up
2523
+ fmax36200 fma 1 '6543210123456789' 0 -> '6543210123456789'
2524
+ fmax36201 fma 1 '6543210123456789' 0.000000001 -> '6543210123456789' Inexact Rounded
2525
+ fmax36202 fma 1 '6543210123456789' 0.000001 -> '6543210123456789' Inexact Rounded
2526
+ fmax36203 fma 1 '6543210123456789' 0.1 -> '6543210123456789' Inexact Rounded
2527
+ fmax36204 fma 1 '6543210123456789' 0.4 -> '6543210123456789' Inexact Rounded
2528
+ fmax36205 fma 1 '6543210123456789' 0.49 -> '6543210123456789' Inexact Rounded
2529
+ fmax36206 fma 1 '6543210123456789' 0.499999 -> '6543210123456789' Inexact Rounded
2530
+ fmax36207 fma 1 '6543210123456789' 0.499999 -> '6543210123456789' Inexact Rounded
2531
+ fmax36208 fma 1 '6543210123456789' 0.5 -> '6543210123456790' Inexact Rounded
2532
+ fmax36209 fma 1 '6543210123456789' 0.500000001 -> '6543210123456790' Inexact Rounded
2533
+ fmax36210 fma 1 '6543210123456789' 0.500001 -> '6543210123456790' Inexact Rounded
2534
+ fmax36211 fma 1 '6543210123456789' 0.51 -> '6543210123456790' Inexact Rounded
2535
+ fmax36212 fma 1 '6543210123456789' 0.6 -> '6543210123456790' Inexact Rounded
2536
+ fmax36213 fma 1 '6543210123456789' 0.9 -> '6543210123456790' Inexact Rounded
2537
+ fmax36214 fma 1 '6543210123456789' 0.99999 -> '6543210123456790' Inexact Rounded
2538
+ fmax36215 fma 1 '6543210123456789' 0.999999 -> '6543210123456790' Inexact Rounded
2539
+ fmax36216 fma 1 '6543210123456789' 1 -> '6543210123456790'
2540
+ fmax36217 fma 1 '6543210123456789' 1.000000001 -> '6543210123456790' Inexact Rounded
2541
+ fmax36218 fma 1 '6543210123456789' 1.00001 -> '6543210123456790' Inexact Rounded
2542
+ fmax36219 fma 1 '6543210123456789' 1.1 -> '6543210123456790' Inexact Rounded
2543
+
2544
+ rounding: half_even
2545
+ fmax36220 fma 1 '6543210123456789' 0 -> '6543210123456789'
2546
+ fmax36221 fma 1 '6543210123456789' 0.000000001 -> '6543210123456789' Inexact Rounded
2547
+ fmax36222 fma 1 '6543210123456789' 0.000001 -> '6543210123456789' Inexact Rounded
2548
+ fmax36223 fma 1 '6543210123456789' 0.1 -> '6543210123456789' Inexact Rounded
2549
+ fmax36224 fma 1 '6543210123456789' 0.4 -> '6543210123456789' Inexact Rounded
2550
+ fmax36225 fma 1 '6543210123456789' 0.49 -> '6543210123456789' Inexact Rounded
2551
+ fmax36226 fma 1 '6543210123456789' 0.499999 -> '6543210123456789' Inexact Rounded
2552
+ fmax36227 fma 1 '6543210123456789' 0.499999 -> '6543210123456789' Inexact Rounded
2553
+ fmax36228 fma 1 '6543210123456789' 0.5 -> '6543210123456790' Inexact Rounded
2554
+ fmax36229 fma 1 '6543210123456789' 0.500000001 -> '6543210123456790' Inexact Rounded
2555
+ fmax36230 fma 1 '6543210123456789' 0.500001 -> '6543210123456790' Inexact Rounded
2556
+ fmax36231 fma 1 '6543210123456789' 0.51 -> '6543210123456790' Inexact Rounded
2557
+ fmax36232 fma 1 '6543210123456789' 0.6 -> '6543210123456790' Inexact Rounded
2558
+ fmax36233 fma 1 '6543210123456789' 0.9 -> '6543210123456790' Inexact Rounded
2559
+ fmax36234 fma 1 '6543210123456789' 0.99999 -> '6543210123456790' Inexact Rounded
2560
+ fmax36235 fma 1 '6543210123456789' 0.999999 -> '6543210123456790' Inexact Rounded
2561
+ fmax36236 fma 1 '6543210123456789' 1 -> '6543210123456790'
2562
+ fmax36237 fma 1 '6543210123456789' 1.00000001 -> '6543210123456790' Inexact Rounded
2563
+ fmax36238 fma 1 '6543210123456789' 1.00001 -> '6543210123456790' Inexact Rounded
2564
+ fmax36239 fma 1 '6543210123456789' 1.1 -> '6543210123456790' Inexact Rounded
2565
+ -- critical few with even bottom digit...
2566
+ fmax36240 fma 1 '6543210123456788' 0.499999 -> '6543210123456788' Inexact Rounded
2567
+ fmax36241 fma 1 '6543210123456788' 0.5 -> '6543210123456788' Inexact Rounded
2568
+ fmax36242 fma 1 '6543210123456788' 0.500000001 -> '6543210123456789' Inexact Rounded
2569
+
2570
+ rounding: down
2571
+ fmax36250 fma 1 '6543210123456789' 0 -> '6543210123456789'
2572
+ fmax36251 fma 1 '6543210123456789' 0.000000001 -> '6543210123456789' Inexact Rounded
2573
+ fmax36252 fma 1 '6543210123456789' 0.000001 -> '6543210123456789' Inexact Rounded
2574
+ fmax36253 fma 1 '6543210123456789' 0.1 -> '6543210123456789' Inexact Rounded
2575
+ fmax36254 fma 1 '6543210123456789' 0.4 -> '6543210123456789' Inexact Rounded
2576
+ fmax36255 fma 1 '6543210123456789' 0.49 -> '6543210123456789' Inexact Rounded
2577
+ fmax36256 fma 1 '6543210123456789' 0.499999 -> '6543210123456789' Inexact Rounded
2578
+ fmax36257 fma 1 '6543210123456789' 0.499999 -> '6543210123456789' Inexact Rounded
2579
+ fmax36258 fma 1 '6543210123456789' 0.5 -> '6543210123456789' Inexact Rounded
2580
+ fmax36259 fma 1 '6543210123456789' 0.500000001 -> '6543210123456789' Inexact Rounded
2581
+ fmax36260 fma 1 '6543210123456789' 0.500001 -> '6543210123456789' Inexact Rounded
2582
+ fmax36261 fma 1 '6543210123456789' 0.51 -> '6543210123456789' Inexact Rounded
2583
+ fmax36262 fma 1 '6543210123456789' 0.6 -> '6543210123456789' Inexact Rounded
2584
+ fmax36263 fma 1 '6543210123456789' 0.9 -> '6543210123456789' Inexact Rounded
2585
+ fmax36264 fma 1 '6543210123456789' 0.99999 -> '6543210123456789' Inexact Rounded
2586
+ fmax36265 fma 1 '6543210123456789' 0.999999 -> '6543210123456789' Inexact Rounded
2587
+ fmax36266 fma 1 '6543210123456789' 1 -> '6543210123456790'
2588
+ fmax36267 fma 1 '6543210123456789' 1.00000001 -> '6543210123456790' Inexact Rounded
2589
+ fmax36268 fma 1 '6543210123456789' 1.00001 -> '6543210123456790' Inexact Rounded
2590
+ fmax36269 fma 1 '6543210123456789' 1.1 -> '6543210123456790' Inexact Rounded
2591
+
2592
+ -- 1 in last place tests
2593
+ rounding: half_even
2594
+ fmax36301 fma 1 -1 1 -> 0
2595
+ fmax36302 fma 1 0 1 -> 1
2596
+ fmax36303 fma 1 1 1 -> 2
2597
+ fmax36304 fma 1 12 1 -> 13
2598
+ fmax36305 fma 1 98 1 -> 99
2599
+ fmax36306 fma 1 99 1 -> 100
2600
+ fmax36307 fma 1 100 1 -> 101
2601
+ fmax36308 fma 1 101 1 -> 102
2602
+ fmax36309 fma 1 -1 -1 -> -2
2603
+ fmax36310 fma 1 0 -1 -> -1
2604
+ fmax36311 fma 1 1 -1 -> 0
2605
+ fmax36312 fma 1 12 -1 -> 11
2606
+ fmax36313 fma 1 98 -1 -> 97
2607
+ fmax36314 fma 1 99 -1 -> 98
2608
+ fmax36315 fma 1 100 -1 -> 99
2609
+ fmax36316 fma 1 101 -1 -> 100
2610
+
2611
+ fmax36321 fma 1 -0.01 0.01 -> 0.00
2612
+ fmax36322 fma 1 0.00 0.01 -> 0.01
2613
+ fmax36323 fma 1 0.01 0.01 -> 0.02
2614
+ fmax36324 fma 1 0.12 0.01 -> 0.13
2615
+ fmax36325 fma 1 0.98 0.01 -> 0.99
2616
+ fmax36326 fma 1 0.99 0.01 -> 1.00
2617
+ fmax36327 fma 1 1.00 0.01 -> 1.01
2618
+ fmax36328 fma 1 1.01 0.01 -> 1.02
2619
+ fmax36329 fma 1 -0.01 -0.01 -> -0.02
2620
+ fmax36330 fma 1 0.00 -0.01 -> -0.01
2621
+ fmax36331 fma 1 0.01 -0.01 -> 0.00
2622
+ fmax36332 fma 1 0.12 -0.01 -> 0.11
2623
+ fmax36333 fma 1 0.98 -0.01 -> 0.97
2624
+ fmax36334 fma 1 0.99 -0.01 -> 0.98
2625
+ fmax36335 fma 1 1.00 -0.01 -> 0.99
2626
+ fmax36336 fma 1 1.01 -0.01 -> 1.00
2627
+
2628
+ -- some more cases where fma 1 ing 0 affects the coefficient
2629
+ fmax36340 fma 1 1E+3 0 -> 1000
2630
+ fmax36341 fma 1 1E+15 0 -> 1000000000000000
2631
+ fmax36342 fma 1 1E+16 0 -> 1.000000000000000E+16 Rounded
2632
+ fmax36343 fma 1 1E+17 0 -> 1.000000000000000E+17 Rounded
2633
+ -- which simply follow from these cases ...
2634
+ fmax36344 fma 1 1E+3 1 -> 1001
2635
+ fmax36345 fma 1 1E+15 1 -> 1000000000000001
2636
+ fmax36346 fma 1 1E+16 1 -> 1.000000000000000E+16 Inexact Rounded
2637
+ fmax36347 fma 1 1E+17 1 -> 1.000000000000000E+17 Inexact Rounded
2638
+ fmax36348 fma 1 1E+3 7 -> 1007
2639
+ fmax36349 fma 1 1E+15 7 -> 1000000000000007
2640
+ fmax36350 fma 1 1E+16 7 -> 1.000000000000001E+16 Inexact Rounded
2641
+ fmax36351 fma 1 1E+17 7 -> 1.000000000000000E+17 Inexact Rounded
2642
+
2643
+ -- tryzeros cases
2644
+ fmax36361 fma 1 0E+50 10000E+1 -> 1.0000E+5
2645
+ fmax36362 fma 1 10000E+1 0E-50 -> 100000.0000000000 Rounded
2646
+ fmax36363 fma 1 10000E+1 10000E-50 -> 100000.0000000000 Rounded Inexact
2647
+ fmax36364 fma 1 12.34 0e-398 -> 12.34000000000000 Rounded
2648
+
2649
+ -- ulp replacement tests
2650
+ fmax36400 fma 1 1 77e-14 -> 1.00000000000077
2651
+ fmax36401 fma 1 1 77e-15 -> 1.000000000000077
2652
+ fmax36402 fma 1 1 77e-16 -> 1.000000000000008 Inexact Rounded
2653
+ fmax36403 fma 1 1 77e-17 -> 1.000000000000001 Inexact Rounded
2654
+ fmax36404 fma 1 1 77e-18 -> 1.000000000000000 Inexact Rounded
2655
+ fmax36405 fma 1 1 77e-19 -> 1.000000000000000 Inexact Rounded
2656
+ fmax36406 fma 1 1 77e-99 -> 1.000000000000000 Inexact Rounded
2657
+
2658
+ fmax36410 fma 1 10 77e-14 -> 10.00000000000077
2659
+ fmax36411 fma 1 10 77e-15 -> 10.00000000000008 Inexact Rounded
2660
+ fmax36412 fma 1 10 77e-16 -> 10.00000000000001 Inexact Rounded
2661
+ fmax36413 fma 1 10 77e-17 -> 10.00000000000000 Inexact Rounded
2662
+ fmax36414 fma 1 10 77e-18 -> 10.00000000000000 Inexact Rounded
2663
+ fmax36415 fma 1 10 77e-19 -> 10.00000000000000 Inexact Rounded
2664
+ fmax36416 fma 1 10 77e-99 -> 10.00000000000000 Inexact Rounded
2665
+
2666
+ fmax36420 fma 1 77e-14 1 -> 1.00000000000077
2667
+ fmax36421 fma 1 77e-15 1 -> 1.000000000000077
2668
+ fmax36422 fma 1 77e-16 1 -> 1.000000000000008 Inexact Rounded
2669
+ fmax36423 fma 1 77e-17 1 -> 1.000000000000001 Inexact Rounded
2670
+ fmax36424 fma 1 77e-18 1 -> 1.000000000000000 Inexact Rounded
2671
+ fmax36425 fma 1 77e-19 1 -> 1.000000000000000 Inexact Rounded
2672
+ fmax36426 fma 1 77e-99 1 -> 1.000000000000000 Inexact Rounded
2673
+
2674
+ fmax36430 fma 1 77e-14 10 -> 10.00000000000077
2675
+ fmax36431 fma 1 77e-15 10 -> 10.00000000000008 Inexact Rounded
2676
+ fmax36432 fma 1 77e-16 10 -> 10.00000000000001 Inexact Rounded
2677
+ fmax36433 fma 1 77e-17 10 -> 10.00000000000000 Inexact Rounded
2678
+ fmax36434 fma 1 77e-18 10 -> 10.00000000000000 Inexact Rounded
2679
+ fmax36435 fma 1 77e-19 10 -> 10.00000000000000 Inexact Rounded
2680
+ fmax36436 fma 1 77e-99 10 -> 10.00000000000000 Inexact Rounded
2681
+
2682
+ -- negative ulps
2683
+ fmax36440 fma 1 1 -77e-14 -> 0.99999999999923
2684
+ fmax36441 fma 1 1 -77e-15 -> 0.999999999999923
2685
+ fmax36442 fma 1 1 -77e-16 -> 0.9999999999999923
2686
+ fmax36443 fma 1 1 -77e-17 -> 0.9999999999999992 Inexact Rounded
2687
+ fmax36444 fma 1 1 -77e-18 -> 0.9999999999999999 Inexact Rounded
2688
+ fmax36445 fma 1 1 -77e-19 -> 1.000000000000000 Inexact Rounded
2689
+ fmax36446 fma 1 1 -77e-99 -> 1.000000000000000 Inexact Rounded
2690
+
2691
+ fmax36450 fma 1 10 -77e-14 -> 9.99999999999923
2692
+ fmax36451 fma 1 10 -77e-15 -> 9.999999999999923
2693
+ fmax36452 fma 1 10 -77e-16 -> 9.999999999999992 Inexact Rounded
2694
+ fmax36453 fma 1 10 -77e-17 -> 9.999999999999999 Inexact Rounded
2695
+ fmax36454 fma 1 10 -77e-18 -> 10.00000000000000 Inexact Rounded
2696
+ fmax36455 fma 1 10 -77e-19 -> 10.00000000000000 Inexact Rounded
2697
+ fmax36456 fma 1 10 -77e-99 -> 10.00000000000000 Inexact Rounded
2698
+
2699
+ fmax36460 fma 1 -77e-14 1 -> 0.99999999999923
2700
+ fmax36461 fma 1 -77e-15 1 -> 0.999999999999923
2701
+ fmax36462 fma 1 -77e-16 1 -> 0.9999999999999923
2702
+ fmax36463 fma 1 -77e-17 1 -> 0.9999999999999992 Inexact Rounded
2703
+ fmax36464 fma 1 -77e-18 1 -> 0.9999999999999999 Inexact Rounded
2704
+ fmax36465 fma 1 -77e-19 1 -> 1.000000000000000 Inexact Rounded
2705
+ fmax36466 fma 1 -77e-99 1 -> 1.000000000000000 Inexact Rounded
2706
+
2707
+ fmax36470 fma 1 -77e-14 10 -> 9.99999999999923
2708
+ fmax36471 fma 1 -77e-15 10 -> 9.999999999999923
2709
+ fmax36472 fma 1 -77e-16 10 -> 9.999999999999992 Inexact Rounded
2710
+ fmax36473 fma 1 -77e-17 10 -> 9.999999999999999 Inexact Rounded
2711
+ fmax36474 fma 1 -77e-18 10 -> 10.00000000000000 Inexact Rounded
2712
+ fmax36475 fma 1 -77e-19 10 -> 10.00000000000000 Inexact Rounded
2713
+ fmax36476 fma 1 -77e-99 10 -> 10.00000000000000 Inexact Rounded
2714
+
2715
+ -- negative ulps
2716
+ fmax36480 fma 1 -1 77e-14 -> -0.99999999999923
2717
+ fmax36481 fma 1 -1 77e-15 -> -0.999999999999923
2718
+ fmax36482 fma 1 -1 77e-16 -> -0.9999999999999923
2719
+ fmax36483 fma 1 -1 77e-17 -> -0.9999999999999992 Inexact Rounded
2720
+ fmax36484 fma 1 -1 77e-18 -> -0.9999999999999999 Inexact Rounded
2721
+ fmax36485 fma 1 -1 77e-19 -> -1.000000000000000 Inexact Rounded
2722
+ fmax36486 fma 1 -1 77e-99 -> -1.000000000000000 Inexact Rounded
2723
+
2724
+ fmax36490 fma 1 -10 77e-14 -> -9.99999999999923
2725
+ fmax36491 fma 1 -10 77e-15 -> -9.999999999999923
2726
+ fmax36492 fma 1 -10 77e-16 -> -9.999999999999992 Inexact Rounded
2727
+ fmax36493 fma 1 -10 77e-17 -> -9.999999999999999 Inexact Rounded
2728
+ fmax36494 fma 1 -10 77e-18 -> -10.00000000000000 Inexact Rounded
2729
+ fmax36495 fma 1 -10 77e-19 -> -10.00000000000000 Inexact Rounded
2730
+ fmax36496 fma 1 -10 77e-99 -> -10.00000000000000 Inexact Rounded
2731
+
2732
+ fmax36500 fma 1 77e-14 -1 -> -0.99999999999923
2733
+ fmax36501 fma 1 77e-15 -1 -> -0.999999999999923
2734
+ fmax36502 fma 1 77e-16 -1 -> -0.9999999999999923
2735
+ fmax36503 fma 1 77e-17 -1 -> -0.9999999999999992 Inexact Rounded
2736
+ fmax36504 fma 1 77e-18 -1 -> -0.9999999999999999 Inexact Rounded
2737
+ fmax36505 fma 1 77e-19 -1 -> -1.000000000000000 Inexact Rounded
2738
+ fmax36506 fma 1 77e-99 -1 -> -1.000000000000000 Inexact Rounded
2739
+
2740
+ fmax36510 fma 1 77e-14 -10 -> -9.99999999999923
2741
+ fmax36511 fma 1 77e-15 -10 -> -9.999999999999923
2742
+ fmax36512 fma 1 77e-16 -10 -> -9.999999999999992 Inexact Rounded
2743
+ fmax36513 fma 1 77e-17 -10 -> -9.999999999999999 Inexact Rounded
2744
+ fmax36514 fma 1 77e-18 -10 -> -10.00000000000000 Inexact Rounded
2745
+ fmax36515 fma 1 77e-19 -10 -> -10.00000000000000 Inexact Rounded
2746
+ fmax36516 fma 1 77e-99 -10 -> -10.00000000000000 Inexact Rounded
2747
+
2748
+
2749
+ -- long operands
2750
+ fmax36521 fma 1 101234562345678000 0 -> 1.012345623456780E+17 Rounded
2751
+ fmax36522 fma 1 0 101234562345678000 -> 1.012345623456780E+17 Rounded
2752
+ fmax36523 fma 1 10123456234567800 0 -> 1.012345623456780E+16 Rounded
2753
+ fmax36524 fma 1 0 10123456234567800 -> 1.012345623456780E+16 Rounded
2754
+ fmax36525 fma 1 10123456234567890 0 -> 1.012345623456789E+16 Rounded
2755
+ fmax36526 fma 1 0 10123456234567890 -> 1.012345623456789E+16 Rounded
2756
+ fmax36527 fma 1 10123456234567891 0 -> 1.012345623456789E+16 Inexact Rounded
2757
+ fmax36528 fma 1 0 10123456234567891 -> 1.012345623456789E+16 Inexact Rounded
2758
+ fmax36529 fma 1 101234562345678901 0 -> 1.012345623456789E+17 Inexact Rounded
2759
+ fmax36530 fma 1 0 101234562345678901 -> 1.012345623456789E+17 Inexact Rounded
2760
+ fmax36531 fma 1 10123456234567896 0 -> 1.012345623456790E+16 Inexact Rounded
2761
+ fmax36532 fma 1 0 10123456234567896 -> 1.012345623456790E+16 Inexact Rounded
2762
+
2763
+ -- verify a query
2764
+ rounding: down
2765
+ fmax36561 fma 1 1e-398 9.000000000000000E+384 -> 9.000000000000000E+384 Inexact Rounded
2766
+ fmax36562 fma 1 0 9.000000000000000E+384 -> 9.000000000000000E+384 Rounded
2767
+ -- and using decimal64 bounds...
2768
+ rounding: down
2769
+ fmax36563 fma 1 1e-388 9.000000000000000E+374 -> 9.000000000000000E+374 Inexact Rounded
2770
+ fmax36564 fma 1 0 9.000000000000000E+374 -> 9.000000000000000E+374 Rounded
2771
+
2772
+ -- more zeros, etc.
2773
+ rounding: half_even
2774
+
2775
+ fmax36701 fma 1 5.00 1.00E-3 -> 5.00100
2776
+ fmax36702 fma 1 00.00 0.000 -> 0.000
2777
+ fmax36703 fma 1 00.00 0E-3 -> 0.000
2778
+ fmax36704 fma 1 0E-3 00.00 -> 0.000
2779
+
2780
+ fmax36710 fma 1 0E+3 00.00 -> 0.00
2781
+ fmax36711 fma 1 0E+3 00.0 -> 0.0
2782
+ fmax36712 fma 1 0E+3 00. -> 0
2783
+ fmax36713 fma 1 0E+3 00.E+1 -> 0E+1
2784
+ fmax36714 fma 1 0E+3 00.E+2 -> 0E+2
2785
+ fmax36715 fma 1 0E+3 00.E+3 -> 0E+3
2786
+ fmax36716 fma 1 0E+3 00.E+4 -> 0E+3
2787
+ fmax36717 fma 1 0E+3 00.E+5 -> 0E+3
2788
+ fmax36718 fma 1 0E+3 -00.0 -> 0.0
2789
+ fmax36719 fma 1 0E+3 -00. -> 0
2790
+ fmax36731 fma 1 0E+3 -00.E+1 -> 0E+1
2791
+
2792
+ fmax36720 fma 1 00.00 0E+3 -> 0.00
2793
+ fmax36721 fma 1 00.0 0E+3 -> 0.0
2794
+ fmax36722 fma 1 00. 0E+3 -> 0
2795
+ fmax36723 fma 1 00.E+1 0E+3 -> 0E+1
2796
+ fmax36724 fma 1 00.E+2 0E+3 -> 0E+2
2797
+ fmax36725 fma 1 00.E+3 0E+3 -> 0E+3
2798
+ fmax36726 fma 1 00.E+4 0E+3 -> 0E+3
2799
+ fmax36727 fma 1 00.E+5 0E+3 -> 0E+3
2800
+ fmax36728 fma 1 -00.00 0E+3 -> 0.00
2801
+ fmax36729 fma 1 -00.0 0E+3 -> 0.0
2802
+ fmax36730 fma 1 -00. 0E+3 -> 0
2803
+
2804
+ fmax36732 fma 1 0 0 -> 0
2805
+ fmax36733 fma 1 0 -0 -> 0
2806
+ fmax36734 fma 1 -0 0 -> 0
2807
+ fmax36735 fma 1 -0 -0 -> -0 -- IEEE 854 special case
2808
+
2809
+ fmax36736 fma 1 1 -1 -> 0
2810
+ fmax36737 fma 1 -1 -1 -> -2
2811
+ fmax36738 fma 1 1 1 -> 2
2812
+ fmax36739 fma 1 -1 1 -> 0
2813
+
2814
+ fmax36741 fma 1 0 -1 -> -1
2815
+ fmax36742 fma 1 -0 -1 -> -1
2816
+ fmax36743 fma 1 0 1 -> 1
2817
+ fmax36744 fma 1 -0 1 -> 1
2818
+ fmax36745 fma 1 -1 0 -> -1
2819
+ fmax36746 fma 1 -1 -0 -> -1
2820
+ fmax36747 fma 1 1 0 -> 1
2821
+ fmax36748 fma 1 1 -0 -> 1
2822
+
2823
+ fmax36751 fma 1 0.0 -1 -> -1.0
2824
+ fmax36752 fma 1 -0.0 -1 -> -1.0
2825
+ fmax36753 fma 1 0.0 1 -> 1.0
2826
+ fmax36754 fma 1 -0.0 1 -> 1.0
2827
+ fmax36755 fma 1 -1.0 0 -> -1.0
2828
+ fmax36756 fma 1 -1.0 -0 -> -1.0
2829
+ fmax36757 fma 1 1.0 0 -> 1.0
2830
+ fmax36758 fma 1 1.0 -0 -> 1.0
2831
+
2832
+ fmax36761 fma 1 0 -1.0 -> -1.0
2833
+ fmax36762 fma 1 -0 -1.0 -> -1.0
2834
+ fmax36763 fma 1 0 1.0 -> 1.0
2835
+ fmax36764 fma 1 -0 1.0 -> 1.0
2836
+ fmax36765 fma 1 -1 0.0 -> -1.0
2837
+ fmax36766 fma 1 -1 -0.0 -> -1.0
2838
+ fmax36767 fma 1 1 0.0 -> 1.0
2839
+ fmax36768 fma 1 1 -0.0 -> 1.0
2840
+
2841
+ fmax36771 fma 1 0.0 -1.0 -> -1.0
2842
+ fmax36772 fma 1 -0.0 -1.0 -> -1.0
2843
+ fmax36773 fma 1 0.0 1.0 -> 1.0
2844
+ fmax36774 fma 1 -0.0 1.0 -> 1.0
2845
+ fmax36775 fma 1 -1.0 0.0 -> -1.0
2846
+ fmax36776 fma 1 -1.0 -0.0 -> -1.0
2847
+ fmax36777 fma 1 1.0 0.0 -> 1.0
2848
+ fmax36778 fma 1 1.0 -0.0 -> 1.0
2849
+
2850
+ -- Specials
2851
+ fmax36780 fma 1 -Inf -Inf -> -Infinity
2852
+ fmax36781 fma 1 -Inf -1000 -> -Infinity
2853
+ fmax36782 fma 1 -Inf -1 -> -Infinity
2854
+ fmax36783 fma 1 -Inf -0 -> -Infinity
2855
+ fmax36784 fma 1 -Inf 0 -> -Infinity
2856
+ fmax36785 fma 1 -Inf 1 -> -Infinity
2857
+ fmax36786 fma 1 -Inf 1000 -> -Infinity
2858
+ fmax36787 fma 1 -1000 -Inf -> -Infinity
2859
+ fmax36788 fma 1 -Inf -Inf -> -Infinity
2860
+ fmax36789 fma 1 -1 -Inf -> -Infinity
2861
+ fmax36790 fma 1 -0 -Inf -> -Infinity
2862
+ fmax36791 fma 1 0 -Inf -> -Infinity
2863
+ fmax36792 fma 1 1 -Inf -> -Infinity
2864
+ fmax36793 fma 1 1000 -Inf -> -Infinity
2865
+ fmax36794 fma 1 Inf -Inf -> NaN Invalid_operation
2866
+
2867
+ fmax36800 fma 1 Inf -Inf -> NaN Invalid_operation
2868
+ fmax36801 fma 1 Inf -1000 -> Infinity
2869
+ fmax36802 fma 1 Inf -1 -> Infinity
2870
+ fmax36803 fma 1 Inf -0 -> Infinity
2871
+ fmax36804 fma 1 Inf 0 -> Infinity
2872
+ fmax36805 fma 1 Inf 1 -> Infinity
2873
+ fmax36806 fma 1 Inf 1000 -> Infinity
2874
+ fmax36807 fma 1 Inf Inf -> Infinity
2875
+ fmax36808 fma 1 -1000 Inf -> Infinity
2876
+ fmax36809 fma 1 -Inf Inf -> NaN Invalid_operation
2877
+ fmax36810 fma 1 -1 Inf -> Infinity
2878
+ fmax36811 fma 1 -0 Inf -> Infinity
2879
+ fmax36812 fma 1 0 Inf -> Infinity
2880
+ fmax36813 fma 1 1 Inf -> Infinity
2881
+ fmax36814 fma 1 1000 Inf -> Infinity
2882
+ fmax36815 fma 1 Inf Inf -> Infinity
2883
+
2884
+ fmax36821 fma 1 NaN -Inf -> NaN
2885
+ fmax36822 fma 1 NaN -1000 -> NaN
2886
+ fmax36823 fma 1 NaN -1 -> NaN
2887
+ fmax36824 fma 1 NaN -0 -> NaN
2888
+ fmax36825 fma 1 NaN 0 -> NaN
2889
+ fmax36826 fma 1 NaN 1 -> NaN
2890
+ fmax36827 fma 1 NaN 1000 -> NaN
2891
+ fmax36828 fma 1 NaN Inf -> NaN
2892
+ fmax36829 fma 1 NaN NaN -> NaN
2893
+ fmax36830 fma 1 -Inf NaN -> NaN
2894
+ fmax36831 fma 1 -1000 NaN -> NaN
2895
+ fmax36832 fma 1 -1 NaN -> NaN
2896
+ fmax36833 fma 1 -0 NaN -> NaN
2897
+ fmax36834 fma 1 0 NaN -> NaN
2898
+ fmax36835 fma 1 1 NaN -> NaN
2899
+ fmax36836 fma 1 1000 NaN -> NaN
2900
+ fmax36837 fma 1 Inf NaN -> NaN
2901
+
2902
+ fmax36841 fma 1 sNaN -Inf -> NaN Invalid_operation
2903
+ fmax36842 fma 1 sNaN -1000 -> NaN Invalid_operation
2904
+ fmax36843 fma 1 sNaN -1 -> NaN Invalid_operation
2905
+ fmax36844 fma 1 sNaN -0 -> NaN Invalid_operation
2906
+ fmax36845 fma 1 sNaN 0 -> NaN Invalid_operation
2907
+ fmax36846 fma 1 sNaN 1 -> NaN Invalid_operation
2908
+ fmax36847 fma 1 sNaN 1000 -> NaN Invalid_operation
2909
+ fmax36848 fma 1 sNaN NaN -> NaN Invalid_operation
2910
+ fmax36849 fma 1 sNaN sNaN -> NaN Invalid_operation
2911
+ fmax36850 fma 1 NaN sNaN -> NaN Invalid_operation
2912
+ fmax36851 fma 1 -Inf sNaN -> NaN Invalid_operation
2913
+ fmax36852 fma 1 -1000 sNaN -> NaN Invalid_operation
2914
+ fmax36853 fma 1 -1 sNaN -> NaN Invalid_operation
2915
+ fmax36854 fma 1 -0 sNaN -> NaN Invalid_operation
2916
+ fmax36855 fma 1 0 sNaN -> NaN Invalid_operation
2917
+ fmax36856 fma 1 1 sNaN -> NaN Invalid_operation
2918
+ fmax36857 fma 1 1000 sNaN -> NaN Invalid_operation
2919
+ fmax36858 fma 1 Inf sNaN -> NaN Invalid_operation
2920
+ fmax36859 fma 1 NaN sNaN -> NaN Invalid_operation
2921
+
2922
+ -- propagating NaNs
2923
+ fmax36861 fma 1 NaN1 -Inf -> NaN1
2924
+ fmax36862 fma 1 +NaN2 -1000 -> NaN2
2925
+ fmax36863 fma 1 NaN3 1000 -> NaN3
2926
+ fmax36864 fma 1 NaN4 Inf -> NaN4
2927
+ fmax36865 fma 1 NaN5 +NaN6 -> NaN5
2928
+ fmax36866 fma 1 -Inf NaN7 -> NaN7
2929
+ fmax36867 fma 1 -1000 NaN8 -> NaN8
2930
+ fmax36868 fma 1 1000 NaN9 -> NaN9
2931
+ fmax36869 fma 1 Inf +NaN10 -> NaN10
2932
+ fmax36871 fma 1 sNaN11 -Inf -> NaN11 Invalid_operation
2933
+ fmax36872 fma 1 sNaN12 -1000 -> NaN12 Invalid_operation
2934
+ fmax36873 fma 1 sNaN13 1000 -> NaN13 Invalid_operation
2935
+ fmax36874 fma 1 sNaN14 NaN17 -> NaN14 Invalid_operation
2936
+ fmax36875 fma 1 sNaN15 sNaN18 -> NaN15 Invalid_operation
2937
+ fmax36876 fma 1 NaN16 sNaN19 -> NaN19 Invalid_operation
2938
+ fmax36877 fma 1 -Inf +sNaN20 -> NaN20 Invalid_operation
2939
+ fmax36878 fma 1 -1000 sNaN21 -> NaN21 Invalid_operation
2940
+ fmax36879 fma 1 1000 sNaN22 -> NaN22 Invalid_operation
2941
+ fmax36880 fma 1 Inf sNaN23 -> NaN23 Invalid_operation
2942
+ fmax36881 fma 1 +NaN25 +sNaN24 -> NaN24 Invalid_operation
2943
+ fmax36882 fma 1 -NaN26 NaN28 -> -NaN26
2944
+ fmax36883 fma 1 -sNaN27 sNaN29 -> -NaN27 Invalid_operation
2945
+ fmax36884 fma 1 1000 -NaN30 -> -NaN30
2946
+ fmax36885 fma 1 1000 -sNaN31 -> -NaN31 Invalid_operation
2947
+
2948
+ -- now the case where we can get underflow but the result is normal
2949
+ -- [note this can't happen if the operands are also bounded, as we
2950
+ -- cannot represent 1E-399, for example]
2951
+
2952
+ fmax36571 fma 1 1E-383 0 -> 1E-383
2953
+ fmax36572 fma 1 1E-384 0 -> 1E-384 Subnormal
2954
+ fmax36573 fma 1 1E-383 1E-384 -> 1.1E-383
2955
+ fmax36574 subtract 1E-383 1E-384 -> 9E-384 Subnormal
2956
+
2957
+ -- Here we explore the boundary of rounding a subnormal to Nmin
2958
+ fmax36575 subtract 1E-383 1E-398 -> 9.99999999999999E-384 Subnormal
2959
+ fmax36576 subtract 1E-383 1E-398 -> 9.99999999999999E-384 Subnormal
2960
+ fmax36577 subtract 1E-383 1E-399 -> 1.000000000000000E-383 Underflow Inexact Subnormal Rounded
2961
+ fmax36578 subtract 1E-383 1E-400 -> 1.000000000000000E-383 Underflow Inexact Subnormal Rounded
2962
+ fmax36579 subtract 1E-383 1E-401 -> 1.000000000000000E-383 Underflow Inexact Subnormal Rounded
2963
+ fmax36580 subtract 1E-383 1E-402 -> 1.000000000000000E-383 Underflow Inexact Subnormal Rounded
2964
+
2965
+ -- check overflow edge case
2966
+ -- 1234567890123456
2967
+ fmax36972 apply 9.999999999999999E+384 -> 9.999999999999999E+384
2968
+ fmax36973 fma 1 9.999999999999999E+384 1 -> 9.999999999999999E+384 Inexact Rounded
2969
+ fmax36974 fma 1 9999999999999999E+369 1 -> 9.999999999999999E+384 Inexact Rounded
2970
+ fmax36975 fma 1 9999999999999999E+369 1E+369 -> Infinity Overflow Inexact Rounded
2971
+ fmax36976 fma 1 9999999999999999E+369 9E+368 -> Infinity Overflow Inexact Rounded
2972
+ fmax36977 fma 1 9999999999999999E+369 8E+368 -> Infinity Overflow Inexact Rounded
2973
+ fmax36978 fma 1 9999999999999999E+369 7E+368 -> Infinity Overflow Inexact Rounded
2974
+ fmax36979 fma 1 9999999999999999E+369 6E+368 -> Infinity Overflow Inexact Rounded
2975
+ fmax36980 fma 1 9999999999999999E+369 5E+368 -> Infinity Overflow Inexact Rounded
2976
+ fmax36981 fma 1 9999999999999999E+369 4E+368 -> 9.999999999999999E+384 Inexact Rounded
2977
+ fmax36982 fma 1 9999999999999999E+369 3E+368 -> 9.999999999999999E+384 Inexact Rounded
2978
+ fmax36983 fma 1 9999999999999999E+369 2E+368 -> 9.999999999999999E+384 Inexact Rounded
2979
+ fmax36984 fma 1 9999999999999999E+369 1E+368 -> 9.999999999999999E+384 Inexact Rounded
2980
+
2981
+ fmax36985 apply -9.999999999999999E+384 -> -9.999999999999999E+384
2982
+ fmax36986 fma 1 -9.999999999999999E+384 -1 -> -9.999999999999999E+384 Inexact Rounded
2983
+ fmax36987 fma 1 -9999999999999999E+369 -1 -> -9.999999999999999E+384 Inexact Rounded
2984
+ fmax36988 fma 1 -9999999999999999E+369 -1E+369 -> -Infinity Overflow Inexact Rounded
2985
+ fmax36989 fma 1 -9999999999999999E+369 -9E+368 -> -Infinity Overflow Inexact Rounded
2986
+ fmax36990 fma 1 -9999999999999999E+369 -8E+368 -> -Infinity Overflow Inexact Rounded
2987
+ fmax36991 fma 1 -9999999999999999E+369 -7E+368 -> -Infinity Overflow Inexact Rounded
2988
+ fmax36992 fma 1 -9999999999999999E+369 -6E+368 -> -Infinity Overflow Inexact Rounded
2989
+ fmax36993 fma 1 -9999999999999999E+369 -5E+368 -> -Infinity Overflow Inexact Rounded
2990
+ fmax36994 fma 1 -9999999999999999E+369 -4E+368 -> -9.999999999999999E+384 Inexact Rounded
2991
+ fmax36995 fma 1 -9999999999999999E+369 -3E+368 -> -9.999999999999999E+384 Inexact Rounded
2992
+ fmax36996 fma 1 -9999999999999999E+369 -2E+368 -> -9.999999999999999E+384 Inexact Rounded
2993
+ fmax36997 fma 1 -9999999999999999E+369 -1E+368 -> -9.999999999999999E+384 Inexact Rounded
2994
+
2995
+ -- And for round down full and subnormal results
2996
+ rounding: down
2997
+ fmax361100 fma 1 1e+2 -1e-383 -> 99.99999999999999 Rounded Inexact
2998
+ fmax361101 fma 1 1e+1 -1e-383 -> 9.999999999999999 Rounded Inexact
2999
+ fmax361103 fma 1 +1 -1e-383 -> 0.9999999999999999 Rounded Inexact
3000
+ fmax361104 fma 1 1e-1 -1e-383 -> 0.09999999999999999 Rounded Inexact
3001
+ fmax361105 fma 1 1e-2 -1e-383 -> 0.009999999999999999 Rounded Inexact
3002
+ fmax361106 fma 1 1e-3 -1e-383 -> 0.0009999999999999999 Rounded Inexact
3003
+ fmax361107 fma 1 1e-4 -1e-383 -> 0.00009999999999999999 Rounded Inexact
3004
+ fmax361108 fma 1 1e-5 -1e-383 -> 0.000009999999999999999 Rounded Inexact
3005
+ fmax361109 fma 1 1e-6 -1e-383 -> 9.999999999999999E-7 Rounded Inexact
3006
+
3007
+ rounding: ceiling
3008
+ fmax361110 fma 1 -1e+2 +1e-383 -> -99.99999999999999 Rounded Inexact
3009
+ fmax361111 fma 1 -1e+1 +1e-383 -> -9.999999999999999 Rounded Inexact
3010
+ fmax361113 fma 1 -1 +1e-383 -> -0.9999999999999999 Rounded Inexact
3011
+ fmax361114 fma 1 -1e-1 +1e-383 -> -0.09999999999999999 Rounded Inexact
3012
+ fmax361115 fma 1 -1e-2 +1e-383 -> -0.009999999999999999 Rounded Inexact
3013
+ fmax361116 fma 1 -1e-3 +1e-383 -> -0.0009999999999999999 Rounded Inexact
3014
+ fmax361117 fma 1 -1e-4 +1e-383 -> -0.00009999999999999999 Rounded Inexact
3015
+ fmax361118 fma 1 -1e-5 +1e-383 -> -0.000009999999999999999 Rounded Inexact
3016
+ fmax361119 fma 1 -1e-6 +1e-383 -> -9.999999999999999E-7 Rounded Inexact
3017
+
3018
+ -- tests based on Gunnar Degnbol's edge case
3019
+ rounding: half_even
3020
+
3021
+ fmax361300 fma 1 1E16 -0.5 -> 1.000000000000000E+16 Inexact Rounded
3022
+ fmax361310 fma 1 1E16 -0.51 -> 9999999999999999 Inexact Rounded
3023
+ fmax361311 fma 1 1E16 -0.501 -> 9999999999999999 Inexact Rounded
3024
+ fmax361312 fma 1 1E16 -0.5001 -> 9999999999999999 Inexact Rounded
3025
+ fmax361313 fma 1 1E16 -0.50001 -> 9999999999999999 Inexact Rounded
3026
+ fmax361314 fma 1 1E16 -0.500001 -> 9999999999999999 Inexact Rounded
3027
+ fmax361315 fma 1 1E16 -0.5000001 -> 9999999999999999 Inexact Rounded
3028
+ fmax361316 fma 1 1E16 -0.50000001 -> 9999999999999999 Inexact Rounded
3029
+ fmax361317 fma 1 1E16 -0.500000001 -> 9999999999999999 Inexact Rounded
3030
+ fmax361318 fma 1 1E16 -0.5000000001 -> 9999999999999999 Inexact Rounded
3031
+ fmax361319 fma 1 1E16 -0.50000000001 -> 9999999999999999 Inexact Rounded
3032
+ fmax361320 fma 1 1E16 -0.500000000001 -> 9999999999999999 Inexact Rounded
3033
+ fmax361321 fma 1 1E16 -0.5000000000001 -> 9999999999999999 Inexact Rounded
3034
+ fmax361322 fma 1 1E16 -0.50000000000001 -> 9999999999999999 Inexact Rounded
3035
+ fmax361323 fma 1 1E16 -0.500000000000001 -> 9999999999999999 Inexact Rounded
3036
+ fmax361324 fma 1 1E16 -0.5000000000000001 -> 9999999999999999 Inexact Rounded
3037
+ fmax361325 fma 1 1E16 -0.5000000000000000 -> 1.000000000000000E+16 Inexact Rounded
3038
+ fmax361326 fma 1 1E16 -0.500000000000000 -> 1.000000000000000E+16 Inexact Rounded
3039
+ fmax361327 fma 1 1E16 -0.50000000000000 -> 1.000000000000000E+16 Inexact Rounded
3040
+ fmax361328 fma 1 1E16 -0.5000000000000 -> 1.000000000000000E+16 Inexact Rounded
3041
+ fmax361329 fma 1 1E16 -0.500000000000 -> 1.000000000000000E+16 Inexact Rounded
3042
+ fmax361330 fma 1 1E16 -0.50000000000 -> 1.000000000000000E+16 Inexact Rounded
3043
+ fmax361331 fma 1 1E16 -0.5000000000 -> 1.000000000000000E+16 Inexact Rounded
3044
+ fmax361332 fma 1 1E16 -0.500000000 -> 1.000000000000000E+16 Inexact Rounded
3045
+ fmax361333 fma 1 1E16 -0.50000000 -> 1.000000000000000E+16 Inexact Rounded
3046
+ fmax361334 fma 1 1E16 -0.5000000 -> 1.000000000000000E+16 Inexact Rounded
3047
+ fmax361335 fma 1 1E16 -0.500000 -> 1.000000000000000E+16 Inexact Rounded
3048
+ fmax361336 fma 1 1E16 -0.50000 -> 1.000000000000000E+16 Inexact Rounded
3049
+ fmax361337 fma 1 1E16 -0.5000 -> 1.000000000000000E+16 Inexact Rounded
3050
+ fmax361338 fma 1 1E16 -0.500 -> 1.000000000000000E+16 Inexact Rounded
3051
+ fmax361339 fma 1 1E16 -0.50 -> 1.000000000000000E+16 Inexact Rounded
3052
+
3053
+ fmax361340 fma 1 1E16 -5000000.000010001 -> 9999999995000000 Inexact Rounded
3054
+ fmax361341 fma 1 1E16 -5000000.000000001 -> 9999999995000000 Inexact Rounded
3055
+
3056
+ fmax361349 fma 1 9999999999999999 0.4 -> 9999999999999999 Inexact Rounded
3057
+ fmax361350 fma 1 9999999999999999 0.49 -> 9999999999999999 Inexact Rounded
3058
+ fmax361351 fma 1 9999999999999999 0.499 -> 9999999999999999 Inexact Rounded
3059
+ fmax361352 fma 1 9999999999999999 0.4999 -> 9999999999999999 Inexact Rounded
3060
+ fmax361353 fma 1 9999999999999999 0.49999 -> 9999999999999999 Inexact Rounded
3061
+ fmax361354 fma 1 9999999999999999 0.499999 -> 9999999999999999 Inexact Rounded
3062
+ fmax361355 fma 1 9999999999999999 0.4999999 -> 9999999999999999 Inexact Rounded
3063
+ fmax361356 fma 1 9999999999999999 0.49999999 -> 9999999999999999 Inexact Rounded
3064
+ fmax361357 fma 1 9999999999999999 0.499999999 -> 9999999999999999 Inexact Rounded
3065
+ fmax361358 fma 1 9999999999999999 0.4999999999 -> 9999999999999999 Inexact Rounded
3066
+ fmax361359 fma 1 9999999999999999 0.49999999999 -> 9999999999999999 Inexact Rounded
3067
+ fmax361360 fma 1 9999999999999999 0.499999999999 -> 9999999999999999 Inexact Rounded
3068
+ fmax361361 fma 1 9999999999999999 0.4999999999999 -> 9999999999999999 Inexact Rounded
3069
+ fmax361362 fma 1 9999999999999999 0.49999999999999 -> 9999999999999999 Inexact Rounded
3070
+ fmax361363 fma 1 9999999999999999 0.499999999999999 -> 9999999999999999 Inexact Rounded
3071
+ fmax361364 fma 1 9999999999999999 0.4999999999999999 -> 9999999999999999 Inexact Rounded
3072
+ fmax361365 fma 1 9999999999999999 0.5000000000000000 -> 1.000000000000000E+16 Inexact Rounded
3073
+ fmax361367 fma 1 9999999999999999 0.500000000000000 -> 1.000000000000000E+16 Inexact Rounded
3074
+ fmax361368 fma 1 9999999999999999 0.50000000000000 -> 1.000000000000000E+16 Inexact Rounded
3075
+ fmax361369 fma 1 9999999999999999 0.5000000000000 -> 1.000000000000000E+16 Inexact Rounded
3076
+ fmax361370 fma 1 9999999999999999 0.500000000000 -> 1.000000000000000E+16 Inexact Rounded
3077
+ fmax361371 fma 1 9999999999999999 0.50000000000 -> 1.000000000000000E+16 Inexact Rounded
3078
+ fmax361372 fma 1 9999999999999999 0.5000000000 -> 1.000000000000000E+16 Inexact Rounded
3079
+ fmax361373 fma 1 9999999999999999 0.500000000 -> 1.000000000000000E+16 Inexact Rounded
3080
+ fmax361374 fma 1 9999999999999999 0.50000000 -> 1.000000000000000E+16 Inexact Rounded
3081
+ fmax361375 fma 1 9999999999999999 0.5000000 -> 1.000000000000000E+16 Inexact Rounded
3082
+ fmax361376 fma 1 9999999999999999 0.500000 -> 1.000000000000000E+16 Inexact Rounded
3083
+ fmax361377 fma 1 9999999999999999 0.50000 -> 1.000000000000000E+16 Inexact Rounded
3084
+ fmax361378 fma 1 9999999999999999 0.5000 -> 1.000000000000000E+16 Inexact Rounded
3085
+ fmax361379 fma 1 9999999999999999 0.500 -> 1.000000000000000E+16 Inexact Rounded
3086
+ fmax361380 fma 1 9999999999999999 0.50 -> 1.000000000000000E+16 Inexact Rounded
3087
+ fmax361381 fma 1 9999999999999999 0.5 -> 1.000000000000000E+16 Inexact Rounded
3088
+ fmax361382 fma 1 9999999999999999 0.5000000000000001 -> 1.000000000000000E+16 Inexact Rounded
3089
+ fmax361383 fma 1 9999999999999999 0.500000000000001 -> 1.000000000000000E+16 Inexact Rounded
3090
+ fmax361384 fma 1 9999999999999999 0.50000000000001 -> 1.000000000000000E+16 Inexact Rounded
3091
+ fmax361385 fma 1 9999999999999999 0.5000000000001 -> 1.000000000000000E+16 Inexact Rounded
3092
+ fmax361386 fma 1 9999999999999999 0.500000000001 -> 1.000000000000000E+16 Inexact Rounded
3093
+ fmax361387 fma 1 9999999999999999 0.50000000001 -> 1.000000000000000E+16 Inexact Rounded
3094
+ fmax361388 fma 1 9999999999999999 0.5000000001 -> 1.000000000000000E+16 Inexact Rounded
3095
+ fmax361389 fma 1 9999999999999999 0.500000001 -> 1.000000000000000E+16 Inexact Rounded
3096
+ fmax361390 fma 1 9999999999999999 0.50000001 -> 1.000000000000000E+16 Inexact Rounded
3097
+ fmax361391 fma 1 9999999999999999 0.5000001 -> 1.000000000000000E+16 Inexact Rounded
3098
+ fmax361392 fma 1 9999999999999999 0.500001 -> 1.000000000000000E+16 Inexact Rounded
3099
+ fmax361393 fma 1 9999999999999999 0.50001 -> 1.000000000000000E+16 Inexact Rounded
3100
+ fmax361394 fma 1 9999999999999999 0.5001 -> 1.000000000000000E+16 Inexact Rounded
3101
+ fmax361395 fma 1 9999999999999999 0.501 -> 1.000000000000000E+16 Inexact Rounded
3102
+ fmax361396 fma 1 9999999999999999 0.51 -> 1.000000000000000E+16 Inexact Rounded
3103
+
3104
+ -- More GD edge cases, where difference between the unadjusted
3105
+ -- exponents is larger than the maximum precision and one side is 0
3106
+ fmax361420 fma 1 0 1.123456789012345 -> 1.123456789012345
3107
+ fmax361421 fma 1 0 1.123456789012345E-1 -> 0.1123456789012345
3108
+ fmax361422 fma 1 0 1.123456789012345E-2 -> 0.01123456789012345
3109
+ fmax361423 fma 1 0 1.123456789012345E-3 -> 0.001123456789012345
3110
+ fmax361424 fma 1 0 1.123456789012345E-4 -> 0.0001123456789012345
3111
+ fmax361425 fma 1 0 1.123456789012345E-5 -> 0.00001123456789012345
3112
+ fmax361426 fma 1 0 1.123456789012345E-6 -> 0.000001123456789012345
3113
+ fmax361427 fma 1 0 1.123456789012345E-7 -> 1.123456789012345E-7
3114
+ fmax361428 fma 1 0 1.123456789012345E-8 -> 1.123456789012345E-8
3115
+ fmax361429 fma 1 0 1.123456789012345E-9 -> 1.123456789012345E-9
3116
+ fmax361430 fma 1 0 1.123456789012345E-10 -> 1.123456789012345E-10
3117
+ fmax361431 fma 1 0 1.123456789012345E-11 -> 1.123456789012345E-11
3118
+ fmax361432 fma 1 0 1.123456789012345E-12 -> 1.123456789012345E-12
3119
+ fmax361433 fma 1 0 1.123456789012345E-13 -> 1.123456789012345E-13
3120
+ fmax361434 fma 1 0 1.123456789012345E-14 -> 1.123456789012345E-14
3121
+ fmax361435 fma 1 0 1.123456789012345E-15 -> 1.123456789012345E-15
3122
+ fmax361436 fma 1 0 1.123456789012345E-16 -> 1.123456789012345E-16
3123
+ fmax361437 fma 1 0 1.123456789012345E-17 -> 1.123456789012345E-17
3124
+ fmax361438 fma 1 0 1.123456789012345E-18 -> 1.123456789012345E-18
3125
+ fmax361439 fma 1 0 1.123456789012345E-19 -> 1.123456789012345E-19
3126
+
3127
+ -- same, reversed 0
3128
+ fmax361440 fma 1 1.123456789012345 0 -> 1.123456789012345
3129
+ fmax361441 fma 1 1.123456789012345E-1 0 -> 0.1123456789012345
3130
+ fmax361442 fma 1 1.123456789012345E-2 0 -> 0.01123456789012345
3131
+ fmax361443 fma 1 1.123456789012345E-3 0 -> 0.001123456789012345
3132
+ fmax361444 fma 1 1.123456789012345E-4 0 -> 0.0001123456789012345
3133
+ fmax361445 fma 1 1.123456789012345E-5 0 -> 0.00001123456789012345
3134
+ fmax361446 fma 1 1.123456789012345E-6 0 -> 0.000001123456789012345
3135
+ fmax361447 fma 1 1.123456789012345E-7 0 -> 1.123456789012345E-7
3136
+ fmax361448 fma 1 1.123456789012345E-8 0 -> 1.123456789012345E-8
3137
+ fmax361449 fma 1 1.123456789012345E-9 0 -> 1.123456789012345E-9
3138
+ fmax361450 fma 1 1.123456789012345E-10 0 -> 1.123456789012345E-10
3139
+ fmax361451 fma 1 1.123456789012345E-11 0 -> 1.123456789012345E-11
3140
+ fmax361452 fma 1 1.123456789012345E-12 0 -> 1.123456789012345E-12
3141
+ fmax361453 fma 1 1.123456789012345E-13 0 -> 1.123456789012345E-13
3142
+ fmax361454 fma 1 1.123456789012345E-14 0 -> 1.123456789012345E-14
3143
+ fmax361455 fma 1 1.123456789012345E-15 0 -> 1.123456789012345E-15
3144
+ fmax361456 fma 1 1.123456789012345E-16 0 -> 1.123456789012345E-16
3145
+ fmax361457 fma 1 1.123456789012345E-17 0 -> 1.123456789012345E-17
3146
+ fmax361458 fma 1 1.123456789012345E-18 0 -> 1.123456789012345E-18
3147
+ fmax361459 fma 1 1.123456789012345E-19 0 -> 1.123456789012345E-19
3148
+
3149
+ -- same, Es on the 0
3150
+ fmax361460 fma 1 1.123456789012345 0E-0 -> 1.123456789012345
3151
+ fmax361461 fma 1 1.123456789012345 0E-1 -> 1.123456789012345
3152
+ fmax361462 fma 1 1.123456789012345 0E-2 -> 1.123456789012345
3153
+ fmax361463 fma 1 1.123456789012345 0E-3 -> 1.123456789012345
3154
+ fmax361464 fma 1 1.123456789012345 0E-4 -> 1.123456789012345
3155
+ fmax361465 fma 1 1.123456789012345 0E-5 -> 1.123456789012345
3156
+ fmax361466 fma 1 1.123456789012345 0E-6 -> 1.123456789012345
3157
+ fmax361467 fma 1 1.123456789012345 0E-7 -> 1.123456789012345
3158
+ fmax361468 fma 1 1.123456789012345 0E-8 -> 1.123456789012345
3159
+ fmax361469 fma 1 1.123456789012345 0E-9 -> 1.123456789012345
3160
+ fmax361470 fma 1 1.123456789012345 0E-10 -> 1.123456789012345
3161
+ fmax361471 fma 1 1.123456789012345 0E-11 -> 1.123456789012345
3162
+ fmax361472 fma 1 1.123456789012345 0E-12 -> 1.123456789012345
3163
+ fmax361473 fma 1 1.123456789012345 0E-13 -> 1.123456789012345
3164
+ fmax361474 fma 1 1.123456789012345 0E-14 -> 1.123456789012345
3165
+ fmax361475 fma 1 1.123456789012345 0E-15 -> 1.123456789012345
3166
+ -- next four flag Rounded because the 0 extends the result
3167
+ fmax361476 fma 1 1.123456789012345 0E-16 -> 1.123456789012345 Rounded
3168
+ fmax361477 fma 1 1.123456789012345 0E-17 -> 1.123456789012345 Rounded
3169
+ fmax361478 fma 1 1.123456789012345 0E-18 -> 1.123456789012345 Rounded
3170
+ fmax361479 fma 1 1.123456789012345 0E-19 -> 1.123456789012345 Rounded
3171
+
3172
+ -- sum of two opposite-sign operands is exactly 0 and floor => -0
3173
+ rounding: half_up
3174
+ -- exact zeros from zeros
3175
+ fmax361500 fma 1 0 0E-19 -> 0E-19
3176
+ fmax361501 fma 1 -0 0E-19 -> 0E-19
3177
+ fmax361502 fma 1 0 -0E-19 -> 0E-19
3178
+ fmax361503 fma 1 -0 -0E-19 -> -0E-19
3179
+ fmax361504 fma 1 0E-400 0E-19 -> 0E-398 Clamped
3180
+ fmax361505 fma 1 -0E-400 0E-19 -> 0E-398 Clamped
3181
+ fmax361506 fma 1 0E-400 -0E-19 -> 0E-398 Clamped
3182
+ fmax361507 fma 1 -0E-400 -0E-19 -> -0E-398 Clamped
3183
+ -- inexact zeros
3184
+ fmax361511 fma 1 1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3185
+ fmax361512 fma 1 -1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3186
+ fmax361513 fma 1 1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3187
+ fmax361514 fma 1 -1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3188
+ -- some exact zeros from non-zeros
3189
+ fmax361515 fma 1 1E-401 1E-401 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3190
+ fmax361516 fma 1 -1E-401 1E-401 -> 0E-398 Clamped
3191
+ fmax361517 fma 1 1E-401 -1E-401 -> 0E-398 Clamped
3192
+ fmax361518 fma 1 -1E-401 -1E-401 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3193
+
3194
+ rounding: half_down
3195
+ -- exact zeros from zeros
3196
+ fmax361520 fma 1 0 0E-19 -> 0E-19
3197
+ fmax361521 fma 1 -0 0E-19 -> 0E-19
3198
+ fmax361522 fma 1 0 -0E-19 -> 0E-19
3199
+ fmax361523 fma 1 -0 -0E-19 -> -0E-19
3200
+ fmax361524 fma 1 0E-400 0E-19 -> 0E-398 Clamped
3201
+ fmax361525 fma 1 -0E-400 0E-19 -> 0E-398 Clamped
3202
+ fmax361526 fma 1 0E-400 -0E-19 -> 0E-398 Clamped
3203
+ fmax361527 fma 1 -0E-400 -0E-19 -> -0E-398 Clamped
3204
+ -- inexact zeros
3205
+ fmax361531 fma 1 1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3206
+ fmax361532 fma 1 -1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3207
+ fmax361533 fma 1 1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3208
+ fmax361534 fma 1 -1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3209
+ -- some exact zeros from non-zeros
3210
+ fmax361535 fma 1 1E-401 1E-401 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3211
+ fmax361536 fma 1 -1E-401 1E-401 -> 0E-398 Clamped
3212
+ fmax361537 fma 1 1E-401 -1E-401 -> 0E-398 Clamped
3213
+ fmax361538 fma 1 -1E-401 -1E-401 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3214
+
3215
+ rounding: half_even
3216
+ -- exact zeros from zeros
3217
+ fmax361540 fma 1 0 0E-19 -> 0E-19
3218
+ fmax361541 fma 1 -0 0E-19 -> 0E-19
3219
+ fmax361542 fma 1 0 -0E-19 -> 0E-19
3220
+ fmax361543 fma 1 -0 -0E-19 -> -0E-19
3221
+ fmax361544 fma 1 0E-400 0E-19 -> 0E-398 Clamped
3222
+ fmax361545 fma 1 -0E-400 0E-19 -> 0E-398 Clamped
3223
+ fmax361546 fma 1 0E-400 -0E-19 -> 0E-398 Clamped
3224
+ fmax361547 fma 1 -0E-400 -0E-19 -> -0E-398 Clamped
3225
+ -- inexact zeros
3226
+ fmax361551 fma 1 1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3227
+ fmax361552 fma 1 -1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3228
+ fmax361553 fma 1 1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3229
+ fmax361554 fma 1 -1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3230
+ -- some exact zeros from non-zeros
3231
+ fmax361555 fma 1 1E-401 1E-401 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3232
+ fmax361556 fma 1 -1E-401 1E-401 -> 0E-398 Clamped
3233
+ fmax361557 fma 1 1E-401 -1E-401 -> 0E-398 Clamped
3234
+ fmax361558 fma 1 -1E-401 -1E-401 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3235
+
3236
+ rounding: up
3237
+ -- exact zeros from zeros
3238
+ fmax361560 fma 1 0 0E-19 -> 0E-19
3239
+ fmax361561 fma 1 -0 0E-19 -> 0E-19
3240
+ fmax361562 fma 1 0 -0E-19 -> 0E-19
3241
+ fmax361563 fma 1 -0 -0E-19 -> -0E-19
3242
+ fmax361564 fma 1 0E-400 0E-19 -> 0E-398 Clamped
3243
+ fmax361565 fma 1 -0E-400 0E-19 -> 0E-398 Clamped
3244
+ fmax361566 fma 1 0E-400 -0E-19 -> 0E-398 Clamped
3245
+ fmax361567 fma 1 -0E-400 -0E-19 -> -0E-398 Clamped
3246
+ -- inexact zeros
3247
+ fmax361571 fma 1 1E-401 1E-400 -> 1E-398 Subnormal Inexact Rounded Underflow
3248
+ fmax361572 fma 1 -1E-401 1E-400 -> 1E-398 Subnormal Inexact Rounded Underflow
3249
+ fmax361573 fma 1 1E-401 -1E-400 -> -1E-398 Subnormal Inexact Rounded Underflow
3250
+ fmax361574 fma 1 -1E-401 -1E-400 -> -1E-398 Subnormal Inexact Rounded Underflow
3251
+ -- some exact zeros from non-zeros
3252
+ fmax361575 fma 1 1E-401 1E-401 -> 1E-398 Subnormal Inexact Rounded Underflow
3253
+ fmax361576 fma 1 -1E-401 1E-401 -> 0E-398 Clamped
3254
+ fmax361577 fma 1 1E-401 -1E-401 -> 0E-398 Clamped
3255
+ fmax361578 fma 1 -1E-401 -1E-401 -> -1E-398 Subnormal Inexact Rounded Underflow
3256
+
3257
+ rounding: down
3258
+ -- exact zeros from zeros
3259
+ fmax361580 fma 1 0 0E-19 -> 0E-19
3260
+ fmax361581 fma 1 -0 0E-19 -> 0E-19
3261
+ fmax361582 fma 1 0 -0E-19 -> 0E-19
3262
+ fmax361583 fma 1 -0 -0E-19 -> -0E-19
3263
+ fmax361584 fma 1 0E-400 0E-19 -> 0E-398 Clamped
3264
+ fmax361585 fma 1 -0E-400 0E-19 -> 0E-398 Clamped
3265
+ fmax361586 fma 1 0E-400 -0E-19 -> 0E-398 Clamped
3266
+ fmax361587 fma 1 -0E-400 -0E-19 -> -0E-398 Clamped
3267
+ -- inexact zeros
3268
+ fmax361591 fma 1 1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3269
+ fmax361592 fma 1 -1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3270
+ fmax361593 fma 1 1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3271
+ fmax361594 fma 1 -1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3272
+ -- some exact zeros from non-zeros
3273
+ fmax361595 fma 1 1E-401 1E-401 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3274
+ fmax361596 fma 1 -1E-401 1E-401 -> 0E-398 Clamped
3275
+ fmax361597 fma 1 1E-401 -1E-401 -> 0E-398 Clamped
3276
+ fmax361598 fma 1 -1E-401 -1E-401 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3277
+
3278
+ rounding: ceiling
3279
+ -- exact zeros from zeros
3280
+ fmax361600 fma 1 0 0E-19 -> 0E-19
3281
+ fmax361601 fma 1 -0 0E-19 -> 0E-19
3282
+ fmax361602 fma 1 0 -0E-19 -> 0E-19
3283
+ fmax361603 fma 1 -0 -0E-19 -> -0E-19
3284
+ fmax361604 fma 1 0E-400 0E-19 -> 0E-398 Clamped
3285
+ fmax361605 fma 1 -0E-400 0E-19 -> 0E-398 Clamped
3286
+ fmax361606 fma 1 0E-400 -0E-19 -> 0E-398 Clamped
3287
+ fmax361607 fma 1 -0E-400 -0E-19 -> -0E-398 Clamped
3288
+ -- inexact zeros
3289
+ fmax361611 fma 1 1E-401 1E-400 -> 1E-398 Subnormal Inexact Rounded Underflow
3290
+ fmax361612 fma 1 -1E-401 1E-400 -> 1E-398 Subnormal Inexact Rounded Underflow
3291
+ fmax361613 fma 1 1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3292
+ fmax361614 fma 1 -1E-401 -1E-400 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3293
+ -- some exact zeros from non-zeros
3294
+ fmax361615 fma 1 1E-401 1E-401 -> 1E-398 Subnormal Inexact Rounded Underflow
3295
+ fmax361616 fma 1 -1E-401 1E-401 -> 0E-398 Clamped
3296
+ fmax361617 fma 1 1E-401 -1E-401 -> 0E-398 Clamped
3297
+ fmax361618 fma 1 -1E-401 -1E-401 -> -0E-398 Subnormal Inexact Rounded Underflow Clamped
3298
+
3299
+ -- and the extra-special ugly case; unusual minuses marked by -- *
3300
+ rounding: floor
3301
+ -- exact zeros from zeros
3302
+ fmax361620 fma 1 0 0E-19 -> 0E-19
3303
+ fmax361621 fma 1 -0 0E-19 -> -0E-19 -- *
3304
+ fmax361622 fma 1 0 -0E-19 -> -0E-19 -- *
3305
+ fmax361623 fma 1 -0 -0E-19 -> -0E-19
3306
+ fmax361624 fma 1 0E-400 0E-19 -> 0E-398 Clamped
3307
+ fmax361625 fma 1 -0E-400 0E-19 -> -0E-398 Clamped -- *
3308
+ fmax361626 fma 1 0E-400 -0E-19 -> -0E-398 Clamped -- *
3309
+ fmax361627 fma 1 -0E-400 -0E-19 -> -0E-398 Clamped
3310
+ -- inexact zeros
3311
+ fmax361631 fma 1 1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3312
+ fmax361632 fma 1 -1E-401 1E-400 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3313
+ fmax361633 fma 1 1E-401 -1E-400 -> -1E-398 Subnormal Inexact Rounded Underflow
3314
+ fmax361634 fma 1 -1E-401 -1E-400 -> -1E-398 Subnormal Inexact Rounded Underflow
3315
+ -- some exact zeros from non-zeros
3316
+ fmax361635 fma 1 1E-401 1E-401 -> 0E-398 Subnormal Inexact Rounded Underflow Clamped
3317
+ fmax361636 fma 1 -1E-401 1E-401 -> -0E-398 Clamped -- *
3318
+ fmax361637 fma 1 1E-401 -1E-401 -> -0E-398 Clamped -- *
3319
+ fmax361638 fma 1 -1E-401 -1E-401 -> -1E-398 Subnormal Inexact Rounded Underflow
3320
+
3321
+ -- Examples from SQL proposal (Krishna Kulkarni)
3322
+ fmax361701 fma 1 130E-2 120E-2 -> 2.50
3323
+ fmax361702 fma 1 130E-2 12E-1 -> 2.50
3324
+ fmax361703 fma 1 130E-2 1E0 -> 2.30
3325
+ fmax361704 fma 1 1E2 1E4 -> 1.01E+4
3326
+ fmax361705 subtract 130E-2 120E-2 -> 0.10
3327
+ fmax361706 subtract 130E-2 12E-1 -> 0.10
3328
+ fmax361707 subtract 130E-2 1E0 -> 0.30
3329
+ fmax361708 subtract 1E2 1E4 -> -9.9E+3
3330
+
3331
+ -- Gappy coefficients; check residue handling even with full coefficient gap
3332
+ rounding: half_even
3333
+
3334
+ fmax362001 fma 1 1234567890123456 1 -> 1234567890123457
3335
+ fmax362002 fma 1 1234567890123456 0.6 -> 1234567890123457 Inexact Rounded
3336
+ fmax362003 fma 1 1234567890123456 0.06 -> 1234567890123456 Inexact Rounded
3337
+ fmax362004 fma 1 1234567890123456 6E-3 -> 1234567890123456 Inexact Rounded
3338
+ fmax362005 fma 1 1234567890123456 6E-4 -> 1234567890123456 Inexact Rounded
3339
+ fmax362006 fma 1 1234567890123456 6E-5 -> 1234567890123456 Inexact Rounded
3340
+ fmax362007 fma 1 1234567890123456 6E-6 -> 1234567890123456 Inexact Rounded
3341
+ fmax362008 fma 1 1234567890123456 6E-7 -> 1234567890123456 Inexact Rounded
3342
+ fmax362009 fma 1 1234567890123456 6E-8 -> 1234567890123456 Inexact Rounded
3343
+ fmax362010 fma 1 1234567890123456 6E-9 -> 1234567890123456 Inexact Rounded
3344
+ fmax362011 fma 1 1234567890123456 6E-10 -> 1234567890123456 Inexact Rounded
3345
+ fmax362012 fma 1 1234567890123456 6E-11 -> 1234567890123456 Inexact Rounded
3346
+ fmax362013 fma 1 1234567890123456 6E-12 -> 1234567890123456 Inexact Rounded
3347
+ fmax362014 fma 1 1234567890123456 6E-13 -> 1234567890123456 Inexact Rounded
3348
+ fmax362015 fma 1 1234567890123456 6E-14 -> 1234567890123456 Inexact Rounded
3349
+ fmax362016 fma 1 1234567890123456 6E-15 -> 1234567890123456 Inexact Rounded
3350
+ fmax362017 fma 1 1234567890123456 6E-16 -> 1234567890123456 Inexact Rounded
3351
+ fmax362018 fma 1 1234567890123456 6E-17 -> 1234567890123456 Inexact Rounded
3352
+ fmax362019 fma 1 1234567890123456 6E-18 -> 1234567890123456 Inexact Rounded
3353
+ fmax362020 fma 1 1234567890123456 6E-19 -> 1234567890123456 Inexact Rounded
3354
+ fmax362021 fma 1 1234567890123456 6E-20 -> 1234567890123456 Inexact Rounded
3355
+
3356
+ -- widening second argument at gap
3357
+ fmax362030 fma 1 12345678 1 -> 12345679
3358
+ fmax362031 fma 1 12345678 0.1 -> 12345678.1
3359
+ fmax362032 fma 1 12345678 0.12 -> 12345678.12
3360
+ fmax362033 fma 1 12345678 0.123 -> 12345678.123
3361
+ fmax362034 fma 1 12345678 0.1234 -> 12345678.1234
3362
+ fmax362035 fma 1 12345678 0.12345 -> 12345678.12345
3363
+ fmax362036 fma 1 12345678 0.123456 -> 12345678.123456
3364
+ fmax362037 fma 1 12345678 0.1234567 -> 12345678.1234567
3365
+ fmax362038 fma 1 12345678 0.12345678 -> 12345678.12345678
3366
+ fmax362039 fma 1 12345678 0.123456789 -> 12345678.12345679 Inexact Rounded
3367
+ fmax362040 fma 1 12345678 0.123456785 -> 12345678.12345678 Inexact Rounded
3368
+ fmax362041 fma 1 12345678 0.1234567850 -> 12345678.12345678 Inexact Rounded
3369
+ fmax362042 fma 1 12345678 0.1234567851 -> 12345678.12345679 Inexact Rounded
3370
+ fmax362043 fma 1 12345678 0.12345678501 -> 12345678.12345679 Inexact Rounded
3371
+ fmax362044 fma 1 12345678 0.123456785001 -> 12345678.12345679 Inexact Rounded
3372
+ fmax362045 fma 1 12345678 0.1234567850001 -> 12345678.12345679 Inexact Rounded
3373
+ fmax362046 fma 1 12345678 0.12345678500001 -> 12345678.12345679 Inexact Rounded
3374
+ fmax362047 fma 1 12345678 0.123456785000001 -> 12345678.12345679 Inexact Rounded
3375
+ fmax362048 fma 1 12345678 0.1234567850000001 -> 12345678.12345679 Inexact Rounded
3376
+ fmax362049 fma 1 12345678 0.1234567850000000 -> 12345678.12345678 Inexact Rounded
3377
+ -- 90123456
3378
+ rounding: half_even
3379
+ fmax362050 fma 1 12345678 0.0234567750000000 -> 12345678.02345678 Inexact Rounded
3380
+ fmax362051 fma 1 12345678 0.0034567750000000 -> 12345678.00345678 Inexact Rounded
3381
+ fmax362052 fma 1 12345678 0.0004567750000000 -> 12345678.00045678 Inexact Rounded
3382
+ fmax362053 fma 1 12345678 0.0000567750000000 -> 12345678.00005678 Inexact Rounded
3383
+ fmax362054 fma 1 12345678 0.0000067750000000 -> 12345678.00000678 Inexact Rounded
3384
+ fmax362055 fma 1 12345678 0.0000007750000000 -> 12345678.00000078 Inexact Rounded
3385
+ fmax362056 fma 1 12345678 0.0000000750000000 -> 12345678.00000008 Inexact Rounded
3386
+ fmax362057 fma 1 12345678 0.0000000050000000 -> 12345678.00000000 Inexact Rounded
3387
+ fmax362060 fma 1 12345678 0.0234567750000001 -> 12345678.02345678 Inexact Rounded
3388
+ fmax362061 fma 1 12345678 0.0034567750000001 -> 12345678.00345678 Inexact Rounded
3389
+ fmax362062 fma 1 12345678 0.0004567750000001 -> 12345678.00045678 Inexact Rounded
3390
+ fmax362063 fma 1 12345678 0.0000567750000001 -> 12345678.00005678 Inexact Rounded
3391
+ fmax362064 fma 1 12345678 0.0000067750000001 -> 12345678.00000678 Inexact Rounded
3392
+ fmax362065 fma 1 12345678 0.0000007750000001 -> 12345678.00000078 Inexact Rounded
3393
+ fmax362066 fma 1 12345678 0.0000000750000001 -> 12345678.00000008 Inexact Rounded
3394
+ fmax362067 fma 1 12345678 0.0000000050000001 -> 12345678.00000001 Inexact Rounded
3395
+ -- far-out residues (full coefficient gap is 16+15 digits)
3396
+ rounding: up
3397
+ fmax362070 fma 1 12345678 1E-8 -> 12345678.00000001
3398
+ fmax362071 fma 1 12345678 1E-9 -> 12345678.00000001 Inexact Rounded
3399
+ fmax362072 fma 1 12345678 1E-10 -> 12345678.00000001 Inexact Rounded
3400
+ fmax362073 fma 1 12345678 1E-11 -> 12345678.00000001 Inexact Rounded
3401
+ fmax362074 fma 1 12345678 1E-12 -> 12345678.00000001 Inexact Rounded
3402
+ fmax362075 fma 1 12345678 1E-13 -> 12345678.00000001 Inexact Rounded
3403
+ fmax362076 fma 1 12345678 1E-14 -> 12345678.00000001 Inexact Rounded
3404
+ fmax362077 fma 1 12345678 1E-15 -> 12345678.00000001 Inexact Rounded
3405
+ fmax362078 fma 1 12345678 1E-16 -> 12345678.00000001 Inexact Rounded
3406
+ fmax362079 fma 1 12345678 1E-17 -> 12345678.00000001 Inexact Rounded
3407
+ fmax362080 fma 1 12345678 1E-18 -> 12345678.00000001 Inexact Rounded
3408
+ fmax362081 fma 1 12345678 1E-19 -> 12345678.00000001 Inexact Rounded
3409
+ fmax362082 fma 1 12345678 1E-20 -> 12345678.00000001 Inexact Rounded
3410
+ fmax362083 fma 1 12345678 1E-25 -> 12345678.00000001 Inexact Rounded
3411
+ fmax362084 fma 1 12345678 1E-30 -> 12345678.00000001 Inexact Rounded
3412
+ fmax362085 fma 1 12345678 1E-31 -> 12345678.00000001 Inexact Rounded
3413
+ fmax362086 fma 1 12345678 1E-32 -> 12345678.00000001 Inexact Rounded
3414
+ fmax362087 fma 1 12345678 1E-33 -> 12345678.00000001 Inexact Rounded
3415
+ fmax362088 fma 1 12345678 1E-34 -> 12345678.00000001 Inexact Rounded
3416
+ fmax362089 fma 1 12345678 1E-35 -> 12345678.00000001 Inexact Rounded
3417
+
3418
+ -- payload decapitate x3
3419
+ precision: 5
3420
+ fmax363000 fma 1 1 sNaN1234567890 -> NaN67890 Invalid_operation
3421
+ fmax363001 fma 1 -sNaN1234512345 1 -> -NaN12345 Invalid_operation
3422
+ fmax363002 fma sNaN1234554321 1 1 -> NaN54321 Invalid_operation
3423
+
3424
+ -- Null tests
3425
+ fmax39990 fma 1 10 # -> NaN Invalid_operation
3426
+ fmax39991 fma 1 # 10 -> NaN Invalid_operation