feat: del_post 支援劣退/惡退(bad_post_type / bad_post_reason) - #22
Merged
Conversation
MCP 的 del_post 原本只轉發 board/aid/index,沒接 PyPtt 的劣退(badpost)參數。新增 bad_post_type(AD/BAD_LANGUAGE/PERSONAL_ATTACK/OTHER)與 bad_post_reason,並把字串名轉成 PyPtt.BadPostType(IntEnum,不能像 SearchType 直接傳字串);非法名稱回 BAD_PARAM 且不觸及 PyPtt。docstring 同時列「劣退」「惡退」兩種說法,使用者講哪個詞都能對到工具。 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
PttCodingMan
force-pushed
the
feat/del-post-bad-post-type
branch
from
July 20, 2026 13:48
ed84473 to
94482f7
Compare
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
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.
內容
MCP 的
del_post原本只轉發board/aid/index,沒接 PyPtt 的劣退(badpost)參數。本 PR 補上:bad_post_type(AD/BAD_LANGUAGE/PERSONAL_ATTACK/OTHER)與bad_post_reasonPyPtt.BadPostType(IntEnum,不能像SearchType直接傳字串),非法名稱回BAD_PARAM且不觸及 PyPttsrc/test_del_post.py:涵蓋 helper 合法名稱/None/未知名稱丟 ValueError(含 sys.modules 隔離,避開兄弟測試 stub PyPtt 的污染)測試
pytest18 passed;flake8 / black / mypy 全綠🤖 Generated with Claude Code