Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/yaml/representer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
'RepresenterError']

from error import *

from nodes import *

import datetime

import sys, copy_reg, types
import copy_reg, types

class RepresenterError(YAMLError):
pass
Expand Down
2 changes: 1 addition & 1 deletion lib3/yaml/representer.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .error import *
from .nodes import *

import datetime, sys, copyreg, types, base64, collections
import datetime, copyreg, types, base64, collections

class RepresenterError(YAMLError):
pass
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@
from distutils.core import setup, Command
from distutils.core import Distribution as _Distribution
from distutils.core import Extension as _Extension
from distutils.dir_util import mkpath
from distutils.command.build_ext import build_ext as _build_ext
from distutils.command.bdist_rpm import bdist_rpm as _bdist_rpm
from distutils.errors import DistutilsError, CompileError, LinkError, DistutilsPlatformError
Expand Down