File: test_numpy.py

package info (click to toggle)
python-ruyaml 0.92.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,732 kB
  • sloc: python: 19,399; makefile: 200; sh: 13
file content (24 lines) | stat: -rw-r--r-- 523 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# coding: utf-8

#  try:
#      import numpy
#  except:  # NOQA
#      numpy = None


#  def Xtest_numpy() -> None:
#      import ruyaml
#
#      if numpy is None:
#          return
#      data = numpy.arange(10)
#      print('data', type(data), data)
#
#      buf = io.BytesIO()
#      ruyaml.dump(data)  # needs updating to use buffer
#      yaml_str = buf.getvalue().decode('utf-8')
#      datb = ruyaml.load(yaml_str)
#      print('datb', type(datb), datb)
#
#      print('\nYAML', yaml_str)
#      assert data == datb