-
Notifications
You must be signed in to change notification settings - Fork 6
Porting based on Python 3 #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
Open
ppdha82
wants to merge
23
commits into
jangson:master
Choose a base branch
from
ppdha82:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- caution: 프로그램 실행되지만, maze load 오동작함
- SetPyData => SetItemData
- thread module 을 threading 으로 변경 - BeginDrawing, EndDrawing 함수 deprecated 되어 사용 안함
- inspect 와 logging 모듈을 이용한 디버그 로그 기능 추가 - load Maze list 실행할 때마다 directory 가 결과 창에 지속적으로 증가하는 문제 수정
- 좌표 값 을 float 일 경우에 강제로 int 형으로 좌표 값을 사용하도록 수정. 코드 재수정 필요.
- 파일 이동: edit.png, erase.png, fit.png - 파일 삭제: mouse.png
- wxPython 설치 방법 추가 (README.md) - python 버전이 다른 경우 설치 안되는 로그 추가 (README.md)
- 실행 오류 발생했을 때 해결 방법 추가 (README.md)
- 코드 분석 자료 업로드 (maze_analysis.drawio) - threading 모듈에서 _start_new_thread 함수가 _thread 모듈에서 정의되어 _thread 로 변경됨 (maze.py, mouse.py)
- 코드 분석 내용 업로드 (maze_analysis.drawio) - 주석 코드를 조건문으로 실행 안되도록 수정함 (maze.py) - 디버그 코드에 class 이름과 라인 넘버 출력되도록 수정함 (maze.py)
- 코드 분석 내용 업로드 (maze_analysis.drawio)
- Mouse 클래스와 MazePanel 클래스 간 함수 호출 분석 내용 추가 (maze_analysis.drawio)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
기존 python 2 기반으로 동작하던 것을 python 3 기반으로 동작하게 끔 Porting 작업 진행함.