Skip to content

Commit

Permalink
Support for external PyYAML and Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
mottosso committed Apr 28, 2019
1 parent 1d3b846 commit bbca40b
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/rez/vendor/yaml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,7 @@
from dumper import *

__version__ = '3.10'

try:
from cyaml import *
__with_libyaml__ = True
except ImportError:
__with_libyaml__ = False
__with_libyaml__ = False

def scan(stream, Loader=Loader):
"""
Expand Down

0 comments on commit bbca40b

Please sign in to comment.