Skip to content

Commit 7a02cd2

Browse files
authored
PR: Fix /n literal
Fix `/n` literal ### Added - **Placeholder-Based Line Numbering** ### Fixed - **Deterministic Line Numbering** - **Docstring Merging Logic** - **Multi-Pass Docstring Removal** - **Whitespace Normalization** - **Manual Content Extraction** ### Testing - **New Test Cases**
2 parents 7a5cd87 + a40d87c commit 7a02cd2

7 files changed

Lines changed: 805 additions & 678 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616

1717
## [NextRelease]
1818

19-
### Header
19+
### Added
20+
21+
- **Placeholder-Based Line Numbering**: Implemented a new placeholder system (`OFFSET_PLACEHOLDER`) for calculating line numbers in generated headers. This ensures deterministic line numbering by first generating headers with placeholders, then calculating the actual offset based on the final header size, and finally replacing placeholders with accurate line numbers.
22+
23+
### Fixed
24+
25+
- **Deterministic Line Numbering**: Completely reworked the line number calculation algorithm to ensure consistent and accurate line numbers across multiple runs. The new approach uses a two-pass system that measures rather than guesses header sizes, ensuring deterministic results.
26+
- **Docstring Merging Logic**: Improved the logic for merging manual docstrings with auto-generated content. Manual content is now properly preserved and formatted without adding unnecessary newlines or reformatting.
27+
- **Multi-Pass Docstring Removal**: Enhanced the `remove_agent_docstring` function to handle complex scenarios where multiple agent-generated docstrings might be present, preventing duplication issues on repeated runs.
28+
- **Whitespace Normalization**: Added proper whitespace handling in content comparison to prevent unnecessary file modifications when only minor whitespace differences exist.
29+
- **Manual Content Extraction**: Improved the extraction of manual docstring content by properly handling the inner content within triple quotes, preserving original formatting and indentation.
30+
31+
### Testing
2032

21-
- **subtitle**: describtion
33+
- **New Test Cases**: Added comprehensive test cases for placeholder usage, short manual docstring handling, and merged multiline docstring preservation to ensure the new algorithms work correctly across various scenarios.
2234

2335
## [1.3.4]
2436

0 commit comments

Comments
 (0)