-
Notifications
You must be signed in to change notification settings - Fork 0
truffle python core draft #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Update README.md
의존성 관리를 위해 pipenv 를 써보면 어떨까요? Python 모듈을 만들 때 안 써봐서 잘 모르겠지만 |
class TruffleException: | ||
class_name: str | ||
message: str | ||
elements: str # Element 클래스 쓸 수 있나? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
타입 클래스로 쓸 수 있어요
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
나도 내가 무슨말을 써놓은건가 싶었는데,,
- 아래 kotlin
StackTracement
클래스 equivalent 가 있나 - 파이썬에서도 데이터 클래스는 알아서 직렬화 잘 되나
가 의문이었는듯 ㅎㅎ
data class TruffleException(
val className: String,
val message: String?,
val elements: List<Element>,
) {
data class Element(
val className: String,
val methodName: String,
val lineNumber: Int,
val fileName: String,
val isInAppInclude: Boolean,
)
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ㅋㅋㅋ 언제 되나요 @Jhvictor4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 😎
@woohm402 무지성 LGTM ㅋㅋㅋㅋㅋㅋㅋ |
이제 파이썬 생태계를 거의 모른다고 봐도 되어서
이렇게 하는게 맞는지 잘 모르겠지만 올려봅니다.