Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
이번 PR에는 다음의 변경이 포함되었습니다.
morphes
: 전체 형태소 목록 반환nouns
: 명사 형태소 목록 반환pos
: 전체 형태소 및 품사를Token
목록으로 반환core.Komoran
내 일부 메소드의 동작을 변경합니다.get_morphes_by_tags()
의tag_list
인자의 기본 값을[]
에서None
으로 변경합니다.get_morphes_by_tags()
의tag_list
인자가 주어지지 않았을 때 전체 형태소를 반환하도록 합니다.type.Pos
의 매직 메소드 추가 및 기본 인스턴스를 삭제합니다.type.Pos
가dict
처럼 동작할 수 있도록 매직 메소드를 더 추가합니다.type.pos_table
을 삭제하고,type.Token
과core.Komoran
내에 각각Pos
의 인스턴스를 멤버로 생성합니다.