np.ones((2,2), dtype=np.int16)
| 125 | |
| 126 | // np.ones((2,2), dtype=np.int16) |
| 127 | void NotebookTest::testParserPython05() { |
| 128 | QString input = QStringLiteral("array([[1, 1], [1, 1]], dtype=int16)"); |
| 129 | VariableParser parser(QStringLiteral("python"), input); |
| 130 | |
| 131 | QCOMPARE(parser.isParsed(), false); |
| 132 | } |
| 133 | |
| 134 | void NotebookTest::testParserPython06() { |
| 135 | // Testing datetime ms |