Skip to content

Commit

Permalink
v1.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tb69wn6127 committed Jun 5, 2015
1 parent 208b415 commit b9cc5cc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
5 changes: 5 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
변경사항
==============

v1.13.1
-------

+ ufp.repr 모듈의 make_object 함수에서 항상 형식명이 str로 설정되던 버그 수정. [`tb69wn6127`_]

v1.13
-------

Expand Down
2 changes: 1 addition & 1 deletion ufp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from __future__ import unicode_literals, absolute_import

__title__ = 'ufp'
__version__ = '1.13'
__version__ = '1.13.1'
__author__ = '별님'
__author_email__ = 'w7dn1ng75r@gmail.com'
__license__ = 'GPL v3'
Expand Down
8 changes: 0 additions & 8 deletions ufp/repr.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,6 @@ def make_object(type_name, values=[], orderd_items=[], items={}, **kwargs):
:return: u'{type_name}({value}, ..., {key}={value}, ...)'
:rtype: unicode
"""
#형식명 설정
if isinstance(type_name, unicode):
pass
elif isinstance(type_name, object):
type_name = type(type_name).__name__
else:
type_name = type_name.__class__.__name__

#값 목록 작성
def convert(value):
if isinstance(value, unicode):
Expand Down

0 comments on commit b9cc5cc

Please sign in to comment.