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,2370 @@
1
+ -- Testcases for functions in cmath.
2
+ --
3
+ -- Each line takes the form:
4
+ --
5
+ -- <testid> <function> <input_value> -> <output_value> <flags>
6
+ --
7
+ -- where:
8
+ --
9
+ -- <testid> is a short name identifying the test,
10
+ --
11
+ -- <function> is the function to be tested (exp, cos, asinh, ...),
12
+ --
13
+ -- <input_value> is a pair of floats separated by whitespace
14
+ -- representing real and imaginary parts of a complex number, and
15
+ --
16
+ -- <output_value> is the expected (ideal) output value, again
17
+ -- represented as a pair of floats.
18
+ --
19
+ -- <flags> is a list of the floating-point flags required by C99
20
+ --
21
+ -- The possible flags are:
22
+ --
23
+ -- divide-by-zero : raised when a finite input gives a
24
+ -- mathematically infinite result.
25
+ --
26
+ -- overflow : raised when a finite input gives a finite result whose
27
+ -- real or imaginary part is too large to fit in the usual range
28
+ -- of an IEEE 754 double.
29
+ --
30
+ -- invalid : raised for invalid inputs.
31
+ --
32
+ -- ignore-real-sign : indicates that the sign of the real part of
33
+ -- the result is unspecified; if the real part of the result is
34
+ -- given as inf, then both -inf and inf should be accepted as
35
+ -- correct.
36
+ --
37
+ -- ignore-imag-sign : indicates that the sign of the imaginary part
38
+ -- of the result is unspecified.
39
+ --
40
+ -- Flags may appear in any order.
41
+ --
42
+ -- Lines beginning with '--' (like this one) start a comment, and are
43
+ -- ignored. Blank lines, or lines containing only whitespace, are also
44
+ -- ignored.
45
+
46
+ -- The majority of the values below were computed with the help of
47
+ -- version 2.3 of the MPFR library for multiple-precision
48
+ -- floating-point computations with correct rounding. All output
49
+ -- values in this file are (modulo yet-to-be-discovered bugs)
50
+ -- correctly rounded, provided that each input and output decimal
51
+ -- floating-point value below is interpreted as a representation of
52
+ -- the corresponding nearest IEEE 754 double-precision value. See the
53
+ -- MPFR homepage at http://www.mpfr.org for more information about the
54
+ -- MPFR project.
55
+
56
+
57
+ --------------------------
58
+ -- acos: Inverse cosine --
59
+ --------------------------
60
+
61
+ -- zeros
62
+ acos0000 acos 0.0 0.0 -> 1.5707963267948966 -0.0
63
+ acos0001 acos 0.0 -0.0 -> 1.5707963267948966 0.0
64
+ acos0002 acos -0.0 0.0 -> 1.5707963267948966 -0.0
65
+ acos0003 acos -0.0 -0.0 -> 1.5707963267948966 0.0
66
+
67
+ -- branch points: +/-1
68
+ acos0010 acos 1.0 0.0 -> 0.0 -0.0
69
+ acos0011 acos 1.0 -0.0 -> 0.0 0.0
70
+ acos0012 acos -1.0 0.0 -> 3.1415926535897931 -0.0
71
+ acos0013 acos -1.0 -0.0 -> 3.1415926535897931 0.0
72
+
73
+ -- values along both sides of real axis
74
+ acos0020 acos -9.8813129168249309e-324 0.0 -> 1.5707963267948966 -0.0
75
+ acos0021 acos -9.8813129168249309e-324 -0.0 -> 1.5707963267948966 0.0
76
+ acos0022 acos -1e-305 0.0 -> 1.5707963267948966 -0.0
77
+ acos0023 acos -1e-305 -0.0 -> 1.5707963267948966 0.0
78
+ acos0024 acos -1e-150 0.0 -> 1.5707963267948966 -0.0
79
+ acos0025 acos -1e-150 -0.0 -> 1.5707963267948966 0.0
80
+ acos0026 acos -9.9999999999999998e-17 0.0 -> 1.5707963267948968 -0.0
81
+ acos0027 acos -9.9999999999999998e-17 -0.0 -> 1.5707963267948968 0.0
82
+ acos0028 acos -0.001 0.0 -> 1.5717963269615634 -0.0
83
+ acos0029 acos -0.001 -0.0 -> 1.5717963269615634 0.0
84
+ acos0030 acos -0.57899999999999996 0.0 -> 2.1882979816120667 -0.0
85
+ acos0031 acos -0.57899999999999996 -0.0 -> 2.1882979816120667 0.0
86
+ acos0032 acos -0.99999999999999989 0.0 -> 3.1415926386886319 -0.0
87
+ acos0033 acos -0.99999999999999989 -0.0 -> 3.1415926386886319 0.0
88
+ acos0034 acos -1.0000000000000002 0.0 -> 3.1415926535897931 -2.1073424255447014e-08
89
+ acos0035 acos -1.0000000000000002 -0.0 -> 3.1415926535897931 2.1073424255447014e-08
90
+ acos0036 acos -1.0009999999999999 0.0 -> 3.1415926535897931 -0.044717633608306849
91
+ acos0037 acos -1.0009999999999999 -0.0 -> 3.1415926535897931 0.044717633608306849
92
+ acos0038 acos -2.0 0.0 -> 3.1415926535897931 -1.3169578969248168
93
+ acos0039 acos -2.0 -0.0 -> 3.1415926535897931 1.3169578969248168
94
+ acos0040 acos -23.0 0.0 -> 3.1415926535897931 -3.8281684713331012
95
+ acos0041 acos -23.0 -0.0 -> 3.1415926535897931 3.8281684713331012
96
+ acos0042 acos -10000000000000000.0 0.0 -> 3.1415926535897931 -37.534508668464674
97
+ acos0043 acos -10000000000000000.0 -0.0 -> 3.1415926535897931 37.534508668464674
98
+ acos0044 acos -9.9999999999999998e+149 0.0 -> 3.1415926535897931 -346.08091112966679
99
+ acos0045 acos -9.9999999999999998e+149 -0.0 -> 3.1415926535897931 346.08091112966679
100
+ acos0046 acos -1.0000000000000001e+299 0.0 -> 3.1415926535897931 -689.16608998577965
101
+ acos0047 acos -1.0000000000000001e+299 -0.0 -> 3.1415926535897931 689.16608998577965
102
+ acos0048 acos 9.8813129168249309e-324 0.0 -> 1.5707963267948966 -0.0
103
+ acos0049 acos 9.8813129168249309e-324 -0.0 -> 1.5707963267948966 0.0
104
+ acos0050 acos 1e-305 0.0 -> 1.5707963267948966 -0.0
105
+ acos0051 acos 1e-305 -0.0 -> 1.5707963267948966 0.0
106
+ acos0052 acos 1e-150 0.0 -> 1.5707963267948966 -0.0
107
+ acos0053 acos 1e-150 -0.0 -> 1.5707963267948966 0.0
108
+ acos0054 acos 9.9999999999999998e-17 0.0 -> 1.5707963267948966 -0.0
109
+ acos0055 acos 9.9999999999999998e-17 -0.0 -> 1.5707963267948966 0.0
110
+ acos0056 acos 0.001 0.0 -> 1.56979632662823 -0.0
111
+ acos0057 acos 0.001 -0.0 -> 1.56979632662823 0.0
112
+ acos0058 acos 0.57899999999999996 0.0 -> 0.95329467197772655 -0.0
113
+ acos0059 acos 0.57899999999999996 -0.0 -> 0.95329467197772655 0.0
114
+ acos0060 acos 0.99999999999999989 0.0 -> 1.4901161193847656e-08 -0.0
115
+ acos0061 acos 0.99999999999999989 -0.0 -> 1.4901161193847656e-08 0.0
116
+ acos0062 acos 1.0000000000000002 0.0 -> 0.0 -2.1073424255447014e-08
117
+ acos0063 acos 1.0000000000000002 -0.0 -> 0.0 2.1073424255447014e-08
118
+ acos0064 acos 1.0009999999999999 0.0 -> 0.0 -0.044717633608306849
119
+ acos0065 acos 1.0009999999999999 -0.0 -> 0.0 0.044717633608306849
120
+ acos0066 acos 2.0 0.0 -> 0.0 -1.3169578969248168
121
+ acos0067 acos 2.0 -0.0 -> 0.0 1.3169578969248168
122
+ acos0068 acos 23.0 0.0 -> 0.0 -3.8281684713331012
123
+ acos0069 acos 23.0 -0.0 -> 0.0 3.8281684713331012
124
+ acos0070 acos 10000000000000000.0 0.0 -> 0.0 -37.534508668464674
125
+ acos0071 acos 10000000000000000.0 -0.0 -> 0.0 37.534508668464674
126
+ acos0072 acos 9.9999999999999998e+149 0.0 -> 0.0 -346.08091112966679
127
+ acos0073 acos 9.9999999999999998e+149 -0.0 -> 0.0 346.08091112966679
128
+ acos0074 acos 1.0000000000000001e+299 0.0 -> 0.0 -689.16608998577965
129
+ acos0075 acos 1.0000000000000001e+299 -0.0 -> 0.0 689.16608998577965
130
+
131
+ -- random inputs
132
+ acos0100 acos -3.3307113324596682 -10.732007530863266 -> 1.8706085694482339 3.113986806554613
133
+ acos0101 acos -2863.952991743291 -2681013315.2571239 -> 1.5707973950301699 22.402607843274758
134
+ acos0102 acos -0.33072639793220088 -0.85055464658253055 -> 1.8219426895922601 0.79250166729311966
135
+ acos0103 acos -2.5722325842097802 -12.703940809821574 -> 1.7699942413107408 3.2565170156527325
136
+ acos0104 acos -42.495233785459583 -0.54039320751337161 -> 3.1288732573153304 4.4424815519735601
137
+ acos0105 acos -1.1363818625856401 9641.1325498630376 -> 1.5709141948820049 -9.8669410553254284
138
+ acos0106 acos -2.4398426824157866e-11 0.33002051890266165 -> 1.570796326818066 -0.32430578041578667
139
+ acos0107 acos -1.3521340428186552 2.9369737912076772 -> 1.9849059192339338 -1.8822893674117942
140
+ acos0108 acos -1.827364706477915 1.0355459232147557 -> 2.5732246307960032 -1.4090688267854969
141
+ acos0109 acos -0.25978373706403546 10.09712669185833 -> 1.5963940386378306 -3.0081673050196063
142
+ acos0110 acos 0.33561778471072551 -4587350.6823999118 -> 1.5707962536333251 16.031960402579539
143
+ acos0111 acos 0.49133444610998445 -0.8071422362990015 -> 1.1908761712801788 0.78573345813187867
144
+ acos0112 acos 0.42196734507823974 -2.4812965431745115 -> 1.414091186100692 1.651707260988172
145
+ acos0113 acos 2.961426210100655 -219.03295695248664 -> 1.5572768319822778 6.0824659885827304
146
+ acos0114 acos 2.886209063652641 -20.38011207220606 -> 1.4302765252297889 3.718201853147642
147
+ acos0115 acos 0.4180568075276509 1.4833433990823484 -> 1.3393834558303042 -1.2079847758301576
148
+ acos0116 acos 52.376111405924718 0.013930429001941001 -> 0.00026601761804024188 -4.6515066691204714
149
+ acos0117 acos 41637948387.625969 1.563418292894041 -> 3.7547918507883548e-11 -25.145424989809381
150
+ acos0118 acos 0.061226659122249526 0.8447234394615154 -> 1.5240280306367315 -0.76791798971140812
151
+ acos0119 acos 2.4480466420442959e+26 0.18002339201384662 -> 7.353756620564798e-28 -61.455650015996376
152
+
153
+ -- values near infinity
154
+ acos0200 acos 1.6206860518683021e+308 1.0308426226285283e+308 -> 0.56650826093826223 -710.54206874241561
155
+ acos0201 acos 1.2067735875070062e+308 -1.3429173724390276e+308 -> 0.83874369390864889 710.48017794027498
156
+ acos0202 acos -7.4130145132549047e+307 1.1759130543927645e+308 -> 2.1332729346478536 -710.21871115698752
157
+ acos0203 acos -8.6329426442257249e+307 -1.2316282952184133e+308 -> 2.1821511032444838 710.29752145697148
158
+ acos0204 acos 0.0 1.4289713855849746e+308 -> 1.5707963267948966 -710.24631069738996
159
+ acos0205 acos -0.0 1.3153524545987432e+308 -> 1.5707963267948966 -710.1634604787539
160
+ acos0206 acos 0.0 -9.6229037669269321e+307 -> 1.5707963267948966 709.85091679573691
161
+ acos0207 acos -0.0 -4.9783616421107088e+307 -> 1.5707963267948966 709.19187157911233
162
+ acos0208 acos 1.3937541925739389e+308 0.0 -> 0.0 -710.22135678707264
163
+ acos0209 acos 9.1362388967371536e+307 -0.0 -> 0.0 709.79901953124613
164
+ acos0210 acos -1.3457361220697436e+308 0.0 -> 3.1415926535897931 -710.18629698871848
165
+ acos0211 acos -5.4699090056144284e+307 -0.0 -> 3.1415926535897931 709.28603271085649
166
+ acos0212 acos 1.5880716932358901e+308 5.5638401252339929 -> 3.503519487773873e-308 -710.35187633140583
167
+ acos0213 acos 1.2497211663463164e+308 -3.0456477717911024 -> 2.4370618453197486e-308 710.11227628223412
168
+ acos0214 acos -9.9016224006029528e+307 4.9570427340789056 -> 3.1415926535897931 -709.87946935229468
169
+ acos0215 acos -1.5854071066874139e+308 -4.4233577741497783 -> 3.1415926535897931 710.35019704672004
170
+ acos0216 acos 9.3674623083647628 1.5209559051877979e+308 -> 1.5707963267948966 -710.30869484491086
171
+ acos0217 acos 8.1773832021784383 -6.6093445795000056e+307 -> 1.5707963267948966 709.4752552227792
172
+ acos0218 acos -3.1845935000665104 1.5768856396650893e+308 -> 1.5707963267948966 -710.34480761042687
173
+ acos0219 acos -1.0577303880953903 -6.4574626815735613e+307 -> 1.5707963267948966 709.45200719662046
174
+
175
+ -- values near 0
176
+ acos0220 acos 1.8566986970714045e-320 3.1867234156760402e-321 -> 1.5707963267948966 -3.1867234156760402e-321
177
+ acos0221 acos 7.9050503334599447e-323 -8.8931816251424378e-323 -> 1.5707963267948966 8.8931816251424378e-323
178
+ acos0222 acos -4.4465908125712189e-323 2.4654065097222727e-311 -> 1.5707963267948966 -2.4654065097222727e-311
179
+ acos0223 acos -6.1016916408192619e-311 -2.4703282292062327e-323 -> 1.5707963267948966 2.4703282292062327e-323
180
+ acos0224 acos 0.0 3.4305783621842729e-311 -> 1.5707963267948966 -3.4305783621842729e-311
181
+ acos0225 acos -0.0 1.6117409498633145e-319 -> 1.5707963267948966 -1.6117409498633145e-319
182
+ acos0226 acos 0.0 -4.9900630229965901e-322 -> 1.5707963267948966 4.9900630229965901e-322
183
+ acos0227 acos -0.0 -4.4889279210592818e-311 -> 1.5707963267948966 4.4889279210592818e-311
184
+ acos0228 acos 5.3297678681477214e-312 0.0 -> 1.5707963267948966 -0.0
185
+ acos0229 acos 6.2073425897211614e-313 -0.0 -> 1.5707963267948966 0.0
186
+ acos0230 acos -4.9406564584124654e-324 0.0 -> 1.5707963267948966 -0.0
187
+ acos0231 acos -1.7107517052899003e-318 -0.0 -> 1.5707963267948966 0.0
188
+
189
+ -- special values
190
+ acos1000 acos 0.0 0.0 -> 1.5707963267948966 -0.0
191
+ acos1001 acos 0.0 -0.0 -> 1.5707963267948966 0.0
192
+ acos1002 acos -0.0 0.0 -> 1.5707963267948966 -0.0
193
+ acos1003 acos -0.0 -0.0 -> 1.5707963267948966 0.0
194
+ acos1004 acos 0.0 nan -> 1.5707963267948966 nan
195
+ acos1005 acos -0.0 nan -> 1.5707963267948966 nan
196
+ acos1006 acos -2.3 inf -> 1.5707963267948966 -inf
197
+ acos1007 acos -0.0 inf -> 1.5707963267948966 -inf
198
+ acos1008 acos 0.0 inf -> 1.5707963267948966 -inf
199
+ acos1009 acos 2.3 inf -> 1.5707963267948966 -inf
200
+ acos1010 acos -2.3 nan -> nan nan
201
+ acos1011 acos 2.3 nan -> nan nan
202
+ acos1012 acos -inf 2.3 -> 3.1415926535897931 -inf
203
+ acos1013 acos -inf 0.0 -> 3.1415926535897931 -inf
204
+ acos1014 acos inf 2.3 -> 0.0 -inf
205
+ acos1015 acos inf 0.0 -> 0.0 -inf
206
+ acos1016 acos -inf inf -> 2.3561944901923448 -inf
207
+ acos1017 acos inf inf -> 0.78539816339744828 -inf
208
+ acos1018 acos inf nan -> nan inf ignore-imag-sign
209
+ acos1019 acos -inf nan -> nan inf ignore-imag-sign
210
+ acos1020 acos nan 0.0 -> nan nan
211
+ acos1021 acos nan 2.3 -> nan nan
212
+ acos1022 acos nan inf -> nan -inf
213
+ acos1023 acos nan nan -> nan nan
214
+ acos1024 acos -2.3 -inf -> 1.5707963267948966 inf
215
+ acos1025 acos -0.0 -inf -> 1.5707963267948966 inf
216
+ acos1026 acos 0.0 -inf -> 1.5707963267948966 inf
217
+ acos1027 acos 2.3 -inf -> 1.5707963267948966 inf
218
+ acos1028 acos -inf -2.3 -> 3.1415926535897931 inf
219
+ acos1029 acos -inf -0.0 -> 3.1415926535897931 inf
220
+ acos1030 acos inf -2.3 -> 0.0 inf
221
+ acos1031 acos inf -0.0 -> 0.0 inf
222
+ acos1032 acos -inf -inf -> 2.3561944901923448 inf
223
+ acos1033 acos inf -inf -> 0.78539816339744828 inf
224
+ acos1034 acos nan -0.0 -> nan nan
225
+ acos1035 acos nan -2.3 -> nan nan
226
+ acos1036 acos nan -inf -> nan inf
227
+
228
+
229
+ --------------------------------------
230
+ -- acosh: Inverse hyperbolic cosine --
231
+ --------------------------------------
232
+
233
+ -- zeros
234
+ acosh0000 acosh 0.0 0.0 -> 0.0 1.5707963267948966
235
+ acosh0001 acosh 0.0 -0.0 -> 0.0 -1.5707963267948966
236
+ acosh0002 acosh -0.0 0.0 -> 0.0 1.5707963267948966
237
+ acosh0003 acosh -0.0 -0.0 -> 0.0 -1.5707963267948966
238
+
239
+ -- branch points: +/-1
240
+ acosh0010 acosh 1.0 0.0 -> 0.0 0.0
241
+ acosh0011 acosh 1.0 -0.0 -> 0.0 -0.0
242
+ acosh0012 acosh -1.0 0.0 -> 0.0 3.1415926535897931
243
+ acosh0013 acosh -1.0 -0.0 -> 0.0 -3.1415926535897931
244
+
245
+ -- values along both sides of real axis
246
+ acosh0020 acosh -9.8813129168249309e-324 0.0 -> 0.0 1.5707963267948966
247
+ acosh0021 acosh -9.8813129168249309e-324 -0.0 -> 0.0 -1.5707963267948966
248
+ acosh0022 acosh -1e-305 0.0 -> 0.0 1.5707963267948966
249
+ acosh0023 acosh -1e-305 -0.0 -> 0.0 -1.5707963267948966
250
+ acosh0024 acosh -1e-150 0.0 -> 0.0 1.5707963267948966
251
+ acosh0025 acosh -1e-150 -0.0 -> 0.0 -1.5707963267948966
252
+ acosh0026 acosh -9.9999999999999998e-17 0.0 -> 0.0 1.5707963267948968
253
+ acosh0027 acosh -9.9999999999999998e-17 -0.0 -> 0.0 -1.5707963267948968
254
+ acosh0028 acosh -0.001 0.0 -> 0.0 1.5717963269615634
255
+ acosh0029 acosh -0.001 -0.0 -> 0.0 -1.5717963269615634
256
+ acosh0030 acosh -0.57899999999999996 0.0 -> 0.0 2.1882979816120667
257
+ acosh0031 acosh -0.57899999999999996 -0.0 -> 0.0 -2.1882979816120667
258
+ acosh0032 acosh -0.99999999999999989 0.0 -> 0.0 3.1415926386886319
259
+ acosh0033 acosh -0.99999999999999989 -0.0 -> 0.0 -3.1415926386886319
260
+ acosh0034 acosh -1.0000000000000002 0.0 -> 2.1073424255447014e-08 3.1415926535897931
261
+ acosh0035 acosh -1.0000000000000002 -0.0 -> 2.1073424255447014e-08 -3.1415926535897931
262
+ acosh0036 acosh -1.0009999999999999 0.0 -> 0.044717633608306849 3.1415926535897931
263
+ acosh0037 acosh -1.0009999999999999 -0.0 -> 0.044717633608306849 -3.1415926535897931
264
+ acosh0038 acosh -2.0 0.0 -> 1.3169578969248168 3.1415926535897931
265
+ acosh0039 acosh -2.0 -0.0 -> 1.3169578969248168 -3.1415926535897931
266
+ acosh0040 acosh -23.0 0.0 -> 3.8281684713331012 3.1415926535897931
267
+ acosh0041 acosh -23.0 -0.0 -> 3.8281684713331012 -3.1415926535897931
268
+ acosh0042 acosh -10000000000000000.0 0.0 -> 37.534508668464674 3.1415926535897931
269
+ acosh0043 acosh -10000000000000000.0 -0.0 -> 37.534508668464674 -3.1415926535897931
270
+ acosh0044 acosh -9.9999999999999998e+149 0.0 -> 346.08091112966679 3.1415926535897931
271
+ acosh0045 acosh -9.9999999999999998e+149 -0.0 -> 346.08091112966679 -3.1415926535897931
272
+ acosh0046 acosh -1.0000000000000001e+299 0.0 -> 689.16608998577965 3.1415926535897931
273
+ acosh0047 acosh -1.0000000000000001e+299 -0.0 -> 689.16608998577965 -3.1415926535897931
274
+ acosh0048 acosh 9.8813129168249309e-324 0.0 -> 0.0 1.5707963267948966
275
+ acosh0049 acosh 9.8813129168249309e-324 -0.0 -> 0.0 -1.5707963267948966
276
+ acosh0050 acosh 1e-305 0.0 -> 0.0 1.5707963267948966
277
+ acosh0051 acosh 1e-305 -0.0 -> 0.0 -1.5707963267948966
278
+ acosh0052 acosh 1e-150 0.0 -> 0.0 1.5707963267948966
279
+ acosh0053 acosh 1e-150 -0.0 -> 0.0 -1.5707963267948966
280
+ acosh0054 acosh 9.9999999999999998e-17 0.0 -> 0.0 1.5707963267948966
281
+ acosh0055 acosh 9.9999999999999998e-17 -0.0 -> 0.0 -1.5707963267948966
282
+ acosh0056 acosh 0.001 0.0 -> 0.0 1.56979632662823
283
+ acosh0057 acosh 0.001 -0.0 -> 0.0 -1.56979632662823
284
+ acosh0058 acosh 0.57899999999999996 0.0 -> 0.0 0.95329467197772655
285
+ acosh0059 acosh 0.57899999999999996 -0.0 -> 0.0 -0.95329467197772655
286
+ acosh0060 acosh 0.99999999999999989 0.0 -> 0.0 1.4901161193847656e-08
287
+ acosh0061 acosh 0.99999999999999989 -0.0 -> 0.0 -1.4901161193847656e-08
288
+ acosh0062 acosh 1.0000000000000002 0.0 -> 2.1073424255447014e-08 0.0
289
+ acosh0063 acosh 1.0000000000000002 -0.0 -> 2.1073424255447014e-08 -0.0
290
+ acosh0064 acosh 1.0009999999999999 0.0 -> 0.044717633608306849 0.0
291
+ acosh0065 acosh 1.0009999999999999 -0.0 -> 0.044717633608306849 -0.0
292
+ acosh0066 acosh 2.0 0.0 -> 1.3169578969248168 0.0
293
+ acosh0067 acosh 2.0 -0.0 -> 1.3169578969248168 -0.0
294
+ acosh0068 acosh 23.0 0.0 -> 3.8281684713331012 0.0
295
+ acosh0069 acosh 23.0 -0.0 -> 3.8281684713331012 -0.0
296
+ acosh0070 acosh 10000000000000000.0 0.0 -> 37.534508668464674 0.0
297
+ acosh0071 acosh 10000000000000000.0 -0.0 -> 37.534508668464674 -0.0
298
+ acosh0072 acosh 9.9999999999999998e+149 0.0 -> 346.08091112966679 0.0
299
+ acosh0073 acosh 9.9999999999999998e+149 -0.0 -> 346.08091112966679 -0.0
300
+ acosh0074 acosh 1.0000000000000001e+299 0.0 -> 689.16608998577965 0.0
301
+ acosh0075 acosh 1.0000000000000001e+299 -0.0 -> 689.16608998577965 -0.0
302
+
303
+ -- random inputs
304
+ acosh0100 acosh -1.4328589581250843 -1.8370347775558309 -> 1.5526962646549587 -2.190250168435786
305
+ acosh0101 acosh -0.31075819156220957 -1.0772555786839297 -> 0.95139168286193709 -1.7812228089636479
306
+ acosh0102 acosh -1.9044776578070453 -20.485370158932124 -> 3.7177411088932359 -1.6633888745861227
307
+ acosh0103 acosh -0.075642506000858742 -21965976320.873051 -> 24.505907742881991 -1.5707963267983402
308
+ acosh0104 acosh -1.6162271181056307 -3.0369343458696099 -> 1.9407057262861227 -2.0429549461750209
309
+ acosh0105 acosh -0.3103780280298063 0.00018054880018078987 -> 0.00018992877058761416 1.886386995096728
310
+ acosh0106 acosh -9159468751.5897655 5.8014747664273649 -> 23.631201197959193 3.1415926529564078
311
+ acosh0107 acosh -0.037739157550933884 0.21841357493510705 -> 0.21685844960602488 1.6076735133449402
312
+ acosh0108 acosh -8225991.0508394297 0.28318543008913644 -> 16.615956520420287 3.1415926191641019
313
+ acosh0109 acosh -35.620070502302639 0.31303237005015 -> 4.2658980006943965 3.1328013255541873
314
+ acosh0110 acosh 96.729939906820917 -0.029345228372365334 -> 5.2650434775863548 -0.00030338895866972843
315
+ acosh0111 acosh 0.59656024007966491 -2.0412294654163978 -> 1.4923002024287835 -1.312568421900338
316
+ acosh0112 acosh 109.29384112677828 -0.00015454863061533812 -> 5.3871662961545477 -1.4141245154061214e-06
317
+ acosh0113 acosh 8.6705651969361597 -3.6723631649787465 -> 2.9336180958363545 -0.40267362031872861
318
+ acosh0114 acosh 1.8101646445052686 -0.012345132721855478 -> 1.1997148566285769 -0.0081813912760150265
319
+ acosh0115 acosh 52.56897195025288 0.001113916065985443 -> 4.6551827622264135 2.1193445872040307e-05
320
+ acosh0116 acosh 0.28336786164214739 355643992457.40485 -> 27.290343226816528 1.5707963267940999
321
+ acosh0117 acosh 0.73876621291911437 2.8828594541104322e-20 -> 4.2774820978159067e-20 0.73955845836827927
322
+ acosh0118 acosh 0.025865471781718878 37125746064318.492 -> 31.938478989418012 1.5707963267948959
323
+ acosh0119 acosh 2.2047353511780132 0.074712248143489271 -> 1.4286403248698021 0.037997904971626598
324
+
325
+ -- values near infinity
326
+ acosh0200 acosh 8.1548592876467785e+307 9.0943779335951128e+307 -> 710.08944620800605 0.83981165425478954
327
+ acosh0201 acosh 1.4237229680972531e+308 -1.0336966617874858e+308 -> 710.4543331094759 -0.6279972876348755
328
+ acosh0202 acosh -1.5014526899738939e+308 1.5670700378448792e+308 -> 710.66420706795464 2.3348137299106697
329
+ acosh0203 acosh -1.0939040375213928e+308 -1.0416960351127978e+308 -> 710.30182863115886 -2.380636147787027
330
+ acosh0204 acosh 0.0 1.476062433559588e+308 -> 710.27873384716929 1.5707963267948966
331
+ acosh0205 acosh -0.0 6.2077210326221094e+307 -> 709.41256457484769 1.5707963267948966
332
+ acosh0206 acosh 0.0 -1.5621899909968308e+308 -> 710.33544449990734 -1.5707963267948966
333
+ acosh0207 acosh -0.0 -8.3556624833839122e+307 -> 709.70971018048317 -1.5707963267948966
334
+ acosh0208 acosh 1.3067079752499342e+308 0.0 -> 710.15686680107228 0.0
335
+ acosh0209 acosh 1.5653640340214026e+308 -0.0 -> 710.33747422926706 -0.0
336
+ acosh0210 acosh -6.9011375992290636e+307 0.0 -> 709.51845699719922 3.1415926535897931
337
+ acosh0211 acosh -9.9539576809926973e+307 -0.0 -> 709.88474095870185 -3.1415926535897931
338
+ acosh0212 acosh 7.6449598518914925e+307 9.5706540768268358 -> 709.62081731754802 1.2518906916769345e-307
339
+ acosh0213 acosh 5.4325410972602197e+307 -7.8064807816522706 -> 709.279177727925 -1.4369851312471974e-307
340
+ acosh0214 acosh -1.1523626112360465e+308 7.0617510038869336 -> 710.03117010216909 3.1415926535897931
341
+ acosh0215 acosh -1.1685027786862599e+308 -5.1568558357925625 -> 710.04507907571417 -3.1415926535897931
342
+ acosh0216 acosh 3.0236370339788721 1.7503248720096417e+308 -> 710.44915723458064 1.5707963267948966
343
+ acosh0217 acosh 6.6108007926031149 -9.1469968225806149e+307 -> 709.80019633903328 -1.5707963267948966
344
+ acosh0218 acosh -5.1096262905623959 6.4484926785412395e+307 -> 709.45061713997973 1.5707963267948966
345
+ acosh0219 acosh -2.8080920608735846 -1.7716118836519368e+308 -> 710.46124562363445 -1.5707963267948966
346
+
347
+ -- values near 0
348
+ acosh0220 acosh 4.5560530326699304e-317 7.3048989121436657e-318 -> 7.3048989121436657e-318 1.5707963267948966
349
+ acosh0221 acosh 4.8754274133585331e-314 -9.8469794897684199e-315 -> 9.8469794897684199e-315 -1.5707963267948966
350
+ acosh0222 acosh -4.6748876009960097e-312 9.7900342887557606e-318 -> 9.7900342887557606e-318 1.5707963267948966
351
+ acosh0223 acosh -4.3136871538399236e-320 -4.9406564584124654e-323 -> 4.9406564584124654e-323 -1.5707963267948966
352
+ acosh0224 acosh 0.0 4.3431013866496774e-314 -> 4.3431013866496774e-314 1.5707963267948966
353
+ acosh0225 acosh -0.0 6.0147334335829184e-317 -> 6.0147334335829184e-317 1.5707963267948966
354
+ acosh0226 acosh 0.0 -1.2880291387081297e-320 -> 1.2880291387081297e-320 -1.5707963267948966
355
+ acosh0227 acosh -0.0 -1.4401563976534621e-317 -> 1.4401563976534621e-317 -1.5707963267948966
356
+ acosh0228 acosh 1.3689680570863091e-313 0.0 -> 0.0 1.5707963267948966
357
+ acosh0229 acosh 1.5304346893494371e-312 -0.0 -> 0.0 -1.5707963267948966
358
+ acosh0230 acosh -3.7450175954766488e-320 0.0 -> 0.0 1.5707963267948966
359
+ acosh0231 acosh -8.4250563080885801e-311 -0.0 -> 0.0 -1.5707963267948966
360
+
361
+ -- special values
362
+ acosh1000 acosh 0.0 0.0 -> 0.0 1.5707963267948966
363
+ acosh1001 acosh -0.0 0.0 -> 0.0 1.5707963267948966
364
+ acosh1002 acosh 0.0 inf -> inf 1.5707963267948966
365
+ acosh1003 acosh 2.3 inf -> inf 1.5707963267948966
366
+ acosh1004 acosh -0.0 inf -> inf 1.5707963267948966
367
+ acosh1005 acosh -2.3 inf -> inf 1.5707963267948966
368
+ acosh1006 acosh 0.0 nan -> nan nan
369
+ acosh1007 acosh 2.3 nan -> nan nan
370
+ acosh1008 acosh -0.0 nan -> nan nan
371
+ acosh1009 acosh -2.3 nan -> nan nan
372
+ acosh1010 acosh -inf 0.0 -> inf 3.1415926535897931
373
+ acosh1011 acosh -inf 2.3 -> inf 3.1415926535897931
374
+ acosh1012 acosh inf 0.0 -> inf 0.0
375
+ acosh1013 acosh inf 2.3 -> inf 0.0
376
+ acosh1014 acosh -inf inf -> inf 2.3561944901923448
377
+ acosh1015 acosh inf inf -> inf 0.78539816339744828
378
+ acosh1016 acosh inf nan -> inf nan
379
+ acosh1017 acosh -inf nan -> inf nan
380
+ acosh1018 acosh nan 0.0 -> nan nan
381
+ acosh1019 acosh nan 2.3 -> nan nan
382
+ acosh1020 acosh nan inf -> inf nan
383
+ acosh1021 acosh nan nan -> nan nan
384
+ acosh1022 acosh 0.0 -0.0 -> 0.0 -1.5707963267948966
385
+ acosh1023 acosh -0.0 -0.0 -> 0.0 -1.5707963267948966
386
+ acosh1024 acosh 0.0 -inf -> inf -1.5707963267948966
387
+ acosh1025 acosh 2.3 -inf -> inf -1.5707963267948966
388
+ acosh1026 acosh -0.0 -inf -> inf -1.5707963267948966
389
+ acosh1027 acosh -2.3 -inf -> inf -1.5707963267948966
390
+ acosh1028 acosh -inf -0.0 -> inf -3.1415926535897931
391
+ acosh1029 acosh -inf -2.3 -> inf -3.1415926535897931
392
+ acosh1030 acosh inf -0.0 -> inf -0.0
393
+ acosh1031 acosh inf -2.3 -> inf -0.0
394
+ acosh1032 acosh -inf -inf -> inf -2.3561944901923448
395
+ acosh1033 acosh inf -inf -> inf -0.78539816339744828
396
+ acosh1034 acosh nan -0.0 -> nan nan
397
+ acosh1035 acosh nan -2.3 -> nan nan
398
+ acosh1036 acosh nan -inf -> inf nan
399
+
400
+
401
+ ------------------------
402
+ -- asin: Inverse sine --
403
+ ------------------------
404
+
405
+ -- zeros
406
+ asin0000 asin 0.0 0.0 -> 0.0 0.0
407
+ asin0001 asin 0.0 -0.0 -> 0.0 -0.0
408
+ asin0002 asin -0.0 0.0 -> -0.0 0.0
409
+ asin0003 asin -0.0 -0.0 -> -0.0 -0.0
410
+
411
+ -- branch points: +/-1
412
+ asin0010 asin 1.0 0.0 -> 1.5707963267948966 0.0
413
+ asin0011 asin 1.0 -0.0 -> 1.5707963267948966 -0.0
414
+ asin0012 asin -1.0 0.0 -> -1.5707963267948966 0.0
415
+ asin0013 asin -1.0 -0.0 -> -1.5707963267948966 -0.0
416
+
417
+ -- values along both sides of real axis
418
+ asin0020 asin -9.8813129168249309e-324 0.0 -> -9.8813129168249309e-324 0.0
419
+ asin0021 asin -9.8813129168249309e-324 -0.0 -> -9.8813129168249309e-324 -0.0
420
+ asin0022 asin -1e-305 0.0 -> -1e-305 0.0
421
+ asin0023 asin -1e-305 -0.0 -> -1e-305 -0.0
422
+ asin0024 asin -1e-150 0.0 -> -1e-150 0.0
423
+ asin0025 asin -1e-150 -0.0 -> -1e-150 -0.0
424
+ asin0026 asin -9.9999999999999998e-17 0.0 -> -9.9999999999999998e-17 0.0
425
+ asin0027 asin -9.9999999999999998e-17 -0.0 -> -9.9999999999999998e-17 -0.0
426
+ asin0028 asin -0.001 0.0 -> -0.0010000001666667416 0.0
427
+ asin0029 asin -0.001 -0.0 -> -0.0010000001666667416 -0.0
428
+ asin0030 asin -0.57899999999999996 0.0 -> -0.61750165481717001 0.0
429
+ asin0031 asin -0.57899999999999996 -0.0 -> -0.61750165481717001 -0.0
430
+ asin0032 asin -0.99999999999999989 0.0 -> -1.5707963118937354 0.0
431
+ asin0033 asin -0.99999999999999989 -0.0 -> -1.5707963118937354 -0.0
432
+ asin0034 asin -1.0000000000000002 0.0 -> -1.5707963267948966 2.1073424255447014e-08
433
+ asin0035 asin -1.0000000000000002 -0.0 -> -1.5707963267948966 -2.1073424255447014e-08
434
+ asin0036 asin -1.0009999999999999 0.0 -> -1.5707963267948966 0.044717633608306849
435
+ asin0037 asin -1.0009999999999999 -0.0 -> -1.5707963267948966 -0.044717633608306849
436
+ asin0038 asin -2.0 0.0 -> -1.5707963267948966 1.3169578969248168
437
+ asin0039 asin -2.0 -0.0 -> -1.5707963267948966 -1.3169578969248168
438
+ asin0040 asin -23.0 0.0 -> -1.5707963267948966 3.8281684713331012
439
+ asin0041 asin -23.0 -0.0 -> -1.5707963267948966 -3.8281684713331012
440
+ asin0042 asin -10000000000000000.0 0.0 -> -1.5707963267948966 37.534508668464674
441
+ asin0043 asin -10000000000000000.0 -0.0 -> -1.5707963267948966 -37.534508668464674
442
+ asin0044 asin -9.9999999999999998e+149 0.0 -> -1.5707963267948966 346.08091112966679
443
+ asin0045 asin -9.9999999999999998e+149 -0.0 -> -1.5707963267948966 -346.08091112966679
444
+ asin0046 asin -1.0000000000000001e+299 0.0 -> -1.5707963267948966 689.16608998577965
445
+ asin0047 asin -1.0000000000000001e+299 -0.0 -> -1.5707963267948966 -689.16608998577965
446
+ asin0048 asin 9.8813129168249309e-324 0.0 -> 9.8813129168249309e-324 0.0
447
+ asin0049 asin 9.8813129168249309e-324 -0.0 -> 9.8813129168249309e-324 -0.0
448
+ asin0050 asin 1e-305 0.0 -> 1e-305 0.0
449
+ asin0051 asin 1e-305 -0.0 -> 1e-305 -0.0
450
+ asin0052 asin 1e-150 0.0 -> 1e-150 0.0
451
+ asin0053 asin 1e-150 -0.0 -> 1e-150 -0.0
452
+ asin0054 asin 9.9999999999999998e-17 0.0 -> 9.9999999999999998e-17 0.0
453
+ asin0055 asin 9.9999999999999998e-17 -0.0 -> 9.9999999999999998e-17 -0.0
454
+ asin0056 asin 0.001 0.0 -> 0.0010000001666667416 0.0
455
+ asin0057 asin 0.001 -0.0 -> 0.0010000001666667416 -0.0
456
+ asin0058 asin 0.57899999999999996 0.0 -> 0.61750165481717001 0.0
457
+ asin0059 asin 0.57899999999999996 -0.0 -> 0.61750165481717001 -0.0
458
+ asin0060 asin 0.99999999999999989 0.0 -> 1.5707963118937354 0.0
459
+ asin0061 asin 0.99999999999999989 -0.0 -> 1.5707963118937354 -0.0
460
+ asin0062 asin 1.0000000000000002 0.0 -> 1.5707963267948966 2.1073424255447014e-08
461
+ asin0063 asin 1.0000000000000002 -0.0 -> 1.5707963267948966 -2.1073424255447014e-08
462
+ asin0064 asin 1.0009999999999999 0.0 -> 1.5707963267948966 0.044717633608306849
463
+ asin0065 asin 1.0009999999999999 -0.0 -> 1.5707963267948966 -0.044717633608306849
464
+ asin0066 asin 2.0 0.0 -> 1.5707963267948966 1.3169578969248168
465
+ asin0067 asin 2.0 -0.0 -> 1.5707963267948966 -1.3169578969248168
466
+ asin0068 asin 23.0 0.0 -> 1.5707963267948966 3.8281684713331012
467
+ asin0069 asin 23.0 -0.0 -> 1.5707963267948966 -3.8281684713331012
468
+ asin0070 asin 10000000000000000.0 0.0 -> 1.5707963267948966 37.534508668464674
469
+ asin0071 asin 10000000000000000.0 -0.0 -> 1.5707963267948966 -37.534508668464674
470
+ asin0072 asin 9.9999999999999998e+149 0.0 -> 1.5707963267948966 346.08091112966679
471
+ asin0073 asin 9.9999999999999998e+149 -0.0 -> 1.5707963267948966 -346.08091112966679
472
+ asin0074 asin 1.0000000000000001e+299 0.0 -> 1.5707963267948966 689.16608998577965
473
+ asin0075 asin 1.0000000000000001e+299 -0.0 -> 1.5707963267948966 -689.16608998577965
474
+
475
+ -- random inputs
476
+ asin0100 asin -1.5979555835086083 -0.15003009814595247 -> -1.4515369557405788 -1.0544476399790823
477
+ asin0101 asin -0.57488225895317679 -9.6080397838952743e-13 -> -0.61246024460412851 -1.174238005400403e-12
478
+ asin0102 asin -3.6508087930516249 -0.36027527093220152 -> -1.4685890605305874 -1.9742273007152038
479
+ asin0103 asin -1.5238659792326819 -1.1360813516996364 -> -0.86080051691147275 -1.3223742205689195
480
+ asin0104 asin -1592.0639045555306 -0.72362427935018236 -> -1.5703418071175179 -8.0659336918729228
481
+ asin0105 asin -0.19835471371312019 4.2131508416697709 -> -0.045777831019935149 2.1461732751933171
482
+ asin0106 asin -1.918471054430213 0.40603305079779234 -> -1.3301396585791556 1.30263642314981
483
+ asin0107 asin -254495.01623373642 0.71084414434470822 -> -1.5707935336394359 13.140183712762321
484
+ asin0108 asin -0.31315882715691157 3.9647994288429866 -> -0.076450403840916004 2.0889762138713457
485
+ asin0109 asin -0.90017064284720816 1.2530659485907105 -> -0.53466509741943447 1.1702811557577
486
+ asin0110 asin 2.1615181696571075 -0.14058647488229523 -> 1.4976166323896871 -1.4085811039334604
487
+ asin0111 asin 1.2104749210707795 -0.85732484485298999 -> 0.83913071588343924 -1.0681719250525901
488
+ asin0112 asin 1.7059733185128891 -0.84032966373156581 -> 1.0510900815816229 -1.2967979791361652
489
+ asin0113 asin 9.9137085017290687 -1.4608383970250893 -> 1.4237704820128891 -2.995414677560686
490
+ asin0114 asin 117.12344751041495 -5453908091.5334015 -> 2.1475141411392012e-08 -23.112745450217066
491
+ asin0115 asin 0.081041187798029227 0.067054349860173196 -> 0.080946786856771813 0.067223991060639698
492
+ asin0116 asin 46.635472322049949 2.3835190718056678 -> 1.5197194940010779 4.5366989600972083
493
+ asin0117 asin 3907.0687961127105 19.144021886390181 -> 1.5658965233083235 8.9637018715924217
494
+ asin0118 asin 1.0889312322308273 509.01577883554768 -> 0.0021392803817829316 6.9256294494524706
495
+ asin0119 asin 0.10851518277509224 1.5612510908217476 -> 0.058491014243902621 1.2297075725621327
496
+
497
+ -- values near infinity
498
+ asin0200 asin 1.5230241998821499e+308 5.5707228994084525e+307 -> 1.2201446370892068 710.37283486535966
499
+ asin0201 asin 8.1334317698672204e+307 -9.2249425197872451e+307 -> 0.72259991284020042 -710.0962453049026
500
+ asin0202 asin -9.9138506659241768e+307 6.701544526434995e+307 -> -0.97637511742194594 710.06887486671371
501
+ asin0203 asin -1.4141298868173842e+308 -5.401505134514191e+307 -> -1.2059319055160587 -710.30396478954628
502
+ asin0204 asin 0.0 9.1618092977897431e+307 -> 0.0 709.80181441050593
503
+ asin0205 asin -0.0 6.8064342551939755e+307 -> -0.0 709.50463910853489
504
+ asin0206 asin 0.0 -6.4997516454798215e+307 -> 0.0 -709.45853469751592
505
+ asin0207 asin -0.0 -1.6767449053345242e+308 -> -0.0 -710.4062101803022
506
+ asin0208 asin 5.4242749957378916e+307 0.0 -> 1.5707963267948966 709.27765497888902
507
+ asin0209 asin 9.5342145121164749e+307 -0.0 -> 1.5707963267948966 -709.84165758595907
508
+ asin0210 asin -7.0445698006201847e+307 0.0 -> -1.5707963267948966 709.53902780872136
509
+ asin0211 asin -1.0016025569769706e+308 -0.0 -> -1.5707963267948966 -709.89095709697881
510
+ asin0212 asin 1.6552203778877204e+308 0.48761543336249491 -> 1.5707963267948966 710.39328998153474
511
+ asin0213 asin 1.2485712830384869e+308 -4.3489311161278899 -> 1.5707963267948966 -710.1113557467786
512
+ asin0214 asin -1.5117842813353125e+308 5.123452666102434 -> -1.5707963267948966 710.30264641923031
513
+ asin0215 asin -1.3167634313008016e+308 -0.52939679793528982 -> -1.5707963267948966 -710.16453260239768
514
+ asin0216 asin 0.80843929176985907 1.0150851827767876e+308 -> 7.9642507396113875e-309 709.90432835561637
515
+ asin0217 asin 8.2544809829680901 -1.7423548140539474e+308 -> 4.7375430746865733e-308 -710.44459336242164
516
+ asin0218 asin -5.2499000118824295 4.6655578977512214e+307 -> -1.1252459249113292e-307 709.1269781491103
517
+ asin0219 asin -5.9904782760833433 -4.7315689314781163e+307 -> -1.2660659419394637e-307 -709.14102757522312
518
+
519
+ -- special values
520
+ asin1000 asin -0.0 0.0 -> -0.0 0.0
521
+ asin1001 asin 0.0 0.0 -> 0.0 0.0
522
+ asin1002 asin -0.0 -0.0 -> -0.0 -0.0
523
+ asin1003 asin 0.0 -0.0 -> 0.0 -0.0
524
+ asin1004 asin -inf 0.0 -> -1.5707963267948966 inf
525
+ asin1005 asin -inf 2.2999999999999998 -> -1.5707963267948966 inf
526
+ asin1006 asin nan 0.0 -> nan nan
527
+ asin1007 asin nan 2.2999999999999998 -> nan nan
528
+ asin1008 asin -0.0 inf -> -0.0 inf
529
+ asin1009 asin -2.2999999999999998 inf -> -0.0 inf
530
+ asin1010 asin -inf inf -> -0.78539816339744828 inf
531
+ asin1011 asin nan inf -> nan inf
532
+ asin1012 asin -0.0 nan -> -0.0 nan
533
+ asin1013 asin -2.2999999999999998 nan -> nan nan
534
+ asin1014 asin -inf nan -> nan inf ignore-imag-sign
535
+ asin1015 asin nan nan -> nan nan
536
+ asin1016 asin inf 0.0 -> 1.5707963267948966 inf
537
+ asin1017 asin inf 2.2999999999999998 -> 1.5707963267948966 inf
538
+ asin1018 asin 0.0 inf -> 0.0 inf
539
+ asin1019 asin 2.2999999999999998 inf -> 0.0 inf
540
+ asin1020 asin inf inf -> 0.78539816339744828 inf
541
+ asin1021 asin 0.0 nan -> 0.0 nan
542
+ asin1022 asin 2.2999999999999998 nan -> nan nan
543
+ asin1023 asin inf nan -> nan inf ignore-imag-sign
544
+ asin1024 asin inf -0.0 -> 1.5707963267948966 -inf
545
+ asin1025 asin inf -2.2999999999999998 -> 1.5707963267948966 -inf
546
+ asin1026 asin nan -0.0 -> nan nan
547
+ asin1027 asin nan -2.2999999999999998 -> nan nan
548
+ asin1028 asin 0.0 -inf -> 0.0 -inf
549
+ asin1029 asin 2.2999999999999998 -inf -> 0.0 -inf
550
+ asin1030 asin inf -inf -> 0.78539816339744828 -inf
551
+ asin1031 asin nan -inf -> nan -inf
552
+ asin1032 asin -inf -0.0 -> -1.5707963267948966 -inf
553
+ asin1033 asin -inf -2.2999999999999998 -> -1.5707963267948966 -inf
554
+ asin1034 asin -0.0 -inf -> -0.0 -inf
555
+ asin1035 asin -2.2999999999999998 -inf -> -0.0 -inf
556
+ asin1036 asin -inf -inf -> -0.78539816339744828 -inf
557
+
558
+
559
+ ------------------------------------
560
+ -- asinh: Inverse hyperbolic sine --
561
+ ------------------------------------
562
+
563
+ -- zeros
564
+ asinh0000 asinh 0.0 0.0 -> 0.0 0.0
565
+ asinh0001 asinh 0.0 -0.0 -> 0.0 -0.0
566
+ asinh0002 asinh -0.0 0.0 -> -0.0 0.0
567
+ asinh0003 asinh -0.0 -0.0 -> -0.0 -0.0
568
+
569
+ -- branch points: +/-i
570
+ asinh0010 asinh 0.0 1.0 -> 0.0 1.5707963267948966
571
+ asinh0011 asinh 0.0 -1.0 -> 0.0 -1.5707963267948966
572
+ asinh0012 asinh -0.0 1.0 -> -0.0 1.5707963267948966
573
+ asinh0013 asinh -0.0 -1.0 -> -0.0 -1.5707963267948966
574
+
575
+ -- values along both sides of imaginary axis
576
+ asinh0020 asinh 0.0 -9.8813129168249309e-324 -> 0.0 -9.8813129168249309e-324
577
+ asinh0021 asinh -0.0 -9.8813129168249309e-324 -> -0.0 -9.8813129168249309e-324
578
+ asinh0022 asinh 0.0 -1e-305 -> 0.0 -1e-305
579
+ asinh0023 asinh -0.0 -1e-305 -> -0.0 -1e-305
580
+ asinh0024 asinh 0.0 -1e-150 -> 0.0 -1e-150
581
+ asinh0025 asinh -0.0 -1e-150 -> -0.0 -1e-150
582
+ asinh0026 asinh 0.0 -9.9999999999999998e-17 -> 0.0 -9.9999999999999998e-17
583
+ asinh0027 asinh -0.0 -9.9999999999999998e-17 -> -0.0 -9.9999999999999998e-17
584
+ asinh0028 asinh 0.0 -0.001 -> 0.0 -0.0010000001666667416
585
+ asinh0029 asinh -0.0 -0.001 -> -0.0 -0.0010000001666667416
586
+ asinh0030 asinh 0.0 -0.57899999999999996 -> 0.0 -0.61750165481717001
587
+ asinh0031 asinh -0.0 -0.57899999999999996 -> -0.0 -0.61750165481717001
588
+ asinh0032 asinh 0.0 -0.99999999999999989 -> 0.0 -1.5707963118937354
589
+ asinh0033 asinh -0.0 -0.99999999999999989 -> -0.0 -1.5707963118937354
590
+ asinh0034 asinh 0.0 -1.0000000000000002 -> 2.1073424255447014e-08 -1.5707963267948966
591
+ asinh0035 asinh -0.0 -1.0000000000000002 -> -2.1073424255447014e-08 -1.5707963267948966
592
+ asinh0036 asinh 0.0 -1.0009999999999999 -> 0.044717633608306849 -1.5707963267948966
593
+ asinh0037 asinh -0.0 -1.0009999999999999 -> -0.044717633608306849 -1.5707963267948966
594
+ asinh0038 asinh 0.0 -2.0 -> 1.3169578969248168 -1.5707963267948966
595
+ asinh0039 asinh -0.0 -2.0 -> -1.3169578969248168 -1.5707963267948966
596
+ asinh0040 asinh 0.0 -20.0 -> 3.6882538673612966 -1.5707963267948966
597
+ asinh0041 asinh -0.0 -20.0 -> -3.6882538673612966 -1.5707963267948966
598
+ asinh0042 asinh 0.0 -10000000000000000.0 -> 37.534508668464674 -1.5707963267948966
599
+ asinh0043 asinh -0.0 -10000000000000000.0 -> -37.534508668464674 -1.5707963267948966
600
+ asinh0044 asinh 0.0 -9.9999999999999998e+149 -> 346.08091112966679 -1.5707963267948966
601
+ asinh0045 asinh -0.0 -9.9999999999999998e+149 -> -346.08091112966679 -1.5707963267948966
602
+ asinh0046 asinh 0.0 -1.0000000000000001e+299 -> 689.16608998577965 -1.5707963267948966
603
+ asinh0047 asinh -0.0 -1.0000000000000001e+299 -> -689.16608998577965 -1.5707963267948966
604
+ asinh0048 asinh 0.0 9.8813129168249309e-324 -> 0.0 9.8813129168249309e-324
605
+ asinh0049 asinh -0.0 9.8813129168249309e-324 -> -0.0 9.8813129168249309e-324
606
+ asinh0050 asinh 0.0 1e-305 -> 0.0 1e-305
607
+ asinh0051 asinh -0.0 1e-305 -> -0.0 1e-305
608
+ asinh0052 asinh 0.0 1e-150 -> 0.0 1e-150
609
+ asinh0053 asinh -0.0 1e-150 -> -0.0 1e-150
610
+ asinh0054 asinh 0.0 9.9999999999999998e-17 -> 0.0 9.9999999999999998e-17
611
+ asinh0055 asinh -0.0 9.9999999999999998e-17 -> -0.0 9.9999999999999998e-17
612
+ asinh0056 asinh 0.0 0.001 -> 0.0 0.0010000001666667416
613
+ asinh0057 asinh -0.0 0.001 -> -0.0 0.0010000001666667416
614
+ asinh0058 asinh 0.0 0.57899999999999996 -> 0.0 0.61750165481717001
615
+ asinh0059 asinh -0.0 0.57899999999999996 -> -0.0 0.61750165481717001
616
+ asinh0060 asinh 0.0 0.99999999999999989 -> 0.0 1.5707963118937354
617
+ asinh0061 asinh -0.0 0.99999999999999989 -> -0.0 1.5707963118937354
618
+ asinh0062 asinh 0.0 1.0000000000000002 -> 2.1073424255447014e-08 1.5707963267948966
619
+ asinh0063 asinh -0.0 1.0000000000000002 -> -2.1073424255447014e-08 1.5707963267948966
620
+ asinh0064 asinh 0.0 1.0009999999999999 -> 0.044717633608306849 1.5707963267948966
621
+ asinh0065 asinh -0.0 1.0009999999999999 -> -0.044717633608306849 1.5707963267948966
622
+ asinh0066 asinh 0.0 2.0 -> 1.3169578969248168 1.5707963267948966
623
+ asinh0067 asinh -0.0 2.0 -> -1.3169578969248168 1.5707963267948966
624
+ asinh0068 asinh 0.0 20.0 -> 3.6882538673612966 1.5707963267948966
625
+ asinh0069 asinh -0.0 20.0 -> -3.6882538673612966 1.5707963267948966
626
+ asinh0070 asinh 0.0 10000000000000000.0 -> 37.534508668464674 1.5707963267948966
627
+ asinh0071 asinh -0.0 10000000000000000.0 -> -37.534508668464674 1.5707963267948966
628
+ asinh0072 asinh 0.0 9.9999999999999998e+149 -> 346.08091112966679 1.5707963267948966
629
+ asinh0073 asinh -0.0 9.9999999999999998e+149 -> -346.08091112966679 1.5707963267948966
630
+ asinh0074 asinh 0.0 1.0000000000000001e+299 -> 689.16608998577965 1.5707963267948966
631
+ asinh0075 asinh -0.0 1.0000000000000001e+299 -> -689.16608998577965 1.5707963267948966
632
+
633
+ -- random inputs
634
+ asinh0100 asinh -0.5946402853710423 -0.044506548910000145 -> -0.56459775392653022 -0.038256221441536356
635
+ asinh0101 asinh -0.19353958046180916 -0.017489624793193454 -> -0.19237926804196651 -0.017171741895336792
636
+ asinh0102 asinh -0.033117585138955893 -8.5256414015933757 -> -2.8327758348650969 -1.5668848791092411
637
+ asinh0103 asinh -1.5184043184035716 -0.73491245339073275 -> -1.2715891419764005 -0.39204624408542355
638
+ asinh0104 asinh -0.60716120271208818 -0.28900743958436542 -> -0.59119299421187232 -0.24745931678118135
639
+ asinh0105 asinh -0.0237177865112429 2.8832601052166313 -> -1.7205820772413236 1.5620261702963094
640
+ asinh0106 asinh -2.3906812342743979 2.6349216848574013 -> -1.9609636249445124 0.8142142660574706
641
+ asinh0107 asinh -0.0027605019787620517 183.85588476550555 -> -5.9072920005445066 1.5707813120847871
642
+ asinh0108 asinh -0.99083661164404713 0.028006797051617648 -> -0.8750185251283995 0.019894099615994653
643
+ asinh0109 asinh -3.0362951937986393 0.86377266758504867 -> -1.8636030714685221 0.26475058859950168
644
+ asinh0110 asinh 0.34438464536152769 -0.71603790174885029 -> 0.43985415690734164 -0.71015037409294324
645
+ asinh0111 asinh 4.4925124413876256 -60604595352.871613 -> 25.520783738612078 -1.5707963267207683
646
+ asinh0112 asinh 2.3213991428170337 -7.5459667007307258 -> 2.7560464993451643 -1.270073210856117
647
+ asinh0113 asinh 0.21291939741682028 -1.2720428814784408 -> 0.77275088137338266 -1.3182099250896895
648
+ asinh0114 asinh 6.6447359379455957 -0.97196191666946996 -> 2.602830695139672 -0.14368247412319965
649
+ asinh0115 asinh 7.1326256655083746 2.1516360452706857 -> 2.7051146374367212 0.29051701669727581
650
+ asinh0116 asinh 0.18846550905063442 3.4705348585339832 -> 1.917697875799296 1.514155593347924
651
+ asinh0117 asinh 0.19065075303281598 0.26216814548222012 -> 0.19603050785932474 0.26013422809614117
652
+ asinh0118 asinh 2.0242004665739719 0.70510281647495787 -> 1.4970366212896002 0.30526007200481453
653
+ asinh0119 asinh 37.336596461576057 717.29157391678234 -> 7.269981997945294 1.5187910219576033
654
+
655
+ -- values near infinity
656
+ asinh0200 asinh 1.0760517500874541e+308 1.1497786241240167e+308 -> 710.34346055651815 0.81850936961793475
657
+ asinh0201 asinh 1.1784839328845529e+308 -1.6478429586716638e+308 -> 710.59536255783678 -0.94996311735607697
658
+ asinh0202 asinh -4.8777682248909193e+307 1.4103736217538474e+308 -> -710.28970147376992 1.2378239519096443
659
+ asinh0203 asinh -1.2832478903233108e+308 -1.5732392613155698e+308 -> -710.59750164290745 -0.88657181439322452
660
+ asinh0204 asinh 0.0 6.8431383856345372e+307 -> 709.51001718444604 1.5707963267948966
661
+ asinh0205 asinh -0.0 8.601822432238051e+307 -> -709.73874482126689 1.5707963267948966
662
+ asinh0206 asinh 0.0 -5.5698396067303782e+307 -> 709.30413698733742 -1.5707963267948966
663
+ asinh0207 asinh -0.0 -7.1507777734621804e+307 -> -709.55399186002705 -1.5707963267948966
664
+ asinh0208 asinh 1.6025136110019349e+308 0.0 -> 710.3609292261076 0.0
665
+ asinh0209 asinh 1.3927819858239114e+308 -0.0 -> 710.22065899832899 -0.0
666
+ asinh0210 asinh -6.0442994056210995e+307 0.0 -> -709.38588631057621 0.0
667
+ asinh0211 asinh -1.2775271979042634e+308 -0.0 -> -710.13428215553972 -0.0
668
+ asinh0212 asinh 1.0687496260268489e+308 1.0255615699476961 -> 709.95584521407841 9.5959010882679093e-309
669
+ asinh0213 asinh 1.0050967333370962e+308 -0.87668970117333433 -> 709.89443961168183 -8.7224410556242882e-309
670
+ asinh0214 asinh -5.7161452814862392e+307 8.2377808413450122 -> -709.33006540611166 1.4411426644501116e-307
671
+ asinh0215 asinh -8.2009040727653315e+307 -6.407409526654976 -> -709.69101513070109 -7.8130526461510088e-308
672
+ asinh0216 asinh 6.4239368496483982 1.6365990821551427e+308 -> 710.38197618101287 1.5707963267948966
673
+ asinh0217 asinh 5.4729111423315882 -1.1227237438144211e+308 -> 710.00511346983546 -1.5707963267948966
674
+ asinh0218 asinh -8.3455818297412723 1.443172020182019e+308 -> -710.25619930551818 1.5707963267948966
675
+ asinh0219 asinh -2.6049726230372441 -1.7952291144022702e+308 -> -710.47448847685644 -1.5707963267948966
676
+
677
+ -- values near 0
678
+ asinh0220 asinh 1.2940113339664088e-314 6.9169190417774516e-323 -> 1.2940113339664088e-314 6.9169190417774516e-323
679
+ asinh0221 asinh 2.3848478863874649e-315 -3.1907655025717717e-310 -> 2.3848478863874649e-315 -3.1907655025717717e-310
680
+ asinh0222 asinh -3.0097643679641622e-316 4.6936236354918422e-322 -> -3.0097643679641622e-316 4.6936236354918422e-322
681
+ asinh0223 asinh -1.787997087755751e-308 -8.5619622834902341e-310 -> -1.787997087755751e-308 -8.5619622834902341e-310
682
+ asinh0224 asinh 0.0 1.2491433448427325e-314 -> 0.0 1.2491433448427325e-314
683
+ asinh0225 asinh -0.0 2.5024072154538062e-308 -> -0.0 2.5024072154538062e-308
684
+ asinh0226 asinh 0.0 -2.9643938750474793e-323 -> 0.0 -2.9643938750474793e-323
685
+ asinh0227 asinh -0.0 -2.9396905927554169e-320 -> -0.0 -2.9396905927554169e-320
686
+ asinh0228 asinh 5.64042930029359e-317 0.0 -> 5.64042930029359e-317 0.0
687
+ asinh0229 asinh 3.3833911866596068e-318 -0.0 -> 3.3833911866596068e-318 -0.0
688
+ asinh0230 asinh -4.9406564584124654e-324 0.0 -> -4.9406564584124654e-324 0.0
689
+ asinh0231 asinh -2.2211379227994845e-308 -0.0 -> -2.2211379227994845e-308 -0.0
690
+
691
+ -- special values
692
+ asinh1000 asinh 0.0 0.0 -> 0.0 0.0
693
+ asinh1001 asinh 0.0 -0.0 -> 0.0 -0.0
694
+ asinh1002 asinh -0.0 0.0 -> -0.0 0.0
695
+ asinh1003 asinh -0.0 -0.0 -> -0.0 -0.0
696
+ asinh1004 asinh 0.0 inf -> inf 1.5707963267948966
697
+ asinh1005 asinh 2.3 inf -> inf 1.5707963267948966
698
+ asinh1006 asinh 0.0 nan -> nan nan
699
+ asinh1007 asinh 2.3 nan -> nan nan
700
+ asinh1008 asinh inf 0.0 -> inf 0.0
701
+ asinh1009 asinh inf 2.3 -> inf 0.0
702
+ asinh1010 asinh inf inf -> inf 0.78539816339744828
703
+ asinh1011 asinh inf nan -> inf nan
704
+ asinh1012 asinh nan 0.0 -> nan 0.0
705
+ asinh1013 asinh nan 2.3 -> nan nan
706
+ asinh1014 asinh nan inf -> inf nan ignore-real-sign
707
+ asinh1015 asinh nan nan -> nan nan
708
+ asinh1016 asinh 0.0 -inf -> inf -1.5707963267948966
709
+ asinh1017 asinh 2.3 -inf -> inf -1.5707963267948966
710
+ asinh1018 asinh inf -0.0 -> inf -0.0
711
+ asinh1019 asinh inf -2.3 -> inf -0.0
712
+ asinh1020 asinh inf -inf -> inf -0.78539816339744828
713
+ asinh1021 asinh nan -0.0 -> nan -0.0
714
+ asinh1022 asinh nan -2.3 -> nan nan
715
+ asinh1023 asinh nan -inf -> inf nan ignore-real-sign
716
+ asinh1024 asinh -0.0 -inf -> -inf -1.5707963267948966
717
+ asinh1025 asinh -2.3 -inf -> -inf -1.5707963267948966
718
+ asinh1026 asinh -0.0 nan -> nan nan
719
+ asinh1027 asinh -2.3 nan -> nan nan
720
+ asinh1028 asinh -inf -0.0 -> -inf -0.0
721
+ asinh1029 asinh -inf -2.3 -> -inf -0.0
722
+ asinh1030 asinh -inf -inf -> -inf -0.78539816339744828
723
+ asinh1031 asinh -inf nan -> -inf nan
724
+ asinh1032 asinh -0.0 inf -> -inf 1.5707963267948966
725
+ asinh1033 asinh -2.3 inf -> -inf 1.5707963267948966
726
+ asinh1034 asinh -inf 0.0 -> -inf 0.0
727
+ asinh1035 asinh -inf 2.3 -> -inf 0.0
728
+ asinh1036 asinh -inf inf -> -inf 0.78539816339744828
729
+
730
+
731
+ ---------------------------
732
+ -- atan: Inverse tangent --
733
+ ---------------------------
734
+
735
+ -- zeros
736
+ -- These are tested in testAtanSign in test_cmath.py
737
+ -- atan0000 atan 0.0 0.0 -> 0.0 0.0
738
+ -- atan0001 atan 0.0 -0.0 -> 0.0 -0.0
739
+ -- atan0002 atan -0.0 0.0 -> -0.0 0.0
740
+ -- atan0003 atan -0.0 -0.0 -> -0.0 -0.0
741
+
742
+ -- values along both sides of imaginary axis
743
+ atan0010 atan 0.0 -9.8813129168249309e-324 -> 0.0 -9.8813129168249309e-324
744
+ atan0011 atan -0.0 -9.8813129168249309e-324 -> -0.0 -9.8813129168249309e-324
745
+ atan0012 atan 0.0 -1e-305 -> 0.0 -1e-305
746
+ atan0013 atan -0.0 -1e-305 -> -0.0 -1e-305
747
+ atan0014 atan 0.0 -1e-150 -> 0.0 -1e-150
748
+ atan0015 atan -0.0 -1e-150 -> -0.0 -1e-150
749
+ atan0016 atan 0.0 -9.9999999999999998e-17 -> 0.0 -9.9999999999999998e-17
750
+ atan0017 atan -0.0 -9.9999999999999998e-17 -> -0.0 -9.9999999999999998e-17
751
+ atan0018 atan 0.0 -0.001 -> 0.0 -0.0010000003333335333
752
+ atan0019 atan -0.0 -0.001 -> -0.0 -0.0010000003333335333
753
+ atan0020 atan 0.0 -0.57899999999999996 -> 0.0 -0.6609570902866303
754
+ atan0021 atan -0.0 -0.57899999999999996 -> -0.0 -0.6609570902866303
755
+ atan0022 atan 0.0 -0.99999999999999989 -> 0.0 -18.714973875118524
756
+ atan0023 atan -0.0 -0.99999999999999989 -> -0.0 -18.714973875118524
757
+ atan0024 atan 0.0 -1.0000000000000002 -> 1.5707963267948966 -18.36840028483855
758
+ atan0025 atan -0.0 -1.0000000000000002 -> -1.5707963267948966 -18.36840028483855
759
+ atan0026 atan 0.0 -1.0009999999999999 -> 1.5707963267948966 -3.8007011672919218
760
+ atan0027 atan -0.0 -1.0009999999999999 -> -1.5707963267948966 -3.8007011672919218
761
+ atan0028 atan 0.0 -2.0 -> 1.5707963267948966 -0.54930614433405489
762
+ atan0029 atan -0.0 -2.0 -> -1.5707963267948966 -0.54930614433405489
763
+ atan0030 atan 0.0 -20.0 -> 1.5707963267948966 -0.050041729278491265
764
+ atan0031 atan -0.0 -20.0 -> -1.5707963267948966 -0.050041729278491265
765
+ atan0032 atan 0.0 -10000000000000000.0 -> 1.5707963267948966 -9.9999999999999998e-17
766
+ atan0033 atan -0.0 -10000000000000000.0 -> -1.5707963267948966 -9.9999999999999998e-17
767
+ atan0034 atan 0.0 -9.9999999999999998e+149 -> 1.5707963267948966 -1e-150
768
+ atan0035 atan -0.0 -9.9999999999999998e+149 -> -1.5707963267948966 -1e-150
769
+ atan0036 atan 0.0 -1.0000000000000001e+299 -> 1.5707963267948966 -9.9999999999999999e-300
770
+ atan0037 atan -0.0 -1.0000000000000001e+299 -> -1.5707963267948966 -9.9999999999999999e-300
771
+ atan0038 atan 0.0 9.8813129168249309e-324 -> 0.0 9.8813129168249309e-324
772
+ atan0039 atan -0.0 9.8813129168249309e-324 -> -0.0 9.8813129168249309e-324
773
+ atan0040 atan 0.0 1e-305 -> 0.0 1e-305
774
+ atan0041 atan -0.0 1e-305 -> -0.0 1e-305
775
+ atan0042 atan 0.0 1e-150 -> 0.0 1e-150
776
+ atan0043 atan -0.0 1e-150 -> -0.0 1e-150
777
+ atan0044 atan 0.0 9.9999999999999998e-17 -> 0.0 9.9999999999999998e-17
778
+ atan0045 atan -0.0 9.9999999999999998e-17 -> -0.0 9.9999999999999998e-17
779
+ atan0046 atan 0.0 0.001 -> 0.0 0.0010000003333335333
780
+ atan0047 atan -0.0 0.001 -> -0.0 0.0010000003333335333
781
+ atan0048 atan 0.0 0.57899999999999996 -> 0.0 0.6609570902866303
782
+ atan0049 atan -0.0 0.57899999999999996 -> -0.0 0.6609570902866303
783
+ atan0050 atan 0.0 0.99999999999999989 -> 0.0 18.714973875118524
784
+ atan0051 atan -0.0 0.99999999999999989 -> -0.0 18.714973875118524
785
+ atan0052 atan 0.0 1.0000000000000002 -> 1.5707963267948966 18.36840028483855
786
+ atan0053 atan -0.0 1.0000000000000002 -> -1.5707963267948966 18.36840028483855
787
+ atan0054 atan 0.0 1.0009999999999999 -> 1.5707963267948966 3.8007011672919218
788
+ atan0055 atan -0.0 1.0009999999999999 -> -1.5707963267948966 3.8007011672919218
789
+ atan0056 atan 0.0 2.0 -> 1.5707963267948966 0.54930614433405489
790
+ atan0057 atan -0.0 2.0 -> -1.5707963267948966 0.54930614433405489
791
+ atan0058 atan 0.0 20.0 -> 1.5707963267948966 0.050041729278491265
792
+ atan0059 atan -0.0 20.0 -> -1.5707963267948966 0.050041729278491265
793
+ atan0060 atan 0.0 10000000000000000.0 -> 1.5707963267948966 9.9999999999999998e-17
794
+ atan0061 atan -0.0 10000000000000000.0 -> -1.5707963267948966 9.9999999999999998e-17
795
+ atan0062 atan 0.0 9.9999999999999998e+149 -> 1.5707963267948966 1e-150
796
+ atan0063 atan -0.0 9.9999999999999998e+149 -> -1.5707963267948966 1e-150
797
+ atan0064 atan 0.0 1.0000000000000001e+299 -> 1.5707963267948966 9.9999999999999999e-300
798
+ atan0065 atan -0.0 1.0000000000000001e+299 -> -1.5707963267948966 9.9999999999999999e-300
799
+
800
+ -- random inputs
801
+ atan0100 atan -0.32538873661060214 -1.5530461550412578 -> -1.3682728427554227 -0.69451401598762041
802
+ atan0101 atan -0.45863393495197929 -4799.1747094903594 -> -1.5707963068820623 -0.00020836916050636145
803
+ atan0102 atan -8.3006999685976162 -2.6788890251790938 -> -1.4619862771810199 -0.034811669653327826
804
+ atan0103 atan -1.8836307682985314 -1.1441976638861771 -> -1.1839984370871612 -0.20630956157312796
805
+ atan0104 atan -0.00063230482407491669 -4.9312520961829485 -> -1.5707692093223147 -0.20563867743008304
806
+ atan0105 atan -0.84278137150065946 179012.37493146997 -> -1.5707963267685969 5.5862059836425272e-06
807
+ atan0106 atan -0.95487853984049287 14.311334539886177 -> -1.5661322859434561 0.069676024526232005
808
+ atan0107 atan -1.3513252539663239 6.0500727021632198e-08 -> -0.93371676315220975 2.140800269742656e-08
809
+ atan0108 atan -0.20566254458595795 0.11933771944159823 -> -0.20556463711174916 0.11493405387141732
810
+ atan0109 atan -0.58563718795408559 0.64438965423212868 -> -0.68361089300233124 0.46759762751800249
811
+ atan0110 atan 48.479267751948292 -78.386382460112543 -> 1.5650888770910523 -0.0092276811373297584
812
+ atan0111 atan 1.0575373914056061 -0.75988012377296987 -> 0.94430886722043594 -0.31915698126703118
813
+ atan0112 atan 4444810.4314677203 -0.56553404593942558 -> 1.5707961018134231 -2.8625446437701909e-14
814
+ atan0113 atan 0.010101405082520009 -0.032932668550282478 -> 0.01011202676646334 -0.032941214776834996
815
+ atan0114 atan 1.5353585300154911 -2.1947099346796519 -> 1.3400310739206394 -0.29996003607449045
816
+ atan0115 atan 0.21869457055670882 9.9915684254007093 -> 1.5685846078876444 0.1003716881759439
817
+ atan0116 atan 0.17783290150246836 0.064334689863650957 -> 0.17668728064286277 0.062435808728873846
818
+ atan0117 atan 15.757474087615918 383.57262142534 -> 1.5706894060369621 0.0026026817278826603
819
+ atan0118 atan 10.587017408533317 0.21720238081843438 -> 1.4766594681336236 0.0019199097383010061
820
+ atan0119 atan 0.86026078678781204 0.1230148609359502 -> 0.7147259322534929 0.070551221954286605
821
+
822
+ -- values near infinity
823
+ atan0200 atan 7.8764397011195798e+307 8.1647921137746308e+307 -> 1.5707963267948966 6.3439446939604493e-309
824
+ atan0201 atan 1.5873698696131487e+308 -1.0780367422960641e+308 -> 1.5707963267948966 -2.9279309368530781e-309
825
+ atan0202 atan -1.5844551864825834e+308 1.0290657809098675e+308 -> -1.5707963267948966 2.8829614736961417e-309
826
+ atan0203 atan -1.3168792562524032e+308 -9.088432341614825e+307 -> -1.5707963267948966 -3.5499373057390056e-309
827
+ atan0204 atan 0.0 1.0360465742258337e+308 -> 1.5707963267948966 9.6520757355646018e-309
828
+ atan0205 atan -0.0 1.0045063210373196e+308 -> -1.5707963267948966 9.955138947929503e-309
829
+ atan0206 atan 0.0 -9.5155296715763696e+307 -> 1.5707963267948966 -1.050913648020118e-308
830
+ atan0207 atan -0.0 -1.5565700490496501e+308 -> -1.5707963267948966 -6.4243816114189071e-309
831
+ atan0208 atan 1.2956339389525244e+308 0.0 -> 1.5707963267948966 0.0
832
+ atan0209 atan 1.4408126243772151e+308 -0.0 -> 1.5707963267948966 -0.0
833
+ atan0210 atan -1.0631786461936417e+308 0.0 -> -1.5707963267948966 0.0
834
+ atan0211 atan -1.0516056964171069e+308 -0.0 -> -1.5707963267948966 -0.0
835
+ atan0212 atan 1.236162319603838e+308 4.6827953496242936 -> 1.5707963267948966 0.0
836
+ atan0213 atan 7.000516472897218e+307 -5.8631608017844163 -> 1.5707963267948966 -0.0
837
+ atan0214 atan -1.5053444003338508e+308 5.1199197268420313 -> -1.5707963267948966 0.0
838
+ atan0215 atan -1.399172518147259e+308 -3.5687766472913673 -> -1.5707963267948966 -0.0
839
+ atan0216 atan 8.1252833070803021 6.2782953917343822e+307 -> 1.5707963267948966 1.5927890256908564e-308
840
+ atan0217 atan 2.8034285947515167 -1.3378049775753878e+308 -> 1.5707963267948966 -7.4749310756219562e-309
841
+ atan0218 atan -1.4073509988974953 1.6776381785968355e+308 -> -1.5707963267948966 5.9607608646364569e-309
842
+ atan0219 atan -2.7135551527592119 -1.281567445525738e+308 -> -1.5707963267948966 -7.8029447727565326e-309
843
+
844
+ -- imaginary part = +/-1, real part tiny
845
+ atan0300 atan -1e-150 -1.0 -> -0.78539816339744828 -173.04045556483339
846
+ atan0301 atan 1e-155 1.0 -> 0.78539816339744828 178.79691829731851
847
+ atan0302 atan 9.9999999999999999e-161 -1.0 -> 0.78539816339744828 -184.55338102980363
848
+ atan0303 atan -1e-165 1.0 -> -0.78539816339744828 190.30984376228875
849
+ atan0304 atan -9.9998886718268301e-321 -1.0 -> -0.78539816339744828 -368.76019403576692
850
+
851
+ -- special values
852
+ atan1000 atan -0.0 0.0 -> -0.0 0.0
853
+ atan1001 atan nan 0.0 -> nan 0.0
854
+ atan1002 atan -0.0 1.0 -> -0.0 inf divide-by-zero
855
+ atan1003 atan -inf 0.0 -> -1.5707963267948966 0.0
856
+ atan1004 atan -inf 2.2999999999999998 -> -1.5707963267948966 0.0
857
+ atan1005 atan nan 2.2999999999999998 -> nan nan
858
+ atan1006 atan -0.0 inf -> -1.5707963267948966 0.0
859
+ atan1007 atan -2.2999999999999998 inf -> -1.5707963267948966 0.0
860
+ atan1008 atan -inf inf -> -1.5707963267948966 0.0
861
+ atan1009 atan nan inf -> nan 0.0
862
+ atan1010 atan -0.0 nan -> nan nan
863
+ atan1011 atan -2.2999999999999998 nan -> nan nan
864
+ atan1012 atan -inf nan -> -1.5707963267948966 0.0 ignore-imag-sign
865
+ atan1013 atan nan nan -> nan nan
866
+ atan1014 atan 0.0 0.0 -> 0.0 0.0
867
+ atan1015 atan 0.0 1.0 -> 0.0 inf divide-by-zero
868
+ atan1016 atan inf 0.0 -> 1.5707963267948966 0.0
869
+ atan1017 atan inf 2.2999999999999998 -> 1.5707963267948966 0.0
870
+ atan1018 atan 0.0 inf -> 1.5707963267948966 0.0
871
+ atan1019 atan 2.2999999999999998 inf -> 1.5707963267948966 0.0
872
+ atan1020 atan inf inf -> 1.5707963267948966 0.0
873
+ atan1021 atan 0.0 nan -> nan nan
874
+ atan1022 atan 2.2999999999999998 nan -> nan nan
875
+ atan1023 atan inf nan -> 1.5707963267948966 0.0 ignore-imag-sign
876
+ atan1024 atan 0.0 -0.0 -> 0.0 -0.0
877
+ atan1025 atan nan -0.0 -> nan -0.0
878
+ atan1026 atan 0.0 -1.0 -> 0.0 -inf divide-by-zero
879
+ atan1027 atan inf -0.0 -> 1.5707963267948966 -0.0
880
+ atan1028 atan inf -2.2999999999999998 -> 1.5707963267948966 -0.0
881
+ atan1029 atan nan -2.2999999999999998 -> nan nan
882
+ atan1030 atan 0.0 -inf -> 1.5707963267948966 -0.0
883
+ atan1031 atan 2.2999999999999998 -inf -> 1.5707963267948966 -0.0
884
+ atan1032 atan inf -inf -> 1.5707963267948966 -0.0
885
+ atan1033 atan nan -inf -> nan -0.0
886
+ atan1034 atan -0.0 -0.0 -> -0.0 -0.0
887
+ atan1035 atan -0.0 -1.0 -> -0.0 -inf divide-by-zero
888
+ atan1036 atan -inf -0.0 -> -1.5707963267948966 -0.0
889
+ atan1037 atan -inf -2.2999999999999998 -> -1.5707963267948966 -0.0
890
+ atan1038 atan -0.0 -inf -> -1.5707963267948966 -0.0
891
+ atan1039 atan -2.2999999999999998 -inf -> -1.5707963267948966 -0.0
892
+ atan1040 atan -inf -inf -> -1.5707963267948966 -0.0
893
+
894
+
895
+ ---------------------------------------
896
+ -- atanh: Inverse hyperbolic tangent --
897
+ ---------------------------------------
898
+
899
+ -- zeros
900
+ -- These are tested in testAtanhSign in test_cmath.py
901
+ -- atanh0000 atanh 0.0 0.0 -> 0.0 0.0
902
+ -- atanh0001 atanh 0.0 -0.0 -> 0.0 -0.0
903
+ -- atanh0002 atanh -0.0 0.0 -> -0.0 0.0
904
+ -- atanh0003 atanh -0.0 -0.0 -> -0.0 -0.0
905
+
906
+ -- values along both sides of real axis
907
+ atanh0010 atanh -9.8813129168249309e-324 0.0 -> -9.8813129168249309e-324 0.0
908
+ atanh0011 atanh -9.8813129168249309e-324 -0.0 -> -9.8813129168249309e-324 -0.0
909
+ atanh0012 atanh -1e-305 0.0 -> -1e-305 0.0
910
+ atanh0013 atanh -1e-305 -0.0 -> -1e-305 -0.0
911
+ atanh0014 atanh -1e-150 0.0 -> -1e-150 0.0
912
+ atanh0015 atanh -1e-150 -0.0 -> -1e-150 -0.0
913
+ atanh0016 atanh -9.9999999999999998e-17 0.0 -> -9.9999999999999998e-17 0.0
914
+ atanh0017 atanh -9.9999999999999998e-17 -0.0 -> -9.9999999999999998e-17 -0.0
915
+ atanh0018 atanh -0.001 0.0 -> -0.0010000003333335333 0.0
916
+ atanh0019 atanh -0.001 -0.0 -> -0.0010000003333335333 -0.0
917
+ atanh0020 atanh -0.57899999999999996 0.0 -> -0.6609570902866303 0.0
918
+ atanh0021 atanh -0.57899999999999996 -0.0 -> -0.6609570902866303 -0.0
919
+ atanh0022 atanh -0.99999999999999989 0.0 -> -18.714973875118524 0.0
920
+ atanh0023 atanh -0.99999999999999989 -0.0 -> -18.714973875118524 -0.0
921
+ atanh0024 atanh -1.0000000000000002 0.0 -> -18.36840028483855 1.5707963267948966
922
+ atanh0025 atanh -1.0000000000000002 -0.0 -> -18.36840028483855 -1.5707963267948966
923
+ atanh0026 atanh -1.0009999999999999 0.0 -> -3.8007011672919218 1.5707963267948966
924
+ atanh0027 atanh -1.0009999999999999 -0.0 -> -3.8007011672919218 -1.5707963267948966
925
+ atanh0028 atanh -2.0 0.0 -> -0.54930614433405489 1.5707963267948966
926
+ atanh0029 atanh -2.0 -0.0 -> -0.54930614433405489 -1.5707963267948966
927
+ atanh0030 atanh -23.0 0.0 -> -0.043505688494814884 1.5707963267948966
928
+ atanh0031 atanh -23.0 -0.0 -> -0.043505688494814884 -1.5707963267948966
929
+ atanh0032 atanh -10000000000000000.0 0.0 -> -9.9999999999999998e-17 1.5707963267948966
930
+ atanh0033 atanh -10000000000000000.0 -0.0 -> -9.9999999999999998e-17 -1.5707963267948966
931
+ atanh0034 atanh -9.9999999999999998e+149 0.0 -> -1e-150 1.5707963267948966
932
+ atanh0035 atanh -9.9999999999999998e+149 -0.0 -> -1e-150 -1.5707963267948966
933
+ atanh0036 atanh -1.0000000000000001e+299 0.0 -> -9.9999999999999999e-300 1.5707963267948966
934
+ atanh0037 atanh -1.0000000000000001e+299 -0.0 -> -9.9999999999999999e-300 -1.5707963267948966
935
+ atanh0038 atanh 9.8813129168249309e-324 0.0 -> 9.8813129168249309e-324 0.0
936
+ atanh0039 atanh 9.8813129168249309e-324 -0.0 -> 9.8813129168249309e-324 -0.0
937
+ atanh0040 atanh 1e-305 0.0 -> 1e-305 0.0
938
+ atanh0041 atanh 1e-305 -0.0 -> 1e-305 -0.0
939
+ atanh0042 atanh 1e-150 0.0 -> 1e-150 0.0
940
+ atanh0043 atanh 1e-150 -0.0 -> 1e-150 -0.0
941
+ atanh0044 atanh 9.9999999999999998e-17 0.0 -> 9.9999999999999998e-17 0.0
942
+ atanh0045 atanh 9.9999999999999998e-17 -0.0 -> 9.9999999999999998e-17 -0.0
943
+ atanh0046 atanh 0.001 0.0 -> 0.0010000003333335333 0.0
944
+ atanh0047 atanh 0.001 -0.0 -> 0.0010000003333335333 -0.0
945
+ atanh0048 atanh 0.57899999999999996 0.0 -> 0.6609570902866303 0.0
946
+ atanh0049 atanh 0.57899999999999996 -0.0 -> 0.6609570902866303 -0.0
947
+ atanh0050 atanh 0.99999999999999989 0.0 -> 18.714973875118524 0.0
948
+ atanh0051 atanh 0.99999999999999989 -0.0 -> 18.714973875118524 -0.0
949
+ atanh0052 atanh 1.0000000000000002 0.0 -> 18.36840028483855 1.5707963267948966
950
+ atanh0053 atanh 1.0000000000000002 -0.0 -> 18.36840028483855 -1.5707963267948966
951
+ atanh0054 atanh 1.0009999999999999 0.0 -> 3.8007011672919218 1.5707963267948966
952
+ atanh0055 atanh 1.0009999999999999 -0.0 -> 3.8007011672919218 -1.5707963267948966
953
+ atanh0056 atanh 2.0 0.0 -> 0.54930614433405489 1.5707963267948966
954
+ atanh0057 atanh 2.0 -0.0 -> 0.54930614433405489 -1.5707963267948966
955
+ atanh0058 atanh 23.0 0.0 -> 0.043505688494814884 1.5707963267948966
956
+ atanh0059 atanh 23.0 -0.0 -> 0.043505688494814884 -1.5707963267948966
957
+ atanh0060 atanh 10000000000000000.0 0.0 -> 9.9999999999999998e-17 1.5707963267948966
958
+ atanh0061 atanh 10000000000000000.0 -0.0 -> 9.9999999999999998e-17 -1.5707963267948966
959
+ atanh0062 atanh 9.9999999999999998e+149 0.0 -> 1e-150 1.5707963267948966
960
+ atanh0063 atanh 9.9999999999999998e+149 -0.0 -> 1e-150 -1.5707963267948966
961
+ atanh0064 atanh 1.0000000000000001e+299 0.0 -> 9.9999999999999999e-300 1.5707963267948966
962
+ atanh0065 atanh 1.0000000000000001e+299 -0.0 -> 9.9999999999999999e-300 -1.5707963267948966
963
+
964
+ -- random inputs
965
+ atanh0100 atanh -0.54460925980633501 -0.54038050126721027 -> -0.41984265808446974 -0.60354153938352828
966
+ atanh0101 atanh -1.6934614269829051 -0.48807386108113621 -> -0.58592769102243281 -1.3537837470975898
967
+ atanh0102 atanh -1.3467293985501207 -0.47868354895395876 -> -0.69961624370709985 -1.1994450156570076
968
+ atanh0103 atanh -5.6142232418984888 -544551613.39307702 -> -1.8932657550925744e-17 -1.5707963249585235
969
+ atanh0104 atanh -0.011841460381263651 -3.259978899823385 -> -0.0010183936547405188 -1.2731614020743838
970
+ atanh0105 atanh -0.0073345736950029532 0.35821949670922248 -> -0.0065004869024682466 0.34399359971920895
971
+ atanh0106 atanh -13.866782244320014 0.9541129545860273 -> -0.071896852055058899 1.5658322704631409
972
+ atanh0107 atanh -708.59964982780775 21.984802159266675 -> -0.0014098779074189741 1.5707525842838959
973
+ atanh0108 atanh -30.916832076030602 1.3691897138829843 -> -0.032292682045743676 1.5693652094847115
974
+ atanh0109 atanh -0.57461806339861754 0.29534797443913063 -> -0.56467464472482765 0.39615612824172625
975
+ atanh0110 atanh 0.40089246737415685 -1.632285984300659 -> 0.1063832707890608 -1.0402821335326482
976
+ atanh0111 atanh 2119.6167688262176 -1.5383653437377242e+17 -> 8.9565008518382049e-32 -1.5707963267948966
977
+ atanh0112 atanh 756.86017850941641 -6.6064087133223817 -> 0.0013211481136820046 -1.5707847948702234
978
+ atanh0113 atanh 4.0490617718041602 -2.5784456791040652e-12 -> 0.25218425538553618 -1.5707963267947291
979
+ atanh0114 atanh 10.589254957173523 -0.13956391149624509 -> 0.094700890282197664 -1.5695407140217623
980
+ atanh0115 atanh 1.0171187553160499 0.70766113465354019 -> 0.55260251975367791 0.96619711116641682
981
+ atanh0116 atanh 0.031645502527750849 0.067319983726544394 -> 0.031513018344086742 0.067285437670549036
982
+ atanh0117 atanh 0.13670177624994517 0.43240089361857947 -> 0.11538933151017253 0.41392008145336212
983
+ atanh0118 atanh 0.64173899243596688 2.9008577686695256 -> 0.065680142424134405 1.2518535724053921
984
+ atanh0119 atanh 0.19313813528025942 38.799619150741869 -> 0.00012820765917366644 1.5450292202823612
985
+
986
+ -- values near infinity
987
+ atanh0200 atanh 5.3242646831347954e+307 1.3740396080084153e+308 -> 2.4519253616695576e-309 1.5707963267948966
988
+ atanh0201 atanh 1.158701641241358e+308 -6.5579268873375853e+307 -> 6.5365375267795098e-309 -1.5707963267948966
989
+ atanh0202 atanh -1.3435325735762247e+308 9.8947369259601547e+307 -> -4.8256680906589956e-309 1.5707963267948966
990
+ atanh0203 atanh -1.4359857522598942e+308 -9.4701204702391004e+307 -> -4.8531282262872645e-309 -1.5707963267948966
991
+ atanh0204 atanh 0.0 5.6614181068098497e+307 -> 0.0 1.5707963267948966
992
+ atanh0205 atanh -0.0 6.9813212721450139e+307 -> -0.0 1.5707963267948966
993
+ atanh0206 atanh 0.0 -7.4970613060311453e+307 -> 0.0 -1.5707963267948966
994
+ atanh0207 atanh -0.0 -1.5280601880314068e+308 -> -0.0 -1.5707963267948966
995
+ atanh0208 atanh 8.2219472336000745e+307 0.0 -> 1.2162568933954813e-308 1.5707963267948966
996
+ atanh0209 atanh 1.4811519617280899e+308 -0.0 -> 6.7515017083951325e-309 -1.5707963267948966
997
+ atanh0210 atanh -1.2282016263598785e+308 0.0 -> -8.1419856360537615e-309 1.5707963267948966
998
+ atanh0211 atanh -1.0616427760154426e+308 -0.0 -> -9.4193642399489563e-309 -1.5707963267948966
999
+ atanh0212 atanh 1.2971536510180682e+308 5.2847948452333293 -> 7.7091869510998328e-309 1.5707963267948966
1000
+ atanh0213 atanh 1.1849860977411851e+308 -7.9781906447459949 -> 8.4389175696339014e-309 -1.5707963267948966
1001
+ atanh0214 atanh -1.4029969422586635e+308 0.93891986543663375 -> -7.127599283218073e-309 1.5707963267948966
1002
+ atanh0215 atanh -4.7508098912248211e+307 -8.2702421247039908 -> -2.1049042645278043e-308 -1.5707963267948966
1003
+ atanh0216 atanh 8.2680742115769998 8.1153898410918065e+307 -> 0.0 1.5707963267948966
1004
+ atanh0217 atanh 1.2575325146218885 -1.4746679147661649e+308 -> 0.0 -1.5707963267948966
1005
+ atanh0218 atanh -2.4618803682310899 1.3781522717005568e+308 -> -0.0 1.5707963267948966
1006
+ atanh0219 atanh -4.0952386694788112 -1.231083376353703e+308 -> -0.0 -1.5707963267948966
1007
+
1008
+ -- values near 0
1009
+ atanh0220 atanh 3.8017563659811628e-314 2.6635484239074319e-312 -> 3.8017563659811628e-314 2.6635484239074319e-312
1010
+ atanh0221 atanh 1.7391110733611878e-321 -4.3547800672541419e-313 -> 1.7391110733611878e-321 -4.3547800672541419e-313
1011
+ atanh0222 atanh -5.9656816081325078e-317 9.9692253555416263e-313 -> -5.9656816081325078e-317 9.9692253555416263e-313
1012
+ atanh0223 atanh -6.5606671178400239e-313 -2.1680936406357335e-309 -> -6.5606671178400239e-313 -2.1680936406357335e-309
1013
+ atanh0224 atanh 0.0 2.5230944401820779e-319 -> 0.0 2.5230944401820779e-319
1014
+ atanh0225 atanh -0.0 5.6066569490064658e-320 -> -0.0 5.6066569490064658e-320
1015
+ atanh0226 atanh 0.0 -2.4222487249468377e-317 -> 0.0 -2.4222487249468377e-317
1016
+ atanh0227 atanh -0.0 -3.0861101089206037e-316 -> -0.0 -3.0861101089206037e-316
1017
+ atanh0228 atanh 3.1219222884393986e-310 0.0 -> 3.1219222884393986e-310 0.0
1018
+ atanh0229 atanh 9.8926337564976196e-309 -0.0 -> 9.8926337564976196e-309 -0.0
1019
+ atanh0230 atanh -1.5462535092918154e-312 0.0 -> -1.5462535092918154e-312 0.0
1020
+ atanh0231 atanh -9.8813129168249309e-324 -0.0 -> -9.8813129168249309e-324 -0.0
1021
+
1022
+ -- real part = +/-1, imaginary part tiny
1023
+ atanh0300 atanh 1.0 1e-153 -> 176.49433320432448 0.78539816339744828
1024
+ atanh0301 atanh 1.0 9.9999999999999997e-155 -> 177.64562575082149 0.78539816339744828
1025
+ atanh0302 atanh -1.0 1e-161 -> -185.70467357630065 0.78539816339744828
1026
+ atanh0303 atanh 1.0 -1e-165 -> 190.30984376228875 -0.78539816339744828
1027
+ atanh0304 atanh -1.0 -9.8813129168249309e-324 -> -372.22003596069061 -0.78539816339744828
1028
+
1029
+ -- special values
1030
+ atanh1000 atanh 0.0 0.0 -> 0.0 0.0
1031
+ atanh1001 atanh 0.0 nan -> 0.0 nan
1032
+ atanh1002 atanh 1.0 0.0 -> inf 0.0 divide-by-zero
1033
+ atanh1003 atanh 0.0 inf -> 0.0 1.5707963267948966
1034
+ atanh1004 atanh 2.3 inf -> 0.0 1.5707963267948966
1035
+ atanh1005 atanh 2.3 nan -> nan nan
1036
+ atanh1006 atanh inf 0.0 -> 0.0 1.5707963267948966
1037
+ atanh1007 atanh inf 2.3 -> 0.0 1.5707963267948966
1038
+ atanh1008 atanh inf inf -> 0.0 1.5707963267948966
1039
+ atanh1009 atanh inf nan -> 0.0 nan
1040
+ atanh1010 atanh nan 0.0 -> nan nan
1041
+ atanh1011 atanh nan 2.3 -> nan nan
1042
+ atanh1012 atanh nan inf -> 0.0 1.5707963267948966 ignore-real-sign
1043
+ atanh1013 atanh nan nan -> nan nan
1044
+ atanh1014 atanh 0.0 -0.0 -> 0.0 -0.0
1045
+ atanh1015 atanh 1.0 -0.0 -> inf -0.0 divide-by-zero
1046
+ atanh1016 atanh 0.0 -inf -> 0.0 -1.5707963267948966
1047
+ atanh1017 atanh 2.3 -inf -> 0.0 -1.5707963267948966
1048
+ atanh1018 atanh inf -0.0 -> 0.0 -1.5707963267948966
1049
+ atanh1019 atanh inf -2.3 -> 0.0 -1.5707963267948966
1050
+ atanh1020 atanh inf -inf -> 0.0 -1.5707963267948966
1051
+ atanh1021 atanh nan -0.0 -> nan nan
1052
+ atanh1022 atanh nan -2.3 -> nan nan
1053
+ atanh1023 atanh nan -inf -> 0.0 -1.5707963267948966 ignore-real-sign
1054
+ atanh1024 atanh -0.0 -0.0 -> -0.0 -0.0
1055
+ atanh1025 atanh -0.0 nan -> -0.0 nan
1056
+ atanh1026 atanh -1.0 -0.0 -> -inf -0.0 divide-by-zero
1057
+ atanh1027 atanh -0.0 -inf -> -0.0 -1.5707963267948966
1058
+ atanh1028 atanh -2.3 -inf -> -0.0 -1.5707963267948966
1059
+ atanh1029 atanh -2.3 nan -> nan nan
1060
+ atanh1030 atanh -inf -0.0 -> -0.0 -1.5707963267948966
1061
+ atanh1031 atanh -inf -2.3 -> -0.0 -1.5707963267948966
1062
+ atanh1032 atanh -inf -inf -> -0.0 -1.5707963267948966
1063
+ atanh1033 atanh -inf nan -> -0.0 nan
1064
+ atanh1034 atanh -0.0 0.0 -> -0.0 0.0
1065
+ atanh1035 atanh -1.0 0.0 -> -inf 0.0 divide-by-zero
1066
+ atanh1036 atanh -0.0 inf -> -0.0 1.5707963267948966
1067
+ atanh1037 atanh -2.3 inf -> -0.0 1.5707963267948966
1068
+ atanh1038 atanh -inf 0.0 -> -0.0 1.5707963267948966
1069
+ atanh1039 atanh -inf 2.3 -> -0.0 1.5707963267948966
1070
+ atanh1040 atanh -inf inf -> -0.0 1.5707963267948966
1071
+
1072
+
1073
+ ----------------------------
1074
+ -- log: Natural logarithm --
1075
+ ----------------------------
1076
+
1077
+ log0000 log 1.0 0.0 -> 0.0 0.0
1078
+ log0001 log 1.0 -0.0 -> 0.0 -0.0
1079
+ log0002 log -1.0 0.0 -> 0.0 3.1415926535897931
1080
+ log0003 log -1.0 -0.0 -> 0.0 -3.1415926535897931
1081
+ -- values along both sides of real axis
1082
+ log0010 log -9.8813129168249309e-324 0.0 -> -743.74692474082133 3.1415926535897931
1083
+ log0011 log -9.8813129168249309e-324 -0.0 -> -743.74692474082133 -3.1415926535897931
1084
+ log0012 log -1e-305 0.0 -> -702.28845336318398 3.1415926535897931
1085
+ log0013 log -1e-305 -0.0 -> -702.28845336318398 -3.1415926535897931
1086
+ log0014 log -1e-150 0.0 -> -345.38776394910684 3.1415926535897931
1087
+ log0015 log -1e-150 -0.0 -> -345.38776394910684 -3.1415926535897931
1088
+ log0016 log -9.9999999999999998e-17 0.0 -> -36.841361487904734 3.1415926535897931
1089
+ log0017 log -9.9999999999999998e-17 -0.0 -> -36.841361487904734 -3.1415926535897931
1090
+ log0018 log -0.001 0.0 -> -6.9077552789821368 3.1415926535897931
1091
+ log0019 log -0.001 -0.0 -> -6.9077552789821368 -3.1415926535897931
1092
+ log0020 log -0.57899999999999996 0.0 -> -0.54645280140914188 3.1415926535897931
1093
+ log0021 log -0.57899999999999996 -0.0 -> -0.54645280140914188 -3.1415926535897931
1094
+ log0022 log -0.99999999999999989 0.0 -> -1.1102230246251565e-16 3.1415926535897931
1095
+ log0023 log -0.99999999999999989 -0.0 -> -1.1102230246251565e-16 -3.1415926535897931
1096
+ log0024 log -1.0000000000000002 0.0 -> 2.2204460492503128e-16 3.1415926535897931
1097
+ log0025 log -1.0000000000000002 -0.0 -> 2.2204460492503128e-16 -3.1415926535897931
1098
+ log0026 log -1.0009999999999999 0.0 -> 0.00099950033308342321 3.1415926535897931
1099
+ log0027 log -1.0009999999999999 -0.0 -> 0.00099950033308342321 -3.1415926535897931
1100
+ log0028 log -2.0 0.0 -> 0.69314718055994529 3.1415926535897931
1101
+ log0029 log -2.0 -0.0 -> 0.69314718055994529 -3.1415926535897931
1102
+ log0030 log -23.0 0.0 -> 3.1354942159291497 3.1415926535897931
1103
+ log0031 log -23.0 -0.0 -> 3.1354942159291497 -3.1415926535897931
1104
+ log0032 log -10000000000000000.0 0.0 -> 36.841361487904734 3.1415926535897931
1105
+ log0033 log -10000000000000000.0 -0.0 -> 36.841361487904734 -3.1415926535897931
1106
+ log0034 log -9.9999999999999998e+149 0.0 -> 345.38776394910684 3.1415926535897931
1107
+ log0035 log -9.9999999999999998e+149 -0.0 -> 345.38776394910684 -3.1415926535897931
1108
+ log0036 log -1.0000000000000001e+299 0.0 -> 688.47294280521965 3.1415926535897931
1109
+ log0037 log -1.0000000000000001e+299 -0.0 -> 688.47294280521965 -3.1415926535897931
1110
+ log0038 log 9.8813129168249309e-324 0.0 -> -743.74692474082133 0.0
1111
+ log0039 log 9.8813129168249309e-324 -0.0 -> -743.74692474082133 -0.0
1112
+ log0040 log 1e-305 0.0 -> -702.28845336318398 0.0
1113
+ log0041 log 1e-305 -0.0 -> -702.28845336318398 -0.0
1114
+ log0042 log 1e-150 0.0 -> -345.38776394910684 0.0
1115
+ log0043 log 1e-150 -0.0 -> -345.38776394910684 -0.0
1116
+ log0044 log 9.9999999999999998e-17 0.0 -> -36.841361487904734 0.0
1117
+ log0045 log 9.9999999999999998e-17 -0.0 -> -36.841361487904734 -0.0
1118
+ log0046 log 0.001 0.0 -> -6.9077552789821368 0.0
1119
+ log0047 log 0.001 -0.0 -> -6.9077552789821368 -0.0
1120
+ log0048 log 0.57899999999999996 0.0 -> -0.54645280140914188 0.0
1121
+ log0049 log 0.57899999999999996 -0.0 -> -0.54645280140914188 -0.0
1122
+ log0050 log 0.99999999999999989 0.0 -> -1.1102230246251565e-16 0.0
1123
+ log0051 log 0.99999999999999989 -0.0 -> -1.1102230246251565e-16 -0.0
1124
+ log0052 log 1.0000000000000002 0.0 -> 2.2204460492503128e-16 0.0
1125
+ log0053 log 1.0000000000000002 -0.0 -> 2.2204460492503128e-16 -0.0
1126
+ log0054 log 1.0009999999999999 0.0 -> 0.00099950033308342321 0.0
1127
+ log0055 log 1.0009999999999999 -0.0 -> 0.00099950033308342321 -0.0
1128
+ log0056 log 2.0 0.0 -> 0.69314718055994529 0.0
1129
+ log0057 log 2.0 -0.0 -> 0.69314718055994529 -0.0
1130
+ log0058 log 23.0 0.0 -> 3.1354942159291497 0.0
1131
+ log0059 log 23.0 -0.0 -> 3.1354942159291497 -0.0
1132
+ log0060 log 10000000000000000.0 0.0 -> 36.841361487904734 0.0
1133
+ log0061 log 10000000000000000.0 -0.0 -> 36.841361487904734 -0.0
1134
+ log0062 log 9.9999999999999998e+149 0.0 -> 345.38776394910684 0.0
1135
+ log0063 log 9.9999999999999998e+149 -0.0 -> 345.38776394910684 -0.0
1136
+ log0064 log 1.0000000000000001e+299 0.0 -> 688.47294280521965 0.0
1137
+ log0065 log 1.0000000000000001e+299 -0.0 -> 688.47294280521965 -0.0
1138
+
1139
+ -- random inputs
1140
+ log0066 log -1.9830454945186191e-16 -2.0334448025673346 -> 0.70973130194329803 -1.5707963267948968
1141
+ log0067 log -0.96745853024741857 -0.84995816228299692 -> 0.25292811398722387 -2.4207570438536905
1142
+ log0068 log -0.1603644313948418 -0.2929942111041835 -> -1.0965857872427374 -2.0715870859971419
1143
+ log0069 log -0.15917913168438699 -0.25238799251132177 -> -1.2093477313249901 -2.1334784232033863
1144
+ log0070 log -0.68907818535078802 -3.0693105853476346 -> 1.1460398629184565 -1.7916403813913211
1145
+ log0071 log -17.268133447565589 6.8165120014604756 -> 2.9212694465974836 2.7656245081603164
1146
+ log0072 log -1.7153894479690328 26.434055372802636 -> 3.2767542953718003 1.6355986276341734
1147
+ log0073 log -8.0456794648936578e-06 0.19722758057570208 -> -1.6233969848296075 1.5708371206810101
1148
+ log0074 log -2.4306442691323173 0.6846919750700996 -> 0.92633592001969589 2.8670160576718331
1149
+ log0075 log -3.5488049250888194 0.45324040643185254 -> 1.2747008374256426 3.0145640007885111
1150
+ log0076 log 0.18418516851510189 -0.26062518836212617 -> -1.1421287121940344 -0.95558440841183434
1151
+ log0077 log 2.7124837795638399 -13.148769067133387 -> 2.5971659975706802 -1.3673583045209439
1152
+ log0078 log 3.6521275476169149e-13 -3.7820543023170673e-05 -> -10.182658136741569 -1.5707963171384316
1153
+ log0079 log 5.0877545813862239 -1.2834978326786852 -> 1.6576856213076328 -0.24711583497738485
1154
+ log0080 log 0.26477986808461512 -0.67659001194187429 -> -0.31944085207999973 -1.197773671987121
1155
+ log0081 log 0.0014754261398071962 5.3514691608205442 -> 1.6773711707153829 1.5705206219261802
1156
+ log0082 log 0.29667334462157885 0.00020056045042584795 -> -1.2151233667079588 0.00067603114168689204
1157
+ log0083 log 0.82104233671099425 3.9005387130133102 -> 1.3827918965299593 1.3633304701848363
1158
+ log0084 log 0.27268135358180667 124.42088110945804 -> 4.8236724223559229 1.5686047258789015
1159
+ log0085 log 0.0026286959168267485 0.47795808180573013 -> -0.73821712137809126 1.5652965360960087
1160
+
1161
+ -- values near infinity
1162
+ log0100 log 1.0512025744003172e+308 7.2621669750664611e+307 -> 709.44123967814494 0.60455434048332968
1163
+ log0101 log 5.5344249034372126e+307 -1.2155859158431275e+308 -> 709.48562300345679 -1.143553056717973
1164
+ log0102 log -1.3155575403469408e+308 1.1610793541663864e+308 -> 709.75847809546428 2.41848796504974
1165
+ log0103 log -1.632366720973235e+308 -1.54299446211448e+308 -> 710.00545236515586 -2.3843326028455087
1166
+ log0104 log 0.0 5.9449276692327712e+307 -> 708.67616191258526 1.5707963267948966
1167
+ log0105 log -0.0 1.1201850459025692e+308 -> 709.30970253338171 1.5707963267948966
1168
+ log0106 log 0.0 -1.6214225933466528e+308 -> 709.6795125501086 -1.5707963267948966
1169
+ log0107 log -0.0 -1.7453269791591058e+308 -> 709.75315056087379 -1.5707963267948966
1170
+ log0108 log 1.440860577601428e+308 0.0 -> 709.56144920058262 0.0
1171
+ log0109 log 1.391515176148282e+308 -0.0 -> 709.52660185041327 -0.0
1172
+ log0110 log -1.201354401295296e+308 0.0 -> 709.37965823023956 3.1415926535897931
1173
+ log0111 log -1.6704337825976804e+308 -0.0 -> 709.70929198492399 -3.1415926535897931
1174
+ log0112 log 7.2276974655190223e+307 7.94879711369164 -> 708.87154406512104 1.0997689307850458e-307
1175
+ log0113 log 1.1207859593716076e+308 -6.1956200868221147 -> 709.31023883080104 -5.5279244310803286e-308
1176
+ log0114 log -4.6678933874471045e+307 9.947107893220382 -> 708.43433142431388 3.1415926535897931
1177
+ log0115 log -1.5108012453950142e+308 -5.3117197179375619 -> 709.60884877835008 -3.1415926535897931
1178
+ log0116 log 7.4903750871504435 1.5320703776626352e+308 -> 709.62282865085137 1.5707963267948966
1179
+ log0117 log 5.9760325525654778 -8.0149473997349123e+307 -> 708.97493177248396 -1.5707963267948966
1180
+ log0118 log -7.880194206386629 1.7861845814767441e+308 -> 709.77629046837137 1.5707963267948966
1181
+ log0119 log -9.886438993852865 -6.19235781080747e+307 -> 708.71693946977302 -1.5707963267948966
1182
+
1183
+ -- values near 0
1184
+ log0120 log 2.2996867579227779e-308 6.7861840770939125e-312 -> -708.36343567717392 0.00029509166223339815
1185
+ log0121 log 6.9169190417774516e-323 -9.0414013188948118e-322 -> -739.22766796468386 -1.4944423210001669
1186
+ log0122 log -1.5378064962914011e-316 1.8243628389354635e-310 -> -713.20014803142965 1.5707971697228842
1187
+ log0123 log -2.3319898483706837e-321 -2.2358763941866371e-313 -> -719.9045008332522 -1.570796337224766
1188
+ log0124 log 0.0 3.872770101081121e-315 -> -723.96033425374401 1.5707963267948966
1189
+ log0125 log -0.0 9.6342800939043076e-322 -> -739.16707236281752 1.5707963267948966
1190
+ log0126 log 0.0 -2.266099393427834e-308 -> -708.37814861757965 -1.5707963267948966
1191
+ log0127 log -0.0 -2.1184695673766626e-315 -> -724.56361036731812 -1.5707963267948966
1192
+ log0128 log 1.1363509854348671e-322 0.0 -> -741.30457770545206 0.0
1193
+ log0129 log 3.5572726500569751e-322 -0.0 -> -740.16340580236522 -0.0
1194
+ log0130 log -2.3696071074040593e-310 0.0 -> -712.93865466421641 3.1415926535897931
1195
+ log0131 log -2.813283897266934e-317 -0.0 -> -728.88512203138862 -3.1415926535897931
1196
+
1197
+ -- values near the unit circle
1198
+ log0200 log -0.59999999999999998 0.80000000000000004 -> 2.2204460492503132e-17 2.2142974355881808
1199
+ log0201 log 0.79999999999999993 0.60000000000000009 -> 6.1629758220391547e-33 0.64350110879328448
1200
+
1201
+ -- special values
1202
+ log1000 log -0.0 0.0 -> -inf 3.1415926535897931 divide-by-zero
1203
+ log1001 log 0.0 0.0 -> -inf 0.0 divide-by-zero
1204
+ log1002 log 0.0 inf -> inf 1.5707963267948966
1205
+ log1003 log 2.3 inf -> inf 1.5707963267948966
1206
+ log1004 log -0.0 inf -> inf 1.5707963267948966
1207
+ log1005 log -2.3 inf -> inf 1.5707963267948966
1208
+ log1006 log 0.0 nan -> nan nan
1209
+ log1007 log 2.3 nan -> nan nan
1210
+ log1008 log -0.0 nan -> nan nan
1211
+ log1009 log -2.3 nan -> nan nan
1212
+ log1010 log -inf 0.0 -> inf 3.1415926535897931
1213
+ log1011 log -inf 2.3 -> inf 3.1415926535897931
1214
+ log1012 log inf 0.0 -> inf 0.0
1215
+ log1013 log inf 2.3 -> inf 0.0
1216
+ log1014 log -inf inf -> inf 2.3561944901923448
1217
+ log1015 log inf inf -> inf 0.78539816339744828
1218
+ log1016 log inf nan -> inf nan
1219
+ log1017 log -inf nan -> inf nan
1220
+ log1018 log nan 0.0 -> nan nan
1221
+ log1019 log nan 2.3 -> nan nan
1222
+ log1020 log nan inf -> inf nan
1223
+ log1021 log nan nan -> nan nan
1224
+ log1022 log -0.0 -0.0 -> -inf -3.1415926535897931 divide-by-zero
1225
+ log1023 log 0.0 -0.0 -> -inf -0.0 divide-by-zero
1226
+ log1024 log 0.0 -inf -> inf -1.5707963267948966
1227
+ log1025 log 2.3 -inf -> inf -1.5707963267948966
1228
+ log1026 log -0.0 -inf -> inf -1.5707963267948966
1229
+ log1027 log -2.3 -inf -> inf -1.5707963267948966
1230
+ log1028 log -inf -0.0 -> inf -3.1415926535897931
1231
+ log1029 log -inf -2.3 -> inf -3.1415926535897931
1232
+ log1030 log inf -0.0 -> inf -0.0
1233
+ log1031 log inf -2.3 -> inf -0.0
1234
+ log1032 log -inf -inf -> inf -2.3561944901923448
1235
+ log1033 log inf -inf -> inf -0.78539816339744828
1236
+ log1034 log nan -0.0 -> nan nan
1237
+ log1035 log nan -2.3 -> nan nan
1238
+ log1036 log nan -inf -> inf nan
1239
+
1240
+
1241
+ ------------------------------
1242
+ -- log10: Logarithm base 10 --
1243
+ ------------------------------
1244
+
1245
+ logt0000 log10 1.0 0.0 -> 0.0 0.0
1246
+ logt0001 log10 1.0 -0.0 -> 0.0 -0.0
1247
+ logt0002 log10 -1.0 0.0 -> 0.0 1.3643763538418414
1248
+ logt0003 log10 -1.0 -0.0 -> 0.0 -1.3643763538418414
1249
+ -- values along both sides of real axis
1250
+ logt0010 log10 -9.8813129168249309e-324 0.0 -> -323.0051853474518 1.3643763538418414
1251
+ logt0011 log10 -9.8813129168249309e-324 -0.0 -> -323.0051853474518 -1.3643763538418414
1252
+ logt0012 log10 -1e-305 0.0 -> -305.0 1.3643763538418414
1253
+ logt0013 log10 -1e-305 -0.0 -> -305.0 -1.3643763538418414
1254
+ logt0014 log10 -1e-150 0.0 -> -150.0 1.3643763538418414
1255
+ logt0015 log10 -1e-150 -0.0 -> -150.0 -1.3643763538418414
1256
+ logt0016 log10 -9.9999999999999998e-17 0.0 -> -16.0 1.3643763538418414
1257
+ logt0017 log10 -9.9999999999999998e-17 -0.0 -> -16.0 -1.3643763538418414
1258
+ logt0018 log10 -0.001 0.0 -> -3.0 1.3643763538418414
1259
+ logt0019 log10 -0.001 -0.0 -> -3.0 -1.3643763538418414
1260
+ logt0020 log10 -0.57899999999999996 0.0 -> -0.23732143627256383 1.3643763538418414
1261
+ logt0021 log10 -0.57899999999999996 -0.0 -> -0.23732143627256383 -1.3643763538418414
1262
+ logt0022 log10 -0.99999999999999989 0.0 -> -4.821637332766436e-17 1.3643763538418414
1263
+ logt0023 log10 -0.99999999999999989 -0.0 -> -4.821637332766436e-17 -1.3643763538418414
1264
+ logt0024 log10 -1.0000000000000002 0.0 -> 9.6432746655328696e-17 1.3643763538418414
1265
+ logt0025 log10 -1.0000000000000002 -0.0 -> 9.6432746655328696e-17 -1.3643763538418414
1266
+ logt0026 log10 -1.0009999999999999 0.0 -> 0.0004340774793185929 1.3643763538418414
1267
+ logt0027 log10 -1.0009999999999999 -0.0 -> 0.0004340774793185929 -1.3643763538418414
1268
+ logt0028 log10 -2.0 0.0 -> 0.3010299956639812 1.3643763538418414
1269
+ logt0029 log10 -2.0 -0.0 -> 0.3010299956639812 -1.3643763538418414
1270
+ logt0030 log10 -23.0 0.0 -> 1.3617278360175928 1.3643763538418414
1271
+ logt0031 log10 -23.0 -0.0 -> 1.3617278360175928 -1.3643763538418414
1272
+ logt0032 log10 -10000000000000000.0 0.0 -> 16.0 1.3643763538418414
1273
+ logt0033 log10 -10000000000000000.0 -0.0 -> 16.0 -1.3643763538418414
1274
+ logt0034 log10 -9.9999999999999998e+149 0.0 -> 150.0 1.3643763538418414
1275
+ logt0035 log10 -9.9999999999999998e+149 -0.0 -> 150.0 -1.3643763538418414
1276
+ logt0036 log10 -1.0000000000000001e+299 0.0 -> 299.0 1.3643763538418414
1277
+ logt0037 log10 -1.0000000000000001e+299 -0.0 -> 299.0 -1.3643763538418414
1278
+ logt0038 log10 9.8813129168249309e-324 0.0 -> -323.0051853474518 0.0
1279
+ logt0039 log10 9.8813129168249309e-324 -0.0 -> -323.0051853474518 -0.0
1280
+ logt0040 log10 1e-305 0.0 -> -305.0 0.0
1281
+ logt0041 log10 1e-305 -0.0 -> -305.0 -0.0
1282
+ logt0042 log10 1e-150 0.0 -> -150.0 0.0
1283
+ logt0043 log10 1e-150 -0.0 -> -150.0 -0.0
1284
+ logt0044 log10 9.9999999999999998e-17 0.0 -> -16.0 0.0
1285
+ logt0045 log10 9.9999999999999998e-17 -0.0 -> -16.0 -0.0
1286
+ logt0046 log10 0.001 0.0 -> -3.0 0.0
1287
+ logt0047 log10 0.001 -0.0 -> -3.0 -0.0
1288
+ logt0048 log10 0.57899999999999996 0.0 -> -0.23732143627256383 0.0
1289
+ logt0049 log10 0.57899999999999996 -0.0 -> -0.23732143627256383 -0.0
1290
+ logt0050 log10 0.99999999999999989 0.0 -> -4.821637332766436e-17 0.0
1291
+ logt0051 log10 0.99999999999999989 -0.0 -> -4.821637332766436e-17 -0.0
1292
+ logt0052 log10 1.0000000000000002 0.0 -> 9.6432746655328696e-17 0.0
1293
+ logt0053 log10 1.0000000000000002 -0.0 -> 9.6432746655328696e-17 -0.0
1294
+ logt0054 log10 1.0009999999999999 0.0 -> 0.0004340774793185929 0.0
1295
+ logt0055 log10 1.0009999999999999 -0.0 -> 0.0004340774793185929 -0.0
1296
+ logt0056 log10 2.0 0.0 -> 0.3010299956639812 0.0
1297
+ logt0057 log10 2.0 -0.0 -> 0.3010299956639812 -0.0
1298
+ logt0058 log10 23.0 0.0 -> 1.3617278360175928 0.0
1299
+ logt0059 log10 23.0 -0.0 -> 1.3617278360175928 -0.0
1300
+ logt0060 log10 10000000000000000.0 0.0 -> 16.0 0.0
1301
+ logt0061 log10 10000000000000000.0 -0.0 -> 16.0 -0.0
1302
+ logt0062 log10 9.9999999999999998e+149 0.0 -> 150.0 0.0
1303
+ logt0063 log10 9.9999999999999998e+149 -0.0 -> 150.0 -0.0
1304
+ logt0064 log10 1.0000000000000001e+299 0.0 -> 299.0 0.0
1305
+ logt0065 log10 1.0000000000000001e+299 -0.0 -> 299.0 -0.0
1306
+
1307
+ -- random inputs
1308
+ logt0066 log10 -1.9830454945186191e-16 -2.0334448025673346 -> 0.30823238806798503 -0.68218817692092071
1309
+ logt0067 log10 -0.96745853024741857 -0.84995816228299692 -> 0.10984528422284802 -1.051321426174086
1310
+ logt0068 log10 -0.1603644313948418 -0.2929942111041835 -> -0.47624115633305419 -0.89967884023059597
1311
+ logt0069 log10 -0.15917913168438699 -0.25238799251132177 -> -0.52521304641665956 -0.92655790645688119
1312
+ logt0070 log10 -0.68907818535078802 -3.0693105853476346 -> 0.4977187885066448 -0.77809953119328823
1313
+ logt0071 log10 -17.268133447565589 6.8165120014604756 -> 1.2686912008098534 1.2010954629104202
1314
+ logt0072 log10 -1.7153894479690328 26.434055372802636 -> 1.423076309032751 0.71033145859005309
1315
+ logt0073 log10 -8.0456794648936578e-06 0.19722758057570208 -> -0.70503235244987561 0.68220589348055516
1316
+ logt0074 log10 -2.4306442691323173 0.6846919750700996 -> 0.40230257845332595 1.2451292533748923
1317
+ logt0075 log10 -3.5488049250888194 0.45324040643185254 -> 0.55359553977141063 1.3092085108866405
1318
+ logt0076 log10 0.18418516851510189 -0.26062518836212617 -> -0.49602019732913638 -0.41500503556604301
1319
+ logt0077 log10 2.7124837795638399 -13.148769067133387 -> 1.1279348613317008 -0.59383616643803216
1320
+ logt0078 log10 3.6521275476169149e-13 -3.7820543023170673e-05 -> -4.4222722398941112 -0.68218817272717114
1321
+ logt0079 log10 5.0877545813862239 -1.2834978326786852 -> 0.71992371806426847 -0.10732104352159283
1322
+ logt0080 log10 0.26477986808461512 -0.67659001194187429 -> -0.13873139935281681 -0.52018649631300229
1323
+ logt0081 log10 0.0014754261398071962 5.3514691608205442 -> 0.72847304354528819 0.6820684398178033
1324
+ logt0082 log10 0.29667334462157885 0.00020056045042584795 -> -0.52772137299296806 0.00029359659442937261
1325
+ logt0083 log10 0.82104233671099425 3.9005387130133102 -> 0.60053889028349361 0.59208690021184018
1326
+ logt0084 log10 0.27268135358180667 124.42088110945804 -> 2.094894315538069 0.68123637673656989
1327
+ logt0085 log10 0.0026286959168267485 0.47795808180573013 -> -0.32060362226100814 0.67979964816877081
1328
+
1329
+ -- values near infinity
1330
+ logt0100 log10 1.0512025744003172e+308 7.2621669750664611e+307 -> 308.10641562682065 0.26255461408256975
1331
+ logt0101 log10 5.5344249034372126e+307 -1.2155859158431275e+308 -> 308.12569106009209 -0.496638782296212
1332
+ logt0102 log10 -1.3155575403469408e+308 1.1610793541663864e+308 -> 308.24419052091019 1.0503359777705266
1333
+ logt0103 log10 -1.632366720973235e+308 -1.54299446211448e+308 -> 308.3514500834093 -1.0355024924378222
1334
+ logt0104 log10 0.0 5.9449276692327712e+307 -> 307.77414657501117 0.68218817692092071
1335
+ logt0105 log10 -0.0 1.1201850459025692e+308 -> 308.04928977068465 0.68218817692092071
1336
+ logt0106 log10 0.0 -1.6214225933466528e+308 -> 308.20989622030174 -0.68218817692092071
1337
+ logt0107 log10 -0.0 -1.7453269791591058e+308 -> 308.24187680203539 -0.68218817692092071
1338
+ logt0108 log10 1.440860577601428e+308 0.0 -> 308.15862195908755 0.0
1339
+ logt0109 log10 1.391515176148282e+308 -0.0 -> 308.14348794720007 -0.0
1340
+ logt0110 log10 -1.201354401295296e+308 0.0 -> 308.07967114380773 1.3643763538418414
1341
+ logt0111 log10 -1.6704337825976804e+308 -0.0 -> 308.22282926451624 -1.3643763538418414
1342
+ logt0112 log10 7.2276974655190223e+307 7.94879711369164 -> 307.85899996571993 4.7762357800858463e-308
1343
+ logt0113 log10 1.1207859593716076e+308 -6.1956200868221147 -> 308.04952268169455 -2.4007470767963597e-308
1344
+ logt0114 log10 -4.6678933874471045e+307 9.947107893220382 -> 307.66912092839902 1.3643763538418414
1345
+ logt0115 log10 -1.5108012453950142e+308 -5.3117197179375619 -> 308.1792073341565 -1.3643763538418414
1346
+ logt0116 log10 7.4903750871504435 1.5320703776626352e+308 -> 308.18527871564157 0.68218817692092071
1347
+ logt0117 log10 5.9760325525654778 -8.0149473997349123e+307 -> 307.90390067652424 -0.68218817692092071
1348
+ logt0118 log10 -7.880194206386629 1.7861845814767441e+308 -> 308.25192633617331 0.68218817692092071
1349
+ logt0119 log10 -9.886438993852865 -6.19235781080747e+307 -> 307.79185604308338 -0.68218817692092071
1350
+
1351
+ -- values near 0
1352
+ logt0120 log10 2.2996867579227779e-308 6.7861840770939125e-312 -> -307.63833129662572 0.00012815668056362305
1353
+ logt0121 log10 6.9169190417774516e-323 -9.0414013188948118e-322 -> -321.04249706727148 -0.64902805353306059
1354
+ logt0122 log10 -1.5378064962914011e-316 1.8243628389354635e-310 -> -309.73888878263222 0.68218854299989429
1355
+ logt0123 log10 -2.3319898483706837e-321 -2.2358763941866371e-313 -> -312.65055220919641 -0.68218818145055538
1356
+ logt0124 log10 0.0 3.872770101081121e-315 -> -314.41197828323476 0.68218817692092071
1357
+ logt0125 log10 -0.0 9.6342800939043076e-322 -> -321.01618073175331 0.68218817692092071
1358
+ logt0126 log10 0.0 -2.266099393427834e-308 -> -307.64472104545649 -0.68218817692092071
1359
+ logt0127 log10 -0.0 -2.1184695673766626e-315 -> -314.67397777042407 -0.68218817692092071
1360
+ logt0128 log10 1.1363509854348671e-322 0.0 -> -321.94448750709819 0.0
1361
+ logt0129 log10 3.5572726500569751e-322 -0.0 -> -321.44888284668451 -0.0
1362
+ logt0130 log10 -2.3696071074040593e-310 0.0 -> -309.62532365619722 1.3643763538418414
1363
+ logt0131 log10 -2.813283897266934e-317 -0.0 -> -316.55078643961042 -1.3643763538418414
1364
+
1365
+ -- values near the unit circle
1366
+ logt0200 log10 -0.59999999999999998 0.80000000000000004 -> 9.6432746655328709e-18 0.96165715756846815
1367
+ logt0201 log10 0.79999999999999993 0.60000000000000009 -> 2.6765463916147622e-33 0.2794689806475476
1368
+
1369
+ -- special values
1370
+ logt1000 log10 -0.0 0.0 -> -inf 1.3643763538418414 divide-by-zero
1371
+ logt1001 log10 0.0 0.0 -> -inf 0.0 divide-by-zero
1372
+ logt1002 log10 0.0 inf -> inf 0.68218817692092071
1373
+ logt1003 log10 2.3 inf -> inf 0.68218817692092071
1374
+ logt1004 log10 -0.0 inf -> inf 0.68218817692092071
1375
+ logt1005 log10 -2.3 inf -> inf 0.68218817692092071
1376
+ logt1006 log10 0.0 nan -> nan nan
1377
+ logt1007 log10 2.3 nan -> nan nan
1378
+ logt1008 log10 -0.0 nan -> nan nan
1379
+ logt1009 log10 -2.3 nan -> nan nan
1380
+ logt1010 log10 -inf 0.0 -> inf 1.3643763538418414
1381
+ logt1011 log10 -inf 2.3 -> inf 1.3643763538418414
1382
+ logt1012 log10 inf 0.0 -> inf 0.0
1383
+ logt1013 log10 inf 2.3 -> inf 0.0
1384
+ logt1014 log10 -inf inf -> inf 1.0232822653813811
1385
+ logt1015 log10 inf inf -> inf 0.34109408846046035
1386
+ logt1016 log10 inf nan -> inf nan
1387
+ logt1017 log10 -inf nan -> inf nan
1388
+ logt1018 log10 nan 0.0 -> nan nan
1389
+ logt1019 log10 nan 2.3 -> nan nan
1390
+ logt1020 log10 nan inf -> inf nan
1391
+ logt1021 log10 nan nan -> nan nan
1392
+ logt1022 log10 -0.0 -0.0 -> -inf -1.3643763538418414 divide-by-zero
1393
+ logt1023 log10 0.0 -0.0 -> -inf -0.0 divide-by-zero
1394
+ logt1024 log10 0.0 -inf -> inf -0.68218817692092071
1395
+ logt1025 log10 2.3 -inf -> inf -0.68218817692092071
1396
+ logt1026 log10 -0.0 -inf -> inf -0.68218817692092071
1397
+ logt1027 log10 -2.3 -inf -> inf -0.68218817692092071
1398
+ logt1028 log10 -inf -0.0 -> inf -1.3643763538418414
1399
+ logt1029 log10 -inf -2.3 -> inf -1.3643763538418414
1400
+ logt1030 log10 inf -0.0 -> inf -0.0
1401
+ logt1031 log10 inf -2.3 -> inf -0.0
1402
+ logt1032 log10 -inf -inf -> inf -1.0232822653813811
1403
+ logt1033 log10 inf -inf -> inf -0.34109408846046035
1404
+ logt1034 log10 nan -0.0 -> nan nan
1405
+ logt1035 log10 nan -2.3 -> nan nan
1406
+ logt1036 log10 nan -inf -> inf nan
1407
+
1408
+
1409
+ -----------------------
1410
+ -- sqrt: Square root --
1411
+ -----------------------
1412
+
1413
+ -- zeros
1414
+ sqrt0000 sqrt 0.0 0.0 -> 0.0 0.0
1415
+ sqrt0001 sqrt 0.0 -0.0 -> 0.0 -0.0
1416
+ sqrt0002 sqrt -0.0 0.0 -> 0.0 0.0
1417
+ sqrt0003 sqrt -0.0 -0.0 -> 0.0 -0.0
1418
+
1419
+ -- values along both sides of real axis
1420
+ sqrt0010 sqrt -9.8813129168249309e-324 0.0 -> 0.0 3.1434555694052576e-162
1421
+ sqrt0011 sqrt -9.8813129168249309e-324 -0.0 -> 0.0 -3.1434555694052576e-162
1422
+ sqrt0012 sqrt -1e-305 0.0 -> 0.0 3.1622776601683791e-153
1423
+ sqrt0013 sqrt -1e-305 -0.0 -> 0.0 -3.1622776601683791e-153
1424
+ sqrt0014 sqrt -1e-150 0.0 -> 0.0 9.9999999999999996e-76
1425
+ sqrt0015 sqrt -1e-150 -0.0 -> 0.0 -9.9999999999999996e-76
1426
+ sqrt0016 sqrt -9.9999999999999998e-17 0.0 -> 0.0 1e-08
1427
+ sqrt0017 sqrt -9.9999999999999998e-17 -0.0 -> 0.0 -1e-08
1428
+ sqrt0018 sqrt -0.001 0.0 -> 0.0 0.031622776601683791
1429
+ sqrt0019 sqrt -0.001 -0.0 -> 0.0 -0.031622776601683791
1430
+ sqrt0020 sqrt -0.57899999999999996 0.0 -> 0.0 0.76092049518987193
1431
+ sqrt0021 sqrt -0.57899999999999996 -0.0 -> 0.0 -0.76092049518987193
1432
+ sqrt0022 sqrt -0.99999999999999989 0.0 -> 0.0 0.99999999999999989
1433
+ sqrt0023 sqrt -0.99999999999999989 -0.0 -> 0.0 -0.99999999999999989
1434
+ sqrt0024 sqrt -1.0000000000000002 0.0 -> 0.0 1.0
1435
+ sqrt0025 sqrt -1.0000000000000002 -0.0 -> 0.0 -1.0
1436
+ sqrt0026 sqrt -1.0009999999999999 0.0 -> 0.0 1.000499875062461
1437
+ sqrt0027 sqrt -1.0009999999999999 -0.0 -> 0.0 -1.000499875062461
1438
+ sqrt0028 sqrt -2.0 0.0 -> 0.0 1.4142135623730951
1439
+ sqrt0029 sqrt -2.0 -0.0 -> 0.0 -1.4142135623730951
1440
+ sqrt0030 sqrt -23.0 0.0 -> 0.0 4.7958315233127191
1441
+ sqrt0031 sqrt -23.0 -0.0 -> 0.0 -4.7958315233127191
1442
+ sqrt0032 sqrt -10000000000000000.0 0.0 -> 0.0 100000000.0
1443
+ sqrt0033 sqrt -10000000000000000.0 -0.0 -> 0.0 -100000000.0
1444
+ sqrt0034 sqrt -9.9999999999999998e+149 0.0 -> 0.0 9.9999999999999993e+74
1445
+ sqrt0035 sqrt -9.9999999999999998e+149 -0.0 -> 0.0 -9.9999999999999993e+74
1446
+ sqrt0036 sqrt -1.0000000000000001e+299 0.0 -> 0.0 3.1622776601683796e+149
1447
+ sqrt0037 sqrt -1.0000000000000001e+299 -0.0 -> 0.0 -3.1622776601683796e+149
1448
+ sqrt0038 sqrt 9.8813129168249309e-324 0.0 -> 3.1434555694052576e-162 0.0
1449
+ sqrt0039 sqrt 9.8813129168249309e-324 -0.0 -> 3.1434555694052576e-162 -0.0
1450
+ sqrt0040 sqrt 1e-305 0.0 -> 3.1622776601683791e-153 0.0
1451
+ sqrt0041 sqrt 1e-305 -0.0 -> 3.1622776601683791e-153 -0.0
1452
+ sqrt0042 sqrt 1e-150 0.0 -> 9.9999999999999996e-76 0.0
1453
+ sqrt0043 sqrt 1e-150 -0.0 -> 9.9999999999999996e-76 -0.0
1454
+ sqrt0044 sqrt 9.9999999999999998e-17 0.0 -> 1e-08 0.0
1455
+ sqrt0045 sqrt 9.9999999999999998e-17 -0.0 -> 1e-08 -0.0
1456
+ sqrt0046 sqrt 0.001 0.0 -> 0.031622776601683791 0.0
1457
+ sqrt0047 sqrt 0.001 -0.0 -> 0.031622776601683791 -0.0
1458
+ sqrt0048 sqrt 0.57899999999999996 0.0 -> 0.76092049518987193 0.0
1459
+ sqrt0049 sqrt 0.57899999999999996 -0.0 -> 0.76092049518987193 -0.0
1460
+ sqrt0050 sqrt 0.99999999999999989 0.0 -> 0.99999999999999989 0.0
1461
+ sqrt0051 sqrt 0.99999999999999989 -0.0 -> 0.99999999999999989 -0.0
1462
+ sqrt0052 sqrt 1.0000000000000002 0.0 -> 1.0 0.0
1463
+ sqrt0053 sqrt 1.0000000000000002 -0.0 -> 1.0 -0.0
1464
+ sqrt0054 sqrt 1.0009999999999999 0.0 -> 1.000499875062461 0.0
1465
+ sqrt0055 sqrt 1.0009999999999999 -0.0 -> 1.000499875062461 -0.0
1466
+ sqrt0056 sqrt 2.0 0.0 -> 1.4142135623730951 0.0
1467
+ sqrt0057 sqrt 2.0 -0.0 -> 1.4142135623730951 -0.0
1468
+ sqrt0058 sqrt 23.0 0.0 -> 4.7958315233127191 0.0
1469
+ sqrt0059 sqrt 23.0 -0.0 -> 4.7958315233127191 -0.0
1470
+ sqrt0060 sqrt 10000000000000000.0 0.0 -> 100000000.0 0.0
1471
+ sqrt0061 sqrt 10000000000000000.0 -0.0 -> 100000000.0 -0.0
1472
+ sqrt0062 sqrt 9.9999999999999998e+149 0.0 -> 9.9999999999999993e+74 0.0
1473
+ sqrt0063 sqrt 9.9999999999999998e+149 -0.0 -> 9.9999999999999993e+74 -0.0
1474
+ sqrt0064 sqrt 1.0000000000000001e+299 0.0 -> 3.1622776601683796e+149 0.0
1475
+ sqrt0065 sqrt 1.0000000000000001e+299 -0.0 -> 3.1622776601683796e+149 -0.0
1476
+
1477
+ -- random inputs
1478
+ sqrt0100 sqrt -0.34252542541549913 -223039880.15076211 -> 10560.300180587592 -10560.300196805192
1479
+ sqrt0101 sqrt -0.88790791393018909 -5.3307751730827402 -> 1.5027154613689004 -1.7737140896343291
1480
+ sqrt0102 sqrt -113916.89291310767 -0.018143374626153858 -> 2.6877817875351178e-05 -337.51576691038952
1481
+ sqrt0103 sqrt -0.63187172386197121 -0.26293913366617694 -> 0.16205707495266153 -0.81125471918761971
1482
+ sqrt0104 sqrt -0.058185169308906215 -2.3548312990430991 -> 1.0717660342420072 -1.0985752598086966
1483
+ sqrt0105 sqrt -1.0580584765935896 0.14400319259151736 -> 0.069837489270111242 1.030987755262468
1484
+ sqrt0106 sqrt -1.1667595947504932 0.11159711473953678 -> 0.051598531319315251 1.0813981705111229
1485
+ sqrt0107 sqrt -0.5123728411449906 0.026175433648339085 -> 0.018278026262418718 0.71603556293597614
1486
+ sqrt0108 sqrt -3.7453400060067228 1.0946500314809635 -> 0.27990088541692498 1.9554243814742367
1487
+ sqrt0109 sqrt -0.0027736121575097673 1.0367943000839817 -> 0.71903560338719175 0.72096172651250545
1488
+ sqrt0110 sqrt 1501.2559699453188 -1.1997325207283589 -> 38.746047664730959 -0.015481998720355024
1489
+ sqrt0111 sqrt 1.4830075326850578 -0.64100878436755349 -> 1.244712815741096 -0.25749264258434584
1490
+ sqrt0112 sqrt 0.095395618499734602 -0.48226565701639595 -> 0.54175904053472879 -0.44509239434231551
1491
+ sqrt0113 sqrt 0.50109185681863277 -0.54054037379892561 -> 0.7868179858332387 -0.34349772344520979
1492
+ sqrt0114 sqrt 0.98779807595367897 -0.00019848758437225191 -> 0.99388031770665153 -9.9854872279921968e-05
1493
+ sqrt0115 sqrt 11.845472380792259 0.0010051104581506761 -> 3.4417252072345397 0.00014601840612346451
1494
+ sqrt0116 sqrt 2.3558249686735975 0.25605157371744403 -> 1.5371278477386647 0.083288964575761404
1495
+ sqrt0117 sqrt 0.77584894123159098 1.0496420627016076 -> 1.0200744386390885 0.51449287568756552
1496
+ sqrt0118 sqrt 1.8961715669604893 0.34940793467158854 -> 1.3827991781411615 0.12634080935066902
1497
+ sqrt0119 sqrt 0.96025378316565801 0.69573224860140515 -> 1.0358710342209998 0.33581991658093457
1498
+
1499
+ -- values near 0
1500
+ sqrt0120 sqrt 7.3577938365086866e-313 8.1181408465112743e-319 -> 8.5777583531543516e-157 4.732087634251168e-163
1501
+ sqrt0121 sqrt 1.2406883874892108e-310 -5.1210133324269776e-312 -> 1.1140990057468052e-155 -2.2982756945349973e-157
1502
+ sqrt0122 sqrt -7.1145453001139502e-322 2.9561379244703735e-314 -> 1.2157585807480286e-157 1.2157586100077242e-157
1503
+ sqrt0123 sqrt -4.9963244206801218e-314 -8.4718424423690227e-319 -> 1.8950582312540437e-162 -2.2352459419578971e-157
1504
+ sqrt0124 sqrt 0.0 7.699553609385195e-318 -> 1.9620848107797476e-159 1.9620848107797476e-159
1505
+ sqrt0125 sqrt -0.0 3.3900826606499415e-309 -> 4.1170879639922327e-155 4.1170879639922327e-155
1506
+ sqrt0126 sqrt 0.0 -9.8907989772250828e-319 -> 7.032353438652342e-160 -7.032353438652342e-160
1507
+ sqrt0127 sqrt -0.0 -1.3722939367590908e-315 -> 2.6194407196566702e-158 -2.6194407196566702e-158
1508
+ sqrt0128 sqrt 7.9050503334599447e-323 0.0 -> 8.8910349979403099e-162 0.0
1509
+ sqrt0129 sqrt 1.8623241768349486e-309 -0.0 -> 4.3154654173506579e-155 -0.0
1510
+ sqrt0130 sqrt -2.665971134499887e-308 0.0 -> 0.0 1.6327801856036491e-154
1511
+ sqrt0131 sqrt -1.5477066694467245e-310 -0.0 -> 0.0 -1.2440685951533077e-155
1512
+
1513
+ -- inputs whose absolute value overflows
1514
+ sqrt0140 sqrt 1.6999999999999999e+308 -1.6999999999999999e+308 -> 1.4325088230154573e+154 -5.9336458271212207e+153
1515
+ sqrt0141 sqrt -1.797e+308 -9.9999999999999999e+306 -> 3.7284476432057307e+152 -1.3410406899802901e+154
1516
+
1517
+ -- special values
1518
+ sqrt1000 sqrt 0.0 0.0 -> 0.0 0.0
1519
+ sqrt1001 sqrt -0.0 0.0 -> 0.0 0.0
1520
+ sqrt1002 sqrt 0.0 inf -> inf inf
1521
+ sqrt1003 sqrt 2.3 inf -> inf inf
1522
+ sqrt1004 sqrt inf inf -> inf inf
1523
+ sqrt1005 sqrt -0.0 inf -> inf inf
1524
+ sqrt1006 sqrt -2.3 inf -> inf inf
1525
+ sqrt1007 sqrt -inf inf -> inf inf
1526
+ sqrt1008 sqrt nan inf -> inf inf
1527
+ sqrt1009 sqrt 0.0 nan -> nan nan
1528
+ sqrt1010 sqrt 2.3 nan -> nan nan
1529
+ sqrt1011 sqrt -0.0 nan -> nan nan
1530
+ sqrt1012 sqrt -2.3 nan -> nan nan
1531
+ sqrt1013 sqrt -inf 0.0 -> 0.0 inf
1532
+ sqrt1014 sqrt -inf 2.3 -> 0.0 inf
1533
+ sqrt1015 sqrt inf 0.0 -> inf 0.0
1534
+ sqrt1016 sqrt inf 2.3 -> inf 0.0
1535
+ sqrt1017 sqrt -inf nan -> nan inf ignore-imag-sign
1536
+ sqrt1018 sqrt inf nan -> inf nan
1537
+ sqrt1019 sqrt nan 0.0 -> nan nan
1538
+ sqrt1020 sqrt nan 2.3 -> nan nan
1539
+ sqrt1021 sqrt nan nan -> nan nan
1540
+ sqrt1022 sqrt 0.0 -0.0 -> 0.0 -0.0
1541
+ sqrt1023 sqrt -0.0 -0.0 -> 0.0 -0.0
1542
+ sqrt1024 sqrt 0.0 -inf -> inf -inf
1543
+ sqrt1025 sqrt 2.3 -inf -> inf -inf
1544
+ sqrt1026 sqrt inf -inf -> inf -inf
1545
+ sqrt1027 sqrt -0.0 -inf -> inf -inf
1546
+ sqrt1028 sqrt -2.3 -inf -> inf -inf
1547
+ sqrt1029 sqrt -inf -inf -> inf -inf
1548
+ sqrt1030 sqrt nan -inf -> inf -inf
1549
+ sqrt1031 sqrt -inf -0.0 -> 0.0 -inf
1550
+ sqrt1032 sqrt -inf -2.3 -> 0.0 -inf
1551
+ sqrt1033 sqrt inf -0.0 -> inf -0.0
1552
+ sqrt1034 sqrt inf -2.3 -> inf -0.0
1553
+ sqrt1035 sqrt nan -0.0 -> nan nan
1554
+ sqrt1036 sqrt nan -2.3 -> nan nan
1555
+
1556
+
1557
+ -- For exp, cosh, sinh, tanh we limit tests to arguments whose
1558
+ -- imaginary part is less than 10 in absolute value: most math
1559
+ -- libraries have poor accuracy for (real) sine and cosine for
1560
+ -- large arguments, and the accuracy of these complex functions
1561
+ -- suffer correspondingly.
1562
+ --
1563
+ -- Similarly, for cos, sin and tan we limit tests to arguments
1564
+ -- with relatively small real part.
1565
+
1566
+
1567
+ -------------------------------
1568
+ -- exp: Exponential function --
1569
+ -------------------------------
1570
+
1571
+ -- zeros
1572
+ exp0000 exp 0.0 0.0 -> 1.0 0.0
1573
+ exp0001 exp 0.0 -0.0 -> 1.0 -0.0
1574
+ exp0002 exp -0.0 0.0 -> 1.0 0.0
1575
+ exp0003 exp -0.0 -0.0 -> 1.0 -0.0
1576
+
1577
+ -- random inputs
1578
+ exp0004 exp -17.957359009564684 -1.108613895795274 -> 7.0869292576226611e-09 -1.4225929202377833e-08
1579
+ exp0005 exp -1.4456149663368642e-15 -0.75359817331772239 -> 0.72923148323917997 -0.68426708517419033
1580
+ exp0006 exp -0.76008654883512661 -0.46657235480105019 -> 0.41764393109928666 -0.21035108396792854
1581
+ exp0007 exp -5.7071614697735731 -2.3744161818115816e-11 -> 0.0033220890242068356 -7.8880219364953578e-14
1582
+ exp0008 exp -0.4653981327927097 -5.2236706667445587e-21 -> 0.62788507378216663 -3.2798648420026468e-21
1583
+ exp0009 exp -3.2444565242295518 1.1535625304243959 -> 0.015799936931457641 0.035644950380024749
1584
+ exp0010 exp -3.0651456337977727 0.87765086532391878 -> 0.029805595629855953 0.035882775180855669
1585
+ exp0011 exp -0.11080823753233926 0.96486386300873106 -> 0.50979112534376314 0.73575512419561562
1586
+ exp0012 exp -2.5629722598928648 0.019636235754708079 -> 0.077060452853917397 0.0015133717341137684
1587
+ exp0013 exp -3.3201709957983357e-10 1.2684017344487268 -> 0.29780699855434889 0.95462610007689186
1588
+ exp0014 exp 0.88767276057993272 -0.18953422986895557 -> 2.3859624049858095 -0.45771559132044426
1589
+ exp0015 exp 1.5738333486794742 -2.2576803075544328e-11 -> 4.8251091132458654 -1.0893553826776623e-10
1590
+ exp0016 exp 1.6408702341813795 -1.438879484380837 -> 0.6786733590689048 -5.1148284173168825
1591
+ exp0017 exp 1.820279424202033 -0.020812040370785722 -> 6.1722462896420902 -0.1284755888435051
1592
+ exp0018 exp 1.7273965735945873 -0.61140621328954947 -> 4.6067931898799976 -3.2294267694441308
1593
+ exp0019 exp 2.5606034306862995 0.098153136008435504 -> 12.881325889966629 1.2684184812864494
1594
+ exp0020 exp 10.280368619483029 3.4564622559748535 -> -27721.283321551502 -9028.9663215568835
1595
+ exp0021 exp 1.104007405129741e-155 0.21258803067317278 -> 0.97748813933531764 0.21099037290544478
1596
+ exp0022 exp 0.027364777809295172 0.00059226603500623363 -> 1.0277424518451876 0.0006086970181346579
1597
+ exp0023 exp 0.94356313429255245 3.418530463518592 -> -2.4712285695346194 -0.70242654900218349
1598
+
1599
+ -- cases where exp(z) representable, exp(z.real) not
1600
+ exp0030 exp 710.0 0.78500000000000003 -> 1.5803016909637158e+308 1.5790437551806911e+308
1601
+ exp0031 exp 710.0 -0.78500000000000003 -> 1.5803016909637158e+308 -1.5790437551806911e+308
1602
+
1603
+ -- values for which exp(x) is subnormal, or underflows to 0
1604
+ exp0040 exp -735.0 0.78500000000000003 -> 4.3976783136329355e-320 4.3942198541120468e-320
1605
+ exp0041 exp -735.0 -2.3559999999999999 -> -4.3952079854037293e-320 -4.396690182341253e-320
1606
+ exp0042 exp -745.0 0.0 -> 4.9406564584124654e-324 0.0
1607
+ exp0043 exp -745.0 0.7 -> 0.0 0.0
1608
+ exp0044 exp -745.0 2.1 -> -0.0 0.0
1609
+ exp0045 exp -745.0 3.7 -> -0.0 -0.0
1610
+ exp0046 exp -745.0 5.3 -> 0.0 -0.0
1611
+
1612
+ -- values for which exp(z) overflows
1613
+ exp0050 exp 710.0 0.0 -> inf 0.0 overflow
1614
+ exp0051 exp 711.0 0.7 -> inf inf overflow
1615
+ exp0052 exp 710.0 1.5 -> 1.5802653829857376e+307 inf overflow
1616
+ exp0053 exp 710.0 1.6 -> -6.5231579995501372e+306 inf overflow
1617
+ exp0054 exp 710.0 2.8 -> -inf 7.4836177417448528e+307 overflow
1618
+
1619
+ -- special values
1620
+ exp1000 exp 0.0 0.0 -> 1.0 0.0
1621
+ exp1001 exp -0.0 0.0 -> 1.0 0.0
1622
+ exp1002 exp 0.0 inf -> nan nan invalid
1623
+ exp1003 exp 2.3 inf -> nan nan invalid
1624
+ exp1004 exp -0.0 inf -> nan nan invalid
1625
+ exp1005 exp -2.3 inf -> nan nan invalid
1626
+ exp1006 exp 0.0 nan -> nan nan
1627
+ exp1007 exp 2.3 nan -> nan nan
1628
+ exp1008 exp -0.0 nan -> nan nan
1629
+ exp1009 exp -2.3 nan -> nan nan
1630
+ exp1010 exp -inf 0.0 -> 0.0 0.0
1631
+ exp1011 exp -inf 1.4 -> 0.0 0.0
1632
+ exp1012 exp -inf 2.8 -> -0.0 0.0
1633
+ exp1013 exp -inf 4.2 -> -0.0 -0.0
1634
+ exp1014 exp -inf 5.6 -> 0.0 -0.0
1635
+ exp1015 exp -inf 7.0 -> 0.0 0.0
1636
+ exp1016 exp inf 0.0 -> inf 0.0
1637
+ exp1017 exp inf 1.4 -> inf inf
1638
+ exp1018 exp inf 2.8 -> -inf inf
1639
+ exp1019 exp inf 4.2 -> -inf -inf
1640
+ exp1020 exp inf 5.6 -> inf -inf
1641
+ exp1021 exp inf 7.0 -> inf inf
1642
+ exp1022 exp -inf inf -> 0.0 0.0 ignore-real-sign ignore-imag-sign
1643
+ exp1023 exp inf inf -> inf nan invalid ignore-real-sign
1644
+ exp1024 exp -inf nan -> 0.0 0.0 ignore-real-sign ignore-imag-sign
1645
+ exp1025 exp inf nan -> inf nan ignore-real-sign
1646
+ exp1026 exp nan 0.0 -> nan 0.0
1647
+ exp1027 exp nan 2.3 -> nan nan
1648
+ exp1028 exp nan inf -> nan nan
1649
+ exp1029 exp nan nan -> nan nan
1650
+ exp1030 exp 0.0 -0.0 -> 1.0 -0.0
1651
+ exp1031 exp -0.0 -0.0 -> 1.0 -0.0
1652
+ exp1032 exp 0.0 -inf -> nan nan invalid
1653
+ exp1033 exp 2.3 -inf -> nan nan invalid
1654
+ exp1034 exp -0.0 -inf -> nan nan invalid
1655
+ exp1035 exp -2.3 -inf -> nan nan invalid
1656
+ exp1036 exp -inf -0.0 -> 0.0 -0.0
1657
+ exp1037 exp -inf -1.4 -> 0.0 -0.0
1658
+ exp1038 exp -inf -2.8 -> -0.0 -0.0
1659
+ exp1039 exp -inf -4.2 -> -0.0 0.0
1660
+ exp1040 exp -inf -5.6 -> 0.0 0.0
1661
+ exp1041 exp -inf -7.0 -> 0.0 -0.0
1662
+ exp1042 exp inf -0.0 -> inf -0.0
1663
+ exp1043 exp inf -1.4 -> inf -inf
1664
+ exp1044 exp inf -2.8 -> -inf -inf
1665
+ exp1045 exp inf -4.2 -> -inf inf
1666
+ exp1046 exp inf -5.6 -> inf inf
1667
+ exp1047 exp inf -7.0 -> inf -inf
1668
+ exp1048 exp -inf -inf -> 0.0 0.0 ignore-real-sign ignore-imag-sign
1669
+ exp1049 exp inf -inf -> inf nan invalid ignore-real-sign
1670
+ exp1050 exp nan -0.0 -> nan -0.0
1671
+ exp1051 exp nan -2.3 -> nan nan
1672
+ exp1052 exp nan -inf -> nan nan
1673
+
1674
+
1675
+ -----------------------------
1676
+ -- cosh: Hyperbolic Cosine --
1677
+ -----------------------------
1678
+
1679
+ -- zeros
1680
+ cosh0000 cosh 0.0 0.0 -> 1.0 0.0
1681
+ cosh0001 cosh 0.0 -0.0 -> 1.0 -0.0
1682
+ cosh0002 cosh -0.0 0.0 -> 1.0 -0.0
1683
+ cosh0003 cosh -0.0 -0.0 -> 1.0 0.0
1684
+
1685
+ -- random inputs
1686
+ cosh0004 cosh -0.85395264297414253 -8.8553756148671958 -> -1.1684340348021185 0.51842195359787435
1687
+ cosh0005 cosh -19.584904237211223 -0.066582627994906177 -> 159816812.23336992 10656776.050406246
1688
+ cosh0006 cosh -0.11072618401130772 -1.484820215073247 -> 0.086397164744949503 0.11054275637717284
1689
+ cosh0007 cosh -3.4764840250681752 -0.48440348288275276 -> 14.325931955190844 7.5242053548737955
1690
+ cosh0008 cosh -0.52047063604524602 -0.3603805382775585 -> 1.0653940354683802 0.19193293606252473
1691
+ cosh0009 cosh -1.39518962975995 0.0074738604700702906 -> 2.1417031027235969 -0.01415518712296308
1692
+ cosh0010 cosh -0.37107064757653541 0.14728085307856609 -> 1.0580601496776991 -0.055712531964568587
1693
+ cosh0011 cosh -5.8470200958739653 4.0021722388336292 -> -112.86220667618285 131.24734033545013
1694
+ cosh0012 cosh -0.1700261444851883 0.97167540135354513 -> 0.57208748253577946 -0.1410904820240203
1695
+ cosh0013 cosh -0.44042397902648783 1.0904791964139742 -> 0.50760322393058133 -0.40333966652010816
1696
+ cosh0014 cosh 0.052267552491867299 -3.8889011430644174 -> -0.73452303414639297 0.035540704833537134
1697
+ cosh0015 cosh 0.98000764177127453 -1.2548829247784097 -> 0.47220747341416142 -1.0879421432180316
1698
+ cosh0016 cosh 0.083594701222644008 -0.88847899930181284 -> 0.63279782419312613 -0.064954566816002285
1699
+ cosh0017 cosh 1.38173531783776 -0.43185040816732229 -> 1.9221663374671647 -0.78073830858849347
1700
+ cosh0018 cosh 0.57315681120148465 -0.22255760951027942 -> 1.1399733125173004 -0.1335512343605956
1701
+ cosh0019 cosh 1.8882512333062347 4.5024932182383797 -> -0.7041602065362691 -3.1573822131964615
1702
+ cosh0020 cosh 0.5618219206858317 0.92620452129575348 -> 0.69822380405378381 0.47309067471054522
1703
+ cosh0021 cosh 0.54361442847062591 0.64176483583018462 -> 0.92234462074193491 0.34167906495845501
1704
+ cosh0022 cosh 0.0014777403107920331 1.3682028122677661 -> 0.2012106963899549 0.001447518137863219
1705
+ cosh0023 cosh 2.218885944363501 2.0015727395883687 -> -1.94294321081968 4.1290269176083196
1706
+
1707
+ -- large real part
1708
+ cosh0030 cosh 710.5 2.3519999999999999 -> -1.2967465239355998e+308 1.3076707908857333e+308
1709
+ cosh0031 cosh -710.5 0.69999999999999996 -> 1.4085466381392499e+308 -1.1864024666450239e+308
1710
+
1711
+ -- special values
1712
+ cosh1000 cosh 0.0 0.0 -> 1.0 0.0
1713
+ cosh1001 cosh 0.0 inf -> nan 0.0 invalid ignore-imag-sign
1714
+ cosh1002 cosh 0.0 nan -> nan 0.0 ignore-imag-sign
1715
+ cosh1003 cosh 2.3 inf -> nan nan invalid
1716
+ cosh1004 cosh 2.3 nan -> nan nan
1717
+ cosh1005 cosh inf 0.0 -> inf 0.0
1718
+ cosh1006 cosh inf 1.4 -> inf inf
1719
+ cosh1007 cosh inf 2.8 -> -inf inf
1720
+ cosh1008 cosh inf 4.2 -> -inf -inf
1721
+ cosh1009 cosh inf 5.6 -> inf -inf
1722
+ cosh1010 cosh inf 7.0 -> inf inf
1723
+ cosh1011 cosh inf inf -> inf nan invalid ignore-real-sign
1724
+ cosh1012 cosh inf nan -> inf nan
1725
+ cosh1013 cosh nan 0.0 -> nan 0.0 ignore-imag-sign
1726
+ cosh1014 cosh nan 2.3 -> nan nan
1727
+ cosh1015 cosh nan inf -> nan nan
1728
+ cosh1016 cosh nan nan -> nan nan
1729
+ cosh1017 cosh 0.0 -0.0 -> 1.0 -0.0
1730
+ cosh1018 cosh 0.0 -inf -> nan 0.0 invalid ignore-imag-sign
1731
+ cosh1019 cosh 2.3 -inf -> nan nan invalid
1732
+ cosh1020 cosh inf -0.0 -> inf -0.0
1733
+ cosh1021 cosh inf -1.4 -> inf -inf
1734
+ cosh1022 cosh inf -2.8 -> -inf -inf
1735
+ cosh1023 cosh inf -4.2 -> -inf inf
1736
+ cosh1024 cosh inf -5.6 -> inf inf
1737
+ cosh1025 cosh inf -7.0 -> inf -inf
1738
+ cosh1026 cosh inf -inf -> inf nan invalid ignore-real-sign
1739
+ cosh1027 cosh nan -0.0 -> nan 0.0 ignore-imag-sign
1740
+ cosh1028 cosh nan -2.3 -> nan nan
1741
+ cosh1029 cosh nan -inf -> nan nan
1742
+ cosh1030 cosh -0.0 -0.0 -> 1.0 0.0
1743
+ cosh1031 cosh -0.0 -inf -> nan 0.0 invalid ignore-imag-sign
1744
+ cosh1032 cosh -0.0 nan -> nan 0.0 ignore-imag-sign
1745
+ cosh1033 cosh -2.3 -inf -> nan nan invalid
1746
+ cosh1034 cosh -2.3 nan -> nan nan
1747
+ cosh1035 cosh -inf -0.0 -> inf 0.0
1748
+ cosh1036 cosh -inf -1.4 -> inf inf
1749
+ cosh1037 cosh -inf -2.8 -> -inf inf
1750
+ cosh1038 cosh -inf -4.2 -> -inf -inf
1751
+ cosh1039 cosh -inf -5.6 -> inf -inf
1752
+ cosh1040 cosh -inf -7.0 -> inf inf
1753
+ cosh1041 cosh -inf -inf -> inf nan invalid ignore-real-sign
1754
+ cosh1042 cosh -inf nan -> inf nan
1755
+ cosh1043 cosh -0.0 0.0 -> 1.0 -0.0
1756
+ cosh1044 cosh -0.0 inf -> nan 0.0 invalid ignore-imag-sign
1757
+ cosh1045 cosh -2.3 inf -> nan nan invalid
1758
+ cosh1046 cosh -inf 0.0 -> inf -0.0
1759
+ cosh1047 cosh -inf 1.4 -> inf -inf
1760
+ cosh1048 cosh -inf 2.8 -> -inf -inf
1761
+ cosh1049 cosh -inf 4.2 -> -inf inf
1762
+ cosh1050 cosh -inf 5.6 -> inf inf
1763
+ cosh1051 cosh -inf 7.0 -> inf -inf
1764
+ cosh1052 cosh -inf inf -> inf nan invalid ignore-real-sign
1765
+
1766
+
1767
+ ---------------------------
1768
+ -- sinh: Hyperbolic Sine --
1769
+ ---------------------------
1770
+
1771
+ -- zeros
1772
+ sinh0000 sinh 0.0 0.0 -> 0.0 0.0
1773
+ sinh0001 sinh 0.0 -0.0 -> 0.0 -0.0
1774
+ sinh0002 sinh -0.0 0.0 -> -0.0 0.0
1775
+ sinh0003 sinh -0.0 -0.0 -> -0.0 -0.0
1776
+
1777
+ -- random inputs
1778
+ sinh0004 sinh -17.282588091462742 -0.38187948694103546 -> -14867386.857248396 -5970648.6553516639
1779
+ sinh0005 sinh -343.91971203143208 -5.0172868877771525e-22 -> -1.1518691776521735e+149 -5.7792581214689021e+127
1780
+ sinh0006 sinh -14.178122253300922 -1.9387157579351293 -> 258440.37909034826 -670452.58500946441
1781
+ sinh0007 sinh -1.0343810581686239 -1.0970235266369905 -> -0.56070858278092739 -1.4098883258046697
1782
+ sinh0008 sinh -0.066126561416368204 -0.070461584169961872 -> -0.066010558700938124 -0.070557276738637542
1783
+ sinh0009 sinh -0.37630149150308484 3.3621734692162173 -> 0.37591118119332617 -0.23447115926369383
1784
+ sinh0010 sinh -0.049941960978670055 0.40323767020414625 -> -0.045955482136329009 0.3928878494430646
1785
+ sinh0011 sinh -16.647852603903715 0.0026852219129082098 -> -8492566.5739382561 22804.480671133562
1786
+ sinh0012 sinh -1.476625314303694 0.89473773116683386 -> -1.2982943334382224 1.7966593367791204
1787
+ sinh0013 sinh -422.36429577556913 0.10366634502307912 -> -1.3400321008920044e+183 1.3941600948045599e+182
1788
+ sinh0014 sinh 0.09108340745641981 -0.40408227416070353 -> 0.083863724802237902 -0.39480716553935602
1789
+ sinh0015 sinh 2.036064132067386 -2.6831729961386239 -> -3.37621124363175 -1.723868330002817
1790
+ sinh0016 sinh 2.5616717223063317 -0.0078978498622717767 -> 6.4399415853815869 -0.051472264400722133
1791
+ sinh0017 sinh 0.336804011985188 -6.5654622971649337 -> 0.32962499307574578 -0.29449170159995197
1792
+ sinh0018 sinh 0.23774603755649693 -0.92467195799232049 -> 0.14449839490603389 -0.82109449053556793
1793
+ sinh0019 sinh 0.0011388273541465494 1.9676196882949855 -> -0.00044014605389634999 0.92229398407098806
1794
+ sinh0020 sinh 3.2443870105663759 0.8054287559616895 -> 8.8702890778527426 9.2610748597042196
1795
+ sinh0021 sinh 0.040628908857054738 0.098206391190944958 -> 0.04044426841671233 0.098129544739707392
1796
+ sinh0022 sinh 4.7252283918217696e-30 9.1198155642656697 -> -4.5071980561644404e-30 0.30025730701661713
1797
+ sinh0023 sinh 0.043713693678420068 0.22512549887532657 -> 0.042624198673416713 0.22344201231217961
1798
+
1799
+ -- large real part
1800
+ sinh0030 sinh 710.5 -2.3999999999999999 -> -1.3579970564885919e+308 -1.24394470907798e+308
1801
+ sinh0031 sinh -710.5 0.80000000000000004 -> -1.2830671601735164e+308 1.3210954193997678e+308
1802
+
1803
+ -- special values
1804
+ sinh1000 sinh 0.0 0.0 -> 0.0 0.0
1805
+ sinh1001 sinh 0.0 inf -> 0.0 nan invalid ignore-real-sign
1806
+ sinh1002 sinh 0.0 nan -> 0.0 nan ignore-real-sign
1807
+ sinh1003 sinh 2.3 inf -> nan nan invalid
1808
+ sinh1004 sinh 2.3 nan -> nan nan
1809
+ sinh1005 sinh inf 0.0 -> inf 0.0
1810
+ sinh1006 sinh inf 1.4 -> inf inf
1811
+ sinh1007 sinh inf 2.8 -> -inf inf
1812
+ sinh1008 sinh inf 4.2 -> -inf -inf
1813
+ sinh1009 sinh inf 5.6 -> inf -inf
1814
+ sinh1010 sinh inf 7.0 -> inf inf
1815
+ sinh1011 sinh inf inf -> inf nan invalid ignore-real-sign
1816
+ sinh1012 sinh inf nan -> inf nan ignore-real-sign
1817
+ sinh1013 sinh nan 0.0 -> nan 0.0
1818
+ sinh1014 sinh nan 2.3 -> nan nan
1819
+ sinh1015 sinh nan inf -> nan nan
1820
+ sinh1016 sinh nan nan -> nan nan
1821
+ sinh1017 sinh 0.0 -0.0 -> 0.0 -0.0
1822
+ sinh1018 sinh 0.0 -inf -> 0.0 nan invalid ignore-real-sign
1823
+ sinh1019 sinh 2.3 -inf -> nan nan invalid
1824
+ sinh1020 sinh inf -0.0 -> inf -0.0
1825
+ sinh1021 sinh inf -1.4 -> inf -inf
1826
+ sinh1022 sinh inf -2.8 -> -inf -inf
1827
+ sinh1023 sinh inf -4.2 -> -inf inf
1828
+ sinh1024 sinh inf -5.6 -> inf inf
1829
+ sinh1025 sinh inf -7.0 -> inf -inf
1830
+ sinh1026 sinh inf -inf -> inf nan invalid ignore-real-sign
1831
+ sinh1027 sinh nan -0.0 -> nan -0.0
1832
+ sinh1028 sinh nan -2.3 -> nan nan
1833
+ sinh1029 sinh nan -inf -> nan nan
1834
+ sinh1030 sinh -0.0 -0.0 -> -0.0 -0.0
1835
+ sinh1031 sinh -0.0 -inf -> 0.0 nan invalid ignore-real-sign
1836
+ sinh1032 sinh -0.0 nan -> 0.0 nan ignore-real-sign
1837
+ sinh1033 sinh -2.3 -inf -> nan nan invalid
1838
+ sinh1034 sinh -2.3 nan -> nan nan
1839
+ sinh1035 sinh -inf -0.0 -> -inf -0.0
1840
+ sinh1036 sinh -inf -1.4 -> -inf -inf
1841
+ sinh1037 sinh -inf -2.8 -> inf -inf
1842
+ sinh1038 sinh -inf -4.2 -> inf inf
1843
+ sinh1039 sinh -inf -5.6 -> -inf inf
1844
+ sinh1040 sinh -inf -7.0 -> -inf -inf
1845
+ sinh1041 sinh -inf -inf -> inf nan invalid ignore-real-sign
1846
+ sinh1042 sinh -inf nan -> inf nan ignore-real-sign
1847
+ sinh1043 sinh -0.0 0.0 -> -0.0 0.0
1848
+ sinh1044 sinh -0.0 inf -> 0.0 nan invalid ignore-real-sign
1849
+ sinh1045 sinh -2.3 inf -> nan nan invalid
1850
+ sinh1046 sinh -inf 0.0 -> -inf 0.0
1851
+ sinh1047 sinh -inf 1.4 -> -inf inf
1852
+ sinh1048 sinh -inf 2.8 -> inf inf
1853
+ sinh1049 sinh -inf 4.2 -> inf -inf
1854
+ sinh1050 sinh -inf 5.6 -> -inf -inf
1855
+ sinh1051 sinh -inf 7.0 -> -inf inf
1856
+ sinh1052 sinh -inf inf -> inf nan invalid ignore-real-sign
1857
+
1858
+
1859
+ ------------------------------
1860
+ -- tanh: Hyperbolic Tangent --
1861
+ ------------------------------
1862
+
1863
+ -- Disabled test: replaced by test_math.testTanhSign()
1864
+ -- and test_cmath.testTanhSign()
1865
+
1866
+ -- -- zeros
1867
+ -- tanh0000 tanh 0.0 0.0 -> 0.0 0.0
1868
+ -- tanh0001 tanh 0.0 -0.0 -> 0.0 -0.0
1869
+ -- tanh0002 tanh -0.0 0.0 -> -0.0 0.0
1870
+ -- tanh0003 tanh -0.0 -0.0 -> -0.0 -0.0
1871
+
1872
+ -- random inputs
1873
+ tanh0004 tanh -21.200500450664993 -1.6970729480342996 -> -1.0 1.9241352344849399e-19
1874
+ tanh0005 tanh -0.34158771504251928 -8.0848504951747131 -> -2.123711225855613 1.2827526782026006
1875
+ tanh0006 tanh -15.454144725193689 -0.23619582288265617 -> -0.99999999999993283 -3.4336684248260036e-14
1876
+ tanh0007 tanh -7.6103163119661952 -0.7802748320307008 -> -0.99999999497219438 -4.9064845343755437e-07
1877
+ tanh0008 tanh -0.15374717235792129 -0.6351086327306138 -> -0.23246081703561869 -0.71083467433910219
1878
+ tanh0009 tanh -0.49101115474392465 0.09723001264886301 -> -0.45844445715492133 0.077191158541805888
1879
+ tanh0010 tanh -0.10690612157664491 2.861612800856395 -> -0.11519761626257358 -0.28400488355647507
1880
+ tanh0011 tanh -0.91505774192066702 1.5431174597727007 -> -1.381109893068114 0.025160819663709356
1881
+ tanh0012 tanh -0.057433367093792223 0.35491159541246459 -> -0.065220499046696953 0.36921788332369498
1882
+ tanh0013 tanh -1.3540418621233514 0.18969415642242535 -> -0.88235642861151387 0.043764069984411721
1883
+ tanh0014 tanh 0.94864783961003529 -0.11333689578867717 -> 0.74348401861861368 -0.051271042543855221
1884
+ tanh0015 tanh 1.9591698133845488 -0.0029654444904578339 -> 0.9610270776968135 -0.00022664240049212933
1885
+ tanh0016 tanh 1.0949715796669197 -0.24706642853984456 -> 0.81636574501369386 -0.087767436914149954
1886
+ tanh0017 tanh 5770428.2113731047 -3.7160580339833165 -> 1.0 -0.0
1887
+ tanh0018 tanh 1.5576782321399629 -1.0357943787966468 -> 1.0403002384895388 -0.081126347894671463
1888
+ tanh0019 tanh 0.62378536230552961 2.3471393579560216 -> 0.85582499238960363 -0.53569473646842869
1889
+ tanh0020 tanh 17.400628602508025 9.3987059533841979 -> 0.99999999999999845 -8.0175867720530832e-17
1890
+ tanh0021 tanh 0.15026177509871896 0.50630349159505472 -> 0.19367536571827768 0.53849847858853661
1891
+ tanh0022 tanh 0.57433977530711167 1.0071604546265627 -> 1.0857848159262844 0.69139213955872214
1892
+ tanh0023 tanh 0.16291181500449456 0.006972810241567544 -> 0.16149335907551157 0.0067910772903467817
1893
+
1894
+ -- large real part
1895
+ tanh0030 tanh 710 0.13 -> 1.0 0.0
1896
+ tanh0031 tanh -711 7.4000000000000004 -> -1.0 0.0
1897
+ tanh0032 tanh 1000 -2.3199999999999998 -> 1.0 0.0
1898
+ tanh0033 tanh -1.0000000000000001e+300 -9.6699999999999999 -> -1.0 -0.0
1899
+
1900
+ --special values
1901
+ tanh1000 tanh 0.0 0.0 -> 0.0 0.0
1902
+ tanh1001 tanh 0.0 inf -> nan nan invalid
1903
+ tanh1002 tanh 2.3 inf -> nan nan invalid
1904
+ tanh1003 tanh 0.0 nan -> nan nan
1905
+ tanh1004 tanh 2.3 nan -> nan nan
1906
+ tanh1005 tanh inf 0.0 -> 1.0 0.0
1907
+ tanh1006 tanh inf 0.7 -> 1.0 0.0
1908
+ tanh1007 tanh inf 1.4 -> 1.0 0.0
1909
+ tanh1008 tanh inf 2.1 -> 1.0 -0.0
1910
+ tanh1009 tanh inf 2.8 -> 1.0 -0.0
1911
+ tanh1010 tanh inf 3.5 -> 1.0 0.0
1912
+ tanh1011 tanh inf inf -> 1.0 0.0 ignore-imag-sign
1913
+ tanh1012 tanh inf nan -> 1.0 0.0 ignore-imag-sign
1914
+ tanh1013 tanh nan 0.0 -> nan 0.0
1915
+ tanh1014 tanh nan 2.3 -> nan nan
1916
+ tanh1015 tanh nan inf -> nan nan
1917
+ tanh1016 tanh nan nan -> nan nan
1918
+ tanh1017 tanh 0.0 -0.0 -> 0.0 -0.0
1919
+ tanh1018 tanh 0.0 -inf -> nan nan invalid
1920
+ tanh1019 tanh 2.3 -inf -> nan nan invalid
1921
+ tanh1020 tanh inf -0.0 -> 1.0 -0.0
1922
+ tanh1021 tanh inf -0.7 -> 1.0 -0.0
1923
+ tanh1022 tanh inf -1.4 -> 1.0 -0.0
1924
+ tanh1023 tanh inf -2.1 -> 1.0 0.0
1925
+ tanh1024 tanh inf -2.8 -> 1.0 0.0
1926
+ tanh1025 tanh inf -3.5 -> 1.0 -0.0
1927
+ tanh1026 tanh inf -inf -> 1.0 0.0 ignore-imag-sign
1928
+ tanh1027 tanh nan -0.0 -> nan -0.0
1929
+ tanh1028 tanh nan -2.3 -> nan nan
1930
+ tanh1029 tanh nan -inf -> nan nan
1931
+ tanh1030 tanh -0.0 -0.0 -> -0.0 -0.0
1932
+ tanh1031 tanh -0.0 -inf -> nan nan invalid
1933
+ tanh1032 tanh -2.3 -inf -> nan nan invalid
1934
+ tanh1033 tanh -0.0 nan -> nan nan
1935
+ tanh1034 tanh -2.3 nan -> nan nan
1936
+ tanh1035 tanh -inf -0.0 -> -1.0 -0.0
1937
+ tanh1036 tanh -inf -0.7 -> -1.0 -0.0
1938
+ tanh1037 tanh -inf -1.4 -> -1.0 -0.0
1939
+ tanh1038 tanh -inf -2.1 -> -1.0 0.0
1940
+ tanh1039 tanh -inf -2.8 -> -1.0 0.0
1941
+ tanh1040 tanh -inf -3.5 -> -1.0 -0.0
1942
+ tanh1041 tanh -inf -inf -> -1.0 0.0 ignore-imag-sign
1943
+ tanh1042 tanh -inf nan -> -1.0 0.0 ignore-imag-sign
1944
+ tanh1043 tanh -0.0 0.0 -> -0.0 0.0
1945
+ tanh1044 tanh -0.0 inf -> nan nan invalid
1946
+ tanh1045 tanh -2.3 inf -> nan nan invalid
1947
+ tanh1046 tanh -inf 0.0 -> -1.0 0.0
1948
+ tanh1047 tanh -inf 0.7 -> -1.0 0.0
1949
+ tanh1048 tanh -inf 1.4 -> -1.0 0.0
1950
+ tanh1049 tanh -inf 2.1 -> -1.0 -0.0
1951
+ tanh1050 tanh -inf 2.8 -> -1.0 -0.0
1952
+ tanh1051 tanh -inf 3.5 -> -1.0 0.0
1953
+ tanh1052 tanh -inf inf -> -1.0 0.0 ignore-imag-sign
1954
+
1955
+
1956
+ -----------------
1957
+ -- cos: Cosine --
1958
+ -----------------
1959
+
1960
+ -- zeros
1961
+ cos0000 cos 0.0 0.0 -> 1.0 -0.0
1962
+ cos0001 cos 0.0 -0.0 -> 1.0 0.0
1963
+ cos0002 cos -0.0 0.0 -> 1.0 0.0
1964
+ cos0003 cos -0.0 -0.0 -> 1.0 -0.0
1965
+
1966
+ -- random inputs
1967
+ cos0004 cos -2.0689194692073034 -0.0016802181751734313 -> -0.47777827208561469 -0.0014760401501695971
1968
+ cos0005 cos -0.4209627318177977 -1.8238516774258027 -> 2.9010402201444108 -1.2329207042329617
1969
+ cos0006 cos -1.9402181630694557 -2.9751857392891217 -> -3.5465459297970985 -9.1119163586282248
1970
+ cos0007 cos -3.3118320290191616 -0.87871302909286142 -> -1.3911528636565498 0.16878141517391701
1971
+ cos0008 cos -4.9540404623376872 -0.57949232239026827 -> 0.28062445586552065 0.59467861308508008
1972
+ cos0009 cos -0.45374584316245026 1.3950283448373935 -> 1.9247665574290578 0.83004572204761107
1973
+ cos0010 cos -0.42578172040176843 1.2715881615413049 -> 1.7517161459489148 0.67863902697363332
1974
+ cos0011 cos -0.13862985354300136 0.43587635877670328 -> 1.0859880290361912 0.062157548146672272
1975
+ cos0012 cos -0.11073221308966584 9.9384082307326475e-15 -> 0.99387545040722947 1.0982543264065479e-15
1976
+ cos0013 cos -1.5027633662054623e-07 0.0069668060249955498 -> 1.0000242682912412 1.0469545565660995e-09
1977
+ cos0014 cos 4.9728645490503052 -0.00027479808860952822 -> 0.25754011731975501 -0.00026552849549083186
1978
+ cos0015 cos 7.81969303486719 -0.79621523445878783 -> 0.045734882501585063 0.88253139933082991
1979
+ cos0016 cos 0.13272421880766716 -0.74668445308718201 -> 1.2806012244432847 0.10825373267437005
1980
+ cos0017 cos 4.2396521985973274 -2.2178848380884881 -> -2.1165117057056855 -4.0416492444641401
1981
+ cos0018 cos 1.1622206624927296 -0.50400115461197081 -> 0.44884072613370379 0.4823469915034318
1982
+ cos0019 cos 1.628772864620884e-08 0.58205705428979282 -> 1.1742319995791435 -1.0024839481956604e-08
1983
+ cos0020 cos 2.6385212606111241 2.9886107100937296 -> -8.7209475927161417 -4.7748352107199796
1984
+ cos0021 cos 4.8048375263775256 0.0062248852898515658 -> 0.092318702015846243 0.0061983430422306142
1985
+ cos0022 cos 7.9914515433858515 0.71659966615501436 -> -0.17375439906936566 -0.77217043527294582
1986
+ cos0023 cos 0.45124351152540226 1.6992693993812158 -> 2.543477948972237 -1.1528193694875477
1987
+
1988
+ -- special values
1989
+ cos1000 cos -0.0 0.0 -> 1.0 0.0
1990
+ cos1001 cos -inf 0.0 -> nan 0.0 invalid ignore-imag-sign
1991
+ cos1002 cos nan 0.0 -> nan 0.0 ignore-imag-sign
1992
+ cos1003 cos -inf 2.2999999999999998 -> nan nan invalid
1993
+ cos1004 cos nan 2.2999999999999998 -> nan nan
1994
+ cos1005 cos -0.0 inf -> inf 0.0
1995
+ cos1006 cos -1.3999999999999999 inf -> inf inf
1996
+ cos1007 cos -2.7999999999999998 inf -> -inf inf
1997
+ cos1008 cos -4.2000000000000002 inf -> -inf -inf
1998
+ cos1009 cos -5.5999999999999996 inf -> inf -inf
1999
+ cos1010 cos -7.0 inf -> inf inf
2000
+ cos1011 cos -inf inf -> inf nan invalid ignore-real-sign
2001
+ cos1012 cos nan inf -> inf nan
2002
+ cos1013 cos -0.0 nan -> nan 0.0 ignore-imag-sign
2003
+ cos1014 cos -2.2999999999999998 nan -> nan nan
2004
+ cos1015 cos -inf nan -> nan nan
2005
+ cos1016 cos nan nan -> nan nan
2006
+ cos1017 cos 0.0 0.0 -> 1.0 -0.0
2007
+ cos1018 cos inf 0.0 -> nan 0.0 invalid ignore-imag-sign
2008
+ cos1019 cos inf 2.2999999999999998 -> nan nan invalid
2009
+ cos1020 cos 0.0 inf -> inf -0.0
2010
+ cos1021 cos 1.3999999999999999 inf -> inf -inf
2011
+ cos1022 cos 2.7999999999999998 inf -> -inf -inf
2012
+ cos1023 cos 4.2000000000000002 inf -> -inf inf
2013
+ cos1024 cos 5.5999999999999996 inf -> inf inf
2014
+ cos1025 cos 7.0 inf -> inf -inf
2015
+ cos1026 cos inf inf -> inf nan invalid ignore-real-sign
2016
+ cos1027 cos 0.0 nan -> nan 0.0 ignore-imag-sign
2017
+ cos1028 cos 2.2999999999999998 nan -> nan nan
2018
+ cos1029 cos inf nan -> nan nan
2019
+ cos1030 cos 0.0 -0.0 -> 1.0 0.0
2020
+ cos1031 cos inf -0.0 -> nan 0.0 invalid ignore-imag-sign
2021
+ cos1032 cos nan -0.0 -> nan 0.0 ignore-imag-sign
2022
+ cos1033 cos inf -2.2999999999999998 -> nan nan invalid
2023
+ cos1034 cos nan -2.2999999999999998 -> nan nan
2024
+ cos1035 cos 0.0 -inf -> inf 0.0
2025
+ cos1036 cos 1.3999999999999999 -inf -> inf inf
2026
+ cos1037 cos 2.7999999999999998 -inf -> -inf inf
2027
+ cos1038 cos 4.2000000000000002 -inf -> -inf -inf
2028
+ cos1039 cos 5.5999999999999996 -inf -> inf -inf
2029
+ cos1040 cos 7.0 -inf -> inf inf
2030
+ cos1041 cos inf -inf -> inf nan invalid ignore-real-sign
2031
+ cos1042 cos nan -inf -> inf nan
2032
+ cos1043 cos -0.0 -0.0 -> 1.0 -0.0
2033
+ cos1044 cos -inf -0.0 -> nan 0.0 invalid ignore-imag-sign
2034
+ cos1045 cos -inf -2.2999999999999998 -> nan nan invalid
2035
+ cos1046 cos -0.0 -inf -> inf -0.0
2036
+ cos1047 cos -1.3999999999999999 -inf -> inf -inf
2037
+ cos1048 cos -2.7999999999999998 -inf -> -inf -inf
2038
+ cos1049 cos -4.2000000000000002 -inf -> -inf inf
2039
+ cos1050 cos -5.5999999999999996 -inf -> inf inf
2040
+ cos1051 cos -7.0 -inf -> inf -inf
2041
+ cos1052 cos -inf -inf -> inf nan invalid ignore-real-sign
2042
+
2043
+
2044
+ ---------------
2045
+ -- sin: Sine --
2046
+ ---------------
2047
+
2048
+ -- zeros
2049
+ sin0000 sin 0.0 0.0 -> 0.0 0.0
2050
+ sin0001 sin 0.0 -0.0 -> 0.0 -0.0
2051
+ sin0002 sin -0.0 0.0 -> -0.0 0.0
2052
+ sin0003 sin -0.0 -0.0 -> -0.0 -0.0
2053
+
2054
+ -- random inputs
2055
+ sin0004 sin -0.18691829163163759 -0.74388741985507034 -> -0.2396636733773444 -0.80023231101856751
2056
+ sin0005 sin -0.45127453702459158 -461.81339920716164 -> -7.9722299331077877e+199 -1.6450205811004628e+200
2057
+ sin0006 sin -0.47669228345768921 -2.7369936564987514 -> -3.557238022267124 -6.8308030771226615
2058
+ sin0007 sin -0.31024285525950857 -1.4869219939188296 -> -0.70972676047175209 -1.9985029635426839
2059
+ sin0008 sin -4.4194573407025608 -1.405999210989288 -> 2.0702480800802685 0.55362250792180601
2060
+ sin0009 sin -1.7810832046434898e-05 0.0016439555384379083 -> -1.7810856113185261e-05 0.0016439562786668375
2061
+ sin0010 sin -0.8200017874897666 0.61724876887771929 -> -0.8749078195948865 0.44835295550987758
2062
+ sin0011 sin -1.4536502806107114 0.63998575534150415 -> -1.2035709929437679 0.080012187489163708
2063
+ sin0012 sin -2.2653412155506079 0.13172760685583729 -> -0.77502093809190431 -0.084554426868229532
2064
+ sin0013 sin -0.02613983069491858 0.18404766597776073 -> -0.026580778863127943 0.18502525396735642
2065
+ sin0014 sin 1.5743065001054617 -0.53125574272642029 -> 1.1444596332092725 0.0019537598099352077
2066
+ sin0015 sin 7.3833101791283289e-20 -0.16453221324236217 -> 7.4834720674379429e-20 -0.16527555646466915
2067
+ sin0016 sin 0.34763834641254038 -2.8377416421089565 -> 2.918883541504663 -8.0002718053250224
2068
+ sin0017 sin 0.077105785180421563 -0.090056027316200674 -> 0.077341973814471304 -0.089909869380524587
2069
+ sin0018 sin 3.9063227798142329e-17 -0.05954098654295524 -> 3.9132490348956512e-17 -0.059576172859837351
2070
+ sin0019 sin 0.57333917932544598 8.7785221430594696e-06 -> 0.54244029338302935 7.3747869125301368e-06
2071
+ sin0020 sin 0.024861722816513169 0.33044620756118515 -> 0.026228801369651 0.3363889671570689
2072
+ sin0021 sin 1.4342727387492671 0.81361889790284347 -> 1.3370960060947923 0.12336137961387163
2073
+ sin0022 sin 1.1518087354403725 4.8597235966150558 -> 58.919141989603041 26.237003403758852
2074
+ sin0023 sin 0.00087773078406649192 34.792379211312095 -> 565548145569.38245 644329685822700.62
2075
+
2076
+ -- special values
2077
+ sin1000 sin -0.0 0.0 -> -0.0 0.0
2078
+ sin1001 sin -inf 0.0 -> nan 0.0 invalid ignore-imag-sign
2079
+ sin1002 sin nan 0.0 -> nan 0.0 ignore-imag-sign
2080
+ sin1003 sin -inf 2.2999999999999998 -> nan nan invalid
2081
+ sin1004 sin nan 2.2999999999999998 -> nan nan
2082
+ sin1005 sin -0.0 inf -> -0.0 inf
2083
+ sin1006 sin -1.3999999999999999 inf -> -inf inf
2084
+ sin1007 sin -2.7999999999999998 inf -> -inf -inf
2085
+ sin1008 sin -4.2000000000000002 inf -> inf -inf
2086
+ sin1009 sin -5.5999999999999996 inf -> inf inf
2087
+ sin1010 sin -7.0 inf -> -inf inf
2088
+ sin1011 sin -inf inf -> nan inf invalid ignore-imag-sign
2089
+ sin1012 sin nan inf -> nan inf ignore-imag-sign
2090
+ sin1013 sin -0.0 nan -> -0.0 nan
2091
+ sin1014 sin -2.2999999999999998 nan -> nan nan
2092
+ sin1015 sin -inf nan -> nan nan
2093
+ sin1016 sin nan nan -> nan nan
2094
+ sin1017 sin 0.0 0.0 -> 0.0 0.0
2095
+ sin1018 sin inf 0.0 -> nan 0.0 invalid ignore-imag-sign
2096
+ sin1019 sin inf 2.2999999999999998 -> nan nan invalid
2097
+ sin1020 sin 0.0 inf -> 0.0 inf
2098
+ sin1021 sin 1.3999999999999999 inf -> inf inf
2099
+ sin1022 sin 2.7999999999999998 inf -> inf -inf
2100
+ sin1023 sin 4.2000000000000002 inf -> -inf -inf
2101
+ sin1024 sin 5.5999999999999996 inf -> -inf inf
2102
+ sin1025 sin 7.0 inf -> inf inf
2103
+ sin1026 sin inf inf -> nan inf invalid ignore-imag-sign
2104
+ sin1027 sin 0.0 nan -> 0.0 nan
2105
+ sin1028 sin 2.2999999999999998 nan -> nan nan
2106
+ sin1029 sin inf nan -> nan nan
2107
+ sin1030 sin 0.0 -0.0 -> 0.0 -0.0
2108
+ sin1031 sin inf -0.0 -> nan 0.0 invalid ignore-imag-sign
2109
+ sin1032 sin nan -0.0 -> nan 0.0 ignore-imag-sign
2110
+ sin1033 sin inf -2.2999999999999998 -> nan nan invalid
2111
+ sin1034 sin nan -2.2999999999999998 -> nan nan
2112
+ sin1035 sin 0.0 -inf -> 0.0 -inf
2113
+ sin1036 sin 1.3999999999999999 -inf -> inf -inf
2114
+ sin1037 sin 2.7999999999999998 -inf -> inf inf
2115
+ sin1038 sin 4.2000000000000002 -inf -> -inf inf
2116
+ sin1039 sin 5.5999999999999996 -inf -> -inf -inf
2117
+ sin1040 sin 7.0 -inf -> inf -inf
2118
+ sin1041 sin inf -inf -> nan inf invalid ignore-imag-sign
2119
+ sin1042 sin nan -inf -> nan inf ignore-imag-sign
2120
+ sin1043 sin -0.0 -0.0 -> -0.0 -0.0
2121
+ sin1044 sin -inf -0.0 -> nan 0.0 invalid ignore-imag-sign
2122
+ sin1045 sin -inf -2.2999999999999998 -> nan nan invalid
2123
+ sin1046 sin -0.0 -inf -> -0.0 -inf
2124
+ sin1047 sin -1.3999999999999999 -inf -> -inf -inf
2125
+ sin1048 sin -2.7999999999999998 -inf -> -inf inf
2126
+ sin1049 sin -4.2000000000000002 -inf -> inf inf
2127
+ sin1050 sin -5.5999999999999996 -inf -> inf -inf
2128
+ sin1051 sin -7.0 -inf -> -inf -inf
2129
+ sin1052 sin -inf -inf -> nan inf invalid ignore-imag-sign
2130
+
2131
+
2132
+ ------------------
2133
+ -- tan: Tangent --
2134
+ ------------------
2135
+
2136
+ -- zeros
2137
+ tan0000 tan 0.0 0.0 -> 0.0 0.0
2138
+ tan0001 tan 0.0 -0.0 -> 0.0 -0.0
2139
+ tan0002 tan -0.0 0.0 -> -0.0 0.0
2140
+ tan0003 tan -0.0 -0.0 -> -0.0 -0.0
2141
+
2142
+ -- random inputs
2143
+ tan0004 tan -0.56378561833861074 -1.7110276237187664e+73 -> -0.0 -1.0
2144
+ tan0005 tan -3.5451633993471915e-12 -2.855471863564059 -> -4.6622441304889575e-14 -0.99340273843093951
2145
+ tan0006 tan -2.502442719638696 -0.26742234390504221 -> 0.66735215252994995 -0.39078997935420956
2146
+ tan0007 tan -0.87639597720371365 -55.586225523280206 -> -1.0285264565948176e-48 -1.0
2147
+ tan0008 tan -0.015783869596427243 -520.05944436039272 -> -0.0 -1.0
2148
+ tan0009 tan -0.84643549990725164 2.0749097935396343 -> -0.031412661676959573 1.0033548479526764
2149
+ tan0010 tan -0.43613792248559646 8.1082741629458059 -> -1.3879848444644593e-07 0.99999988344224011
2150
+ tan0011 tan -1.0820906367833114 0.28571868992480248 -> -1.3622485737936536 0.99089269377971245
2151
+ tan0012 tan -1.1477859580220084 1.9021637002708041 -> -0.034348450042071196 1.0293954097901687
2152
+ tan0013 tan -0.12465543176953409 3.0606851016344815e-05 -> -0.12530514290387343 3.1087420769945479e-05
2153
+ tan0014 tan 3.7582848717525343 -692787020.44038939 -> 0.0 -1.0
2154
+ tan0015 tan 2.2321967655142176e-06 -10.090069423008169 -> 1.5369846120622643e-14 -0.99999999655723759
2155
+ tan0016 tan 0.88371172390245012 -1.1635053630132823 -> 0.19705017118625889 -1.0196452280843129
2156
+ tan0017 tan 2.1347414231849267 -1.9311339960416831 -> -0.038663576915982524 -1.0174399993980778
2157
+ tan0018 tan 5.9027945255899974 -2.1574195684607135e-183 -> -0.39986591539281496 -2.5023753167976915e-183
2158
+ tan0019 tan 0.44811489490805362 683216075670.07556 -> 0.0 1.0
2159
+ tan0020 tan 4.1459766396068325 12.523017205605756 -> 2.4022514758988068e-11 1.0000000000112499
2160
+ tan0021 tan 1.7809617968443272 1.5052381702853379 -> -0.044066222118946903 1.0932684517702778
2161
+ tan0022 tan 1.1615313900880577 1.7956298728647107 -> 0.041793186826390362 1.0375339546034792
2162
+ tan0023 tan 0.067014779477908945 5.8517361577457097 -> 2.2088639754800034e-06 0.9999836182420061
2163
+
2164
+ -- special values
2165
+ tan1000 tan -0.0 0.0 -> -0.0 0.0
2166
+ tan1001 tan -inf 0.0 -> nan nan invalid
2167
+ tan1002 tan -inf 2.2999999999999998 -> nan nan invalid
2168
+ tan1003 tan nan 0.0 -> nan nan
2169
+ tan1004 tan nan 2.2999999999999998 -> nan nan
2170
+ tan1005 tan -0.0 inf -> -0.0 1.0
2171
+ tan1006 tan -0.69999999999999996 inf -> -0.0 1.0
2172
+ tan1007 tan -1.3999999999999999 inf -> -0.0 1.0
2173
+ tan1008 tan -2.1000000000000001 inf -> 0.0 1.0
2174
+ tan1009 tan -2.7999999999999998 inf -> 0.0 1.0
2175
+ tan1010 tan -3.5 inf -> -0.0 1.0
2176
+ tan1011 tan -inf inf -> -0.0 1.0 ignore-real-sign
2177
+ tan1012 tan nan inf -> -0.0 1.0 ignore-real-sign
2178
+ tan1013 tan -0.0 nan -> -0.0 nan
2179
+ tan1014 tan -2.2999999999999998 nan -> nan nan
2180
+ tan1015 tan -inf nan -> nan nan
2181
+ tan1016 tan nan nan -> nan nan
2182
+ tan1017 tan 0.0 0.0 -> 0.0 0.0
2183
+ tan1018 tan inf 0.0 -> nan nan invalid
2184
+ tan1019 tan inf 2.2999999999999998 -> nan nan invalid
2185
+ tan1020 tan 0.0 inf -> 0.0 1.0
2186
+ tan1021 tan 0.69999999999999996 inf -> 0.0 1.0
2187
+ tan1022 tan 1.3999999999999999 inf -> 0.0 1.0
2188
+ tan1023 tan 2.1000000000000001 inf -> -0.0 1.0
2189
+ tan1024 tan 2.7999999999999998 inf -> -0.0 1.0
2190
+ tan1025 tan 3.5 inf -> 0.0 1.0
2191
+ tan1026 tan inf inf -> -0.0 1.0 ignore-real-sign
2192
+ tan1027 tan 0.0 nan -> 0.0 nan
2193
+ tan1028 tan 2.2999999999999998 nan -> nan nan
2194
+ tan1029 tan inf nan -> nan nan
2195
+ tan1030 tan 0.0 -0.0 -> 0.0 -0.0
2196
+ tan1031 tan inf -0.0 -> nan nan invalid
2197
+ tan1032 tan inf -2.2999999999999998 -> nan nan invalid
2198
+ tan1033 tan nan -0.0 -> nan nan
2199
+ tan1034 tan nan -2.2999999999999998 -> nan nan
2200
+ tan1035 tan 0.0 -inf -> 0.0 -1.0
2201
+ tan1036 tan 0.69999999999999996 -inf -> 0.0 -1.0
2202
+ tan1037 tan 1.3999999999999999 -inf -> 0.0 -1.0
2203
+ tan1038 tan 2.1000000000000001 -inf -> -0.0 -1.0
2204
+ tan1039 tan 2.7999999999999998 -inf -> -0.0 -1.0
2205
+ tan1040 tan 3.5 -inf -> 0.0 -1.0
2206
+ tan1041 tan inf -inf -> -0.0 -1.0 ignore-real-sign
2207
+ tan1042 tan nan -inf -> -0.0 -1.0 ignore-real-sign
2208
+ tan1043 tan -0.0 -0.0 -> -0.0 -0.0
2209
+ tan1044 tan -inf -0.0 -> nan nan invalid
2210
+ tan1045 tan -inf -2.2999999999999998 -> nan nan invalid
2211
+ tan1046 tan -0.0 -inf -> -0.0 -1.0
2212
+ tan1047 tan -0.69999999999999996 -inf -> -0.0 -1.0
2213
+ tan1048 tan -1.3999999999999999 -inf -> -0.0 -1.0
2214
+ tan1049 tan -2.1000000000000001 -inf -> 0.0 -1.0
2215
+ tan1050 tan -2.7999999999999998 -inf -> 0.0 -1.0
2216
+ tan1051 tan -3.5 -inf -> -0.0 -1.0
2217
+ tan1052 tan -inf -inf -> -0.0 -1.0 ignore-real-sign
2218
+
2219
+
2220
+ ------------------------------------------------------------------------
2221
+ -- rect: Conversion from polar coordinates to rectangular coordinates --
2222
+ ------------------------------------------------------------------------
2223
+ --
2224
+ -- For cmath.rect, we can use the same testcase syntax as for the
2225
+ -- complex -> complex functions above, but here the input arguments
2226
+ -- should be interpreted as a pair of floating-point numbers rather
2227
+ -- than the real and imaginary parts of a complex number.
2228
+ --
2229
+ -- Here are the 'spirit of C99' rules for rect. First, the short
2230
+ -- version:
2231
+ --
2232
+ -- rect(x, t) = exp(log(x)+it) for positive-signed x
2233
+ -- rect(x, t) = -exp(log(-x)+it) for negative-signed x
2234
+ -- rect(nan, t) = exp(nan + it), except that in rect(nan, +-0) the
2235
+ -- sign of the imaginary part is unspecified.
2236
+ --
2237
+ -- and now the long version:
2238
+ --
2239
+ -- rect(x, -t) = conj(rect(x, t)) for all x and t
2240
+ -- rect(-x, t) = -rect(x, t) for all x and t
2241
+ -- rect(+0, +0) returns +0 + i0
2242
+ -- rect(+0, inf) returns +- 0 +- i0, where the signs of the real and
2243
+ -- imaginary parts are unspecified.
2244
+ -- rect(x, inf) returns NaN + i NaN and raises the "invalid"
2245
+ -- floating-point exception, for finite nonzero x.
2246
+ -- rect(inf, inf) returns +-inf + i NaN and raises the "invalid"
2247
+ -- floating-point exception (where the sign of the real part of the
2248
+ -- result is unspecified).
2249
+ -- rect(inf, +0) returns inf+i0
2250
+ -- rect(inf, x) returns inf*cis(x), for finite nonzero x
2251
+ -- rect(inf, NaN) returns +-inf+i NaN, where the sign of the real part
2252
+ -- of the result is unspecified.
2253
+ -- rect(NaN, x) returns NaN + i NaN for all nonzero numbers (including
2254
+ -- infinities) x
2255
+ -- rect(NaN, 0) returns NaN +- i0, where the sign of the imaginary
2256
+ -- part is unspecified
2257
+ -- rect(NaN, NaN) returns NaN + i NaN
2258
+ -- rect(x, NaN) returns NaN + i NaN for finite nonzero x
2259
+ -- rect(+0, NaN) return +-0 +- i0, where the signs of the real and
2260
+ -- imaginary parts are unspecified.
2261
+
2262
+ -- special values
2263
+ rect1000 rect 0.0 0.0 -> 0.0 0.0
2264
+ rect1001 rect 0.0 inf -> 0.0 0.0 ignore-real-sign ignore-imag-sign
2265
+ rect1002 rect 2.3 inf -> nan nan invalid
2266
+ rect1003 rect inf inf -> inf nan invalid ignore-real-sign
2267
+ rect1004 rect inf 0.0 -> inf 0.0
2268
+ rect1005 rect inf 1.4 -> inf inf
2269
+ rect1006 rect inf 2.8 -> -inf inf
2270
+ rect1007 rect inf 4.2 -> -inf -inf
2271
+ rect1008 rect inf 5.6 -> inf -inf
2272
+ rect1009 rect inf 7.0 -> inf inf
2273
+ rect1010 rect nan 0.0 -> nan 0.0 ignore-imag-sign
2274
+ rect1011 rect nan 2.3 -> nan nan
2275
+ rect1012 rect nan inf -> nan nan
2276
+ rect1013 rect nan nan -> nan nan
2277
+ rect1014 rect inf nan -> inf nan ignore-real-sign
2278
+ rect1015 rect 2.3 nan -> nan nan
2279
+ rect1016 rect 0.0 nan -> 0.0 0.0 ignore-real-sign ignore-imag-sign
2280
+ rect1017 rect 0.0 -0.0 -> 0.0 -0.0
2281
+ rect1018 rect 0.0 -inf -> 0.0 0.0 ignore-real-sign ignore-imag-sign
2282
+ rect1019 rect 2.3 -inf -> nan nan invalid
2283
+ rect1020 rect inf -inf -> inf nan invalid ignore-real-sign
2284
+ rect1021 rect inf -0.0 -> inf -0.0
2285
+ rect1022 rect inf -1.4 -> inf -inf
2286
+ rect1023 rect inf -2.8 -> -inf -inf
2287
+ rect1024 rect inf -4.2 -> -inf inf
2288
+ rect1025 rect inf -5.6 -> inf inf
2289
+ rect1026 rect inf -7.0 -> inf -inf
2290
+ rect1027 rect nan -0.0 -> nan 0.0 ignore-imag-sign
2291
+ rect1028 rect nan -2.3 -> nan nan
2292
+ rect1029 rect nan -inf -> nan nan
2293
+ rect1030 rect -0.0 0.0 -> -0.0 -0.0
2294
+ rect1031 rect -0.0 inf -> 0.0 0.0 ignore-real-sign ignore-imag-sign
2295
+ rect1032 rect -2.3 inf -> nan nan invalid
2296
+ rect1033 rect -inf inf -> -inf nan invalid ignore-real-sign
2297
+ rect1034 rect -inf 0.0 -> -inf -0.0
2298
+ rect1035 rect -inf 1.4 -> -inf -inf
2299
+ rect1036 rect -inf 2.8 -> inf -inf
2300
+ rect1037 rect -inf 4.2 -> inf inf
2301
+ rect1038 rect -inf 5.6 -> -inf inf
2302
+ rect1039 rect -inf 7.0 -> -inf -inf
2303
+ rect1040 rect -inf nan -> inf nan ignore-real-sign
2304
+ rect1041 rect -2.3 nan -> nan nan
2305
+ rect1042 rect -0.0 nan -> 0.0 0.0 ignore-real-sign ignore-imag-sign
2306
+ rect1043 rect -0.0 -0.0 -> -0.0 0.0
2307
+ rect1044 rect -0.0 -inf -> 0.0 0.0 ignore-real-sign ignore-imag-sign
2308
+ rect1045 rect -2.3 -inf -> nan nan invalid
2309
+ rect1046 rect -inf -inf -> -inf nan invalid ignore-real-sign
2310
+ rect1047 rect -inf -0.0 -> -inf 0.0
2311
+ rect1048 rect -inf -1.4 -> -inf inf
2312
+ rect1049 rect -inf -2.8 -> inf inf
2313
+ rect1050 rect -inf -4.2 -> inf -inf
2314
+ rect1051 rect -inf -5.6 -> -inf -inf
2315
+ rect1052 rect -inf -7.0 -> -inf inf
2316
+
2317
+ -------------------------------------------------------------------------
2318
+ -- polar: Conversion from rectangular coordinates to polar coordinates --
2319
+ -------------------------------------------------------------------------
2320
+ --
2321
+ -- For cmath.polar, we can use the same testcase syntax as for the
2322
+ -- complex -> complex functions above, but here the output arguments
2323
+ -- should be interpreted as a pair of floating-point numbers rather
2324
+ -- than the real and imaginary parts of a complex number.
2325
+ --
2326
+ -- Annex G of the C99 standard describes fully both the real and
2327
+ -- imaginary parts of polar (as cabs and carg, respectively, which in turn
2328
+ -- are defined in terms of the functions hypot and atan2).
2329
+
2330
+ -- overflow
2331
+ polar0100 polar 1.4e308 1.4e308 -> inf 0.78539816339744828 overflow
2332
+
2333
+ -- special values
2334
+ polar1000 polar 0.0 0.0 -> 0.0 0.0
2335
+ polar1001 polar 0.0 -0.0 -> 0.0 -0.0
2336
+ polar1002 polar -0.0 0.0 -> 0.0 3.1415926535897931
2337
+ polar1003 polar -0.0 -0.0 -> 0.0 -3.1415926535897931
2338
+ polar1004 polar inf 0.0 -> inf 0.0
2339
+ polar1005 polar inf 2.3 -> inf 0.0
2340
+ polar1006 polar inf inf -> inf 0.78539816339744828
2341
+ polar1007 polar 2.3 inf -> inf 1.5707963267948966
2342
+ polar1008 polar 0.0 inf -> inf 1.5707963267948966
2343
+ polar1009 polar -0.0 inf -> inf 1.5707963267948966
2344
+ polar1010 polar -2.3 inf -> inf 1.5707963267948966
2345
+ polar1011 polar -inf inf -> inf 2.3561944901923448
2346
+ polar1012 polar -inf 2.3 -> inf 3.1415926535897931
2347
+ polar1013 polar -inf 0.0 -> inf 3.1415926535897931
2348
+ polar1014 polar -inf -0.0 -> inf -3.1415926535897931
2349
+ polar1015 polar -inf -2.3 -> inf -3.1415926535897931
2350
+ polar1016 polar -inf -inf -> inf -2.3561944901923448
2351
+ polar1017 polar -2.3 -inf -> inf -1.5707963267948966
2352
+ polar1018 polar -0.0 -inf -> inf -1.5707963267948966
2353
+ polar1019 polar 0.0 -inf -> inf -1.5707963267948966
2354
+ polar1020 polar 2.3 -inf -> inf -1.5707963267948966
2355
+ polar1021 polar inf -inf -> inf -0.78539816339744828
2356
+ polar1022 polar inf -2.3 -> inf -0.0
2357
+ polar1023 polar inf -0.0 -> inf -0.0
2358
+ polar1024 polar nan -inf -> inf nan
2359
+ polar1025 polar nan -2.3 -> nan nan
2360
+ polar1026 polar nan -0.0 -> nan nan
2361
+ polar1027 polar nan 0.0 -> nan nan
2362
+ polar1028 polar nan 2.3 -> nan nan
2363
+ polar1029 polar nan inf -> inf nan
2364
+ polar1030 polar nan nan -> nan nan
2365
+ polar1031 polar inf nan -> inf nan
2366
+ polar1032 polar 2.3 nan -> nan nan
2367
+ polar1033 polar 0.0 nan -> nan nan
2368
+ polar1034 polar -0.0 nan -> nan nan
2369
+ polar1035 polar -2.3 nan -> nan nan
2370
+ polar1036 polar -inf nan -> inf nan