Custom Query (121 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (88 - 90 of 121)

Ticket Resolution Summary Owner Reporter
#118 fixed Strange case where yaml.load should error but actually loads xi xi

Reported by xi, 4 years ago.

Description
>>> yaml.load('-\n-3')
[-3]

Adding a newline actually does produce the desired error:

>>> yaml.load('-\n-3\n')
...
yaml.scanner.ScannerError: while scanning a simple key
  in "<string>", line 2, column 1:
    -3
    ^
could not found expected ':'
  in "<string>", line 3, column 1:
    
    ^
#120 fixed typo in yaml.__init__.py xi py4fun@…

Reported by py4fun@…, 4 years ago.

Description
line 46 in  yaml.__init__.py contains a typo: "corresponSing" instead of "corresponDing"
#122 wontfix Bool tag doesn't accept all defined variants xi anonymous

Reported by anonymous, 4 years ago.

Description

One of the examples listed at  http://yaml.org/type/bool.html will fail:

>>> yaml.load('!!bool y')
Traceback (most recent call last):
 ...
KeyError: u'y'
Note: See TracQuery for help on using queries.