FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
gh-103997: Automatically dedent the argument to "-c" by Erotemic · Pull Request #103998 · python/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
35.3k
Star
74.9k
Code
Issues
5k+
Pull requests
2.5k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
gh-103997: Automatically dedent the argument to "-c"
- #103998
#103998
Merged
methane
merged 49 commits into
python:main
python/cpython:main
from
Erotemic:dedent_pymain_command
Erotemic/cpython:dedent_pymain_command
Copy head branch name to clipboard
Apr 18, 2025
Conversation
Commits
49
(49)
Checks
Files changed
Merged
gh-103997: Automatically dedent the argument to "-c"
#103998
methane
merged 49 commits into
python:main
python/cpython:main
from
Erotemic:dedent_pymain_command
Erotemic/cpython:dedent_pymain_command
Copy head branch name to clipboard
Commits
Commits on May 1, 2023
Very rough proof-of-concept
Show description for 16be08f
Erotemic
committed
16be08f
View commit details
Copy full SHA for 16be08f
Browse repository at this point
Cleanups and comments
Erotemic
committed
e88216b
View commit details
Copy full SHA for e88216b
Browse repository at this point
Fix bad decref, only trigger if command starts with a newline
Erotemic
committed
bcb7c77
View commit details
Copy full SHA for bcb7c77
Browse repository at this point
wchar dedent
Erotemic
committed
fb8985a
View commit details
Copy full SHA for fb8985a
Browse repository at this point
tweaks
Erotemic
committed
26f27a8
View commit details
Copy full SHA for 26f27a8
Browse repository at this point
Use new char* implementation
Erotemic
committed
417eff8
View commit details
Copy full SHA for 417eff8
Browse repository at this point
Rename function
Erotemic
committed
924e0a6
View commit details
Copy full SHA for 924e0a6
Browse repository at this point
tweaks
Erotemic
committed
9f95672
View commit details
Copy full SHA for 9f95672
Browse repository at this point
More tweaks
Erotemic
committed
3f4a78b
View commit details
Copy full SHA for 3f4a78b
Browse repository at this point
Replace strncmp with direct char comparison
Erotemic
committed
97f2079
View commit details
Copy full SHA for 97f2079
Browse repository at this point
Remove debug code
Erotemic
committed
04435eb
View commit details
Copy full SHA for 04435eb
Browse repository at this point
Made new function static
Erotemic
committed
4c4eca9
View commit details
Copy full SHA for 4c4eca9
Browse repository at this point
Handwritten char iter and _PyBytesWriter_
Erotemic
committed
f9c969b
View commit details
Copy full SHA for f9c969b
Browse repository at this point
reimplement it to imitate `textwrap.dedent`
sunmy2019
authored and
Erotemic
committed
674f1e0
View commit details
Copy full SHA for 674f1e0
Browse repository at this point
fix missing initialization
sunmy2019
authored and
Erotemic
committed
05d4169
View commit details
Copy full SHA for 05d4169
Browse repository at this point
fix ref leak
sunmy2019
authored and
Erotemic
committed
9d53c4e
View commit details
Copy full SHA for 9d53c4e
Browse repository at this point
fix empty string
sunmy2019
authored and
Erotemic
committed
689a13a
View commit details
Copy full SHA for 689a13a
Browse repository at this point
nit: remove unnecessary variable
sunmy2019
authored and
Erotemic
committed
f0ac7ea
View commit details
Copy full SHA for f0ac7ea
Browse repository at this point
remove unnecessary include
sunmy2019
authored and
Erotemic
committed
71cad01
View commit details
Copy full SHA for 71cad01
Browse repository at this point
Add test cases
Erotemic
committed
4549de8
View commit details
Copy full SHA for 4549de8
Browse repository at this point
Fix test on windows
Erotemic
committed
0c3b90b
View commit details
Copy full SHA for 0c3b90b
Browse repository at this point
normalize windows line endings
Erotemic
committed
1f5b746
View commit details
Copy full SHA for 1f5b746
Browse repository at this point
Merge branch 'main' into dedent_pymain_command
Erotemic
authored
ca40589
View commit details
Copy full SHA for ca40589
Browse repository at this point
Commits on May 3, 2023
Update Modules/main.c
Show description for 1f17e23
sunmy2019
and
Eclips4
authored
1f17e23
View commit details
Copy full SHA for 1f17e23
Browse repository at this point
Commits on Jul 23, 2023
Merge branch 'python:main' into dedent_pymain_command
sunmy2019
authored
2de2e1e
View commit details
Copy full SHA for 2de2e1e
Browse repository at this point
refactor code
sunmy2019
committed
c84616c
View commit details
Copy full SHA for c84616c
Browse repository at this point
Apply suggestions from code review
sunmy2019
authored
a19b675
View commit details
Copy full SHA for a19b675
Browse repository at this point
Update Misc/NEWS.d/next/Core and Builtins/2023-04-29-23-15-38.gh-issue-103997.BS3uVt.rst
Show description for 7ce411f
sunmy2019
and
methane
authored
7ce411f
View commit details
Copy full SHA for 7ce411f
Browse repository at this point
resolve comments
sunmy2019
committed
dea4301
View commit details
Copy full SHA for dea4301
Browse repository at this point
Update Modules/main.c
sunmy2019
authored
e06d40c
View commit details
Copy full SHA for e06d40c
Browse repository at this point
rename `out` to `dest`
sunmy2019
committed
a40d028
View commit details
Copy full SHA for a40d028
Browse repository at this point
Commits on Jul 24, 2023
move to _PyUnicode_Dedent
sunmy2019
committed
9569655
View commit details
Copy full SHA for 9569655
Browse repository at this point
Apply suggestions from code review
Show description for 1735d0f
sunmy2019
authored
1735d0f
View commit details
Copy full SHA for 1735d0f
Browse repository at this point
Commits on Jul 25, 2023
clean up things
sunmy2019
committed
d3681b7
View commit details
Copy full SHA for d3681b7
Browse repository at this point
Commits on Apr 2, 2024
Merge branch 'main' into dedent_pymain_command
Erotemic
authored
3b4a7bc
View commit details
Copy full SHA for 3b4a7bc
Browse repository at this point
Commits on Apr 19, 2024
Merge branch 'main' into dedent_pymain_command
Erotemic
authored
f355760
View commit details
Copy full SHA for f355760
Browse repository at this point
Commits on Apr 9, 2025
Merge branch 'main' into dedent_pymain_command
AA-Turner
authored
b1e89c9
View commit details
Copy full SHA for b1e89c9
Browse repository at this point
Commits on Apr 10, 2025
Update Misc/NEWS.d/next/Core and Builtins/2023-04-29-23-15-38.gh-issue-103997.BS3uVt.rst
Show description for d1b4cd1
Erotemic
and
AA-Turner
authored
d1b4cd1
View commit details
Copy full SHA for d1b4cd1
Browse repository at this point
lint: space in folder name
Erotemic
committed
e556bbf
View commit details
Copy full SHA for e556bbf
Browse repository at this point
Explicit include of pycore_unicodeobject.h
Erotemic
committed
136c8b0
View commit details
Copy full SHA for 136c8b0
Browse repository at this point
Merge branch 'main' into dedent_pymain_command
Erotemic
authored
8e5cc7f
View commit details
Copy full SHA for 8e5cc7f
Browse repository at this point
Commits on Apr 17, 2025
Apply suggestions from code review
Show description for cd14a00
sunmy2019
and
AA-Turner
authored
cd14a00
View commit details
Copy full SHA for cd14a00
Browse repository at this point
Resolve Comments
Show description for 07d2273
sunmy2019
and
AA-Turner
committed
07d2273
View commit details
Copy full SHA for 07d2273
Browse repository at this point
Commits on Apr 18, 2025
Refactor implementation
sunmy2019
committed
ed6e17b
View commit details
Copy full SHA for ed6e17b
Browse repository at this point
Merge branch 'main' into dedent_pymain_command
sunmy2019
authored
d1edb1b
View commit details
Copy full SHA for d1edb1b
Browse repository at this point
Apply suggestions from code review
methane
authored
4c78c57
View commit details
Copy full SHA for 4c78c57
Browse repository at this point
add what's new entry
methane
authored
38d2a4e
View commit details
Copy full SHA for 38d2a4e
Browse repository at this point
Document dedentation of command in version 3.14
methane
committed
42b6330
View commit details
Copy full SHA for 42b6330
Browse repository at this point
Apply suggestions from code review
picnixz
authored
98c17e5
View commit details
Copy full SHA for 98c17e5
Browse repository at this point
Back
|
FazBrowse Home
|
New Git URL