Merge pull request #72 from dok/master

Resolve #71
This commit is contained in:
Nicolas P. Rougier 2018-11-05 16:07:50 +01:00 committed by GitHub
commit afff4f8edb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -339,7 +339,7 @@
"print(np.nan == np.nan)\n",
"print(np.inf > np.nan)\n",
"print(np.nan - np.nan)\n",
"print(np.nan in set([np.nan]))\n"
"print(np.nan in set([np.nan]))\n",
"print(0.3 == 3 * 0.1)"
]
},

View File

@ -301,7 +301,7 @@
"np.nan == np.nan\n",
"np.inf > np.nan\n",
"np.nan - np.nan\n",
"np.nan in set([np.nan])\n"
"np.nan in set([np.nan])\n",
"0.3 == 3 * 0.1\n",
"```"
]