Skip to content

[DOC] Snippet code to str methods #24666

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

Closed
wants to merge 1,265 commits into from
Closed
Changes from all commits
Commits
Show all changes
1265 commits
Select commit Hold shift + click to select a range
632d30e
bpo-42923: Add Py_FatalError() test in test_capi (GH-24240)
vstinner Jan 18, 2021
f6c2d4c
bpo-42923: Py_FatalError() avoids fprintf() (GH-24242)
vstinner Jan 18, 2021
c284e07
bpo-42944 Fix Random.sample when counts is not None (GH-24235)
jonanifranco Jan 18, 2021
16a980b
bpo-42923: Dump extension modules on fatal error (GH-24207)
vstinner Jan 18, 2021
f2819ef
bpo-36143: make regen-all now also runs regen-keyword (GH-24245)
vstinner Jan 18, 2021
509e63d
closes bpo-42938: Replace snprintf with Python unicode formatting in …
benjaminp Jan 18, 2021
9fda44a
Add a paragraph about allocation domains to the C-API docs (GH-24252)
pablogsal Jan 18, 2021
67f0fd6
bpo-41818: Close file descriptors in test_openpty (#GH-24119)
encukou Jan 19, 2021
9105681
Add a clarification for the object-domain allocators regarding pointe…
pablogsal Jan 19, 2021
e2fa37e
bpo-41713: Remove PyOS_InitInterrupts() from python3dll.c (GH-24257)
vstinner Jan 19, 2021
ba0e44c
bpo-42955: Add Python/module_names.h (GH-24258)
vstinner Jan 19, 2021
39a8efe
bpo-42923: _Py_DumpExtensionModules() ignores stdlib ext (GH-24254)
vstinner Jan 19, 2021
f775cbf
bpo-42864: Improve error messages regarding unclosed parentheses (GH-…
pablogsal Jan 19, 2021
8b3feec
bpo-41995: Handle allocation failure in _tracemalloc and _zoneinfo (G…
Yunlongs Jan 20, 2021
cbefbd3
bpo-42005: profile and cProfile catch BrokenPipeError (GH-22643)
zmwangx Jan 20, 2021
9048e33
Doc: os.path.abspath and Path.resolve are also different (GH-23276)
xuhdev Jan 20, 2021
32e99a8
bpo-41798: Allocate unicodedata CAPI on the heap (GH-24128)
Jan 20, 2021
b662ac1
bpo-42048: Clinic Howto: Document AC's defining_class converter (GH-2…
Jan 20, 2021
71d7a14
bpo-42864: Fix compiler warning in the tokenizer with the new paren s…
pablogsal Jan 20, 2021
c4837f1
Fix typos in unittest documentation (GH-24194)
Conchylicultor Jan 20, 2021
750eb0f
bpo-42780: Fix set_inheritable() for O_PATH file descriptors on Linux…
cptpcrd Jan 20, 2021
3e11523
bpo-42323: Fix math.nextafter() for NaN on AIX (GH-24265)
vstinner Jan 20, 2021
ed4fd24
bpo-42856: Add --with-wheel-pkg-dir=PATH configure option (GH-24210)
vstinner Jan 20, 2021
9fc5b96
bpo-42864: Simplify the tokenizer exceptions after generic SyntaxErro…
pablogsal Jan 20, 2021
08dcce9
bpo-40176: Improve error messages for unclosed string literals (GH-19…
isidentical Jan 20, 2021
31d7d80
bpo-42392: Mention loop removal in whatsnew for 3.10 (GH-24256)
Fidget-Spinner Jan 21, 2021
2d9df10
Fix typo in what's new. bidst_wheel -> bdist_wheel (GH-24234)
ravcio Jan 21, 2021
83b0a9c
Add a What's New entry for the new parser error improvements (GH-24280)
pablogsal Jan 21, 2021
5ebd2c3
bpo-33289: Return RGB triplet of ints instead of floats from tkinter.…
csabella Jan 21, 2021
e110475
bpo-31904: setup.py: fix cross-compilation on VxWorks (GH-24191)
pxinwr Jan 22, 2021
d5b73b2
bpo-42384: pdb: correctly populate sys.path[0] (GH-23338)
hexagonrecursion Jan 22, 2021
b5bbfea
bpo-40304: Correct type(name, bases, dict) doc (GH-19553)
verhovsky Jan 22, 2021
741617f
bpo-41798: Allocate the _curses._C_API on the heap memory (GH-24186)
shihai1991 Jan 22, 2021
76246dd
bpo-42996: Update a reference to PKCS #5 in hashlib docs to version 2…
illia-v Jan 22, 2021
76e4951
closes bpo-43011: Fix DeprecationWarnings in test_ctypes (GH-24305)
ZackerySpytz Jan 23, 2021
f063d48
Remove full stop from a bytes-related SyntaxError message (GH-24300)
numbermaniac Jan 23, 2021
59269e9
bpo-43014: Improve performance of tokenize.tokenize by 20-30%
asottile Jan 24, 2021
0aaf35e
bpo-43013: Update idlelib code to 3.x (GH-24315)
terryjreedy Jan 24, 2021
fff4b46
bpo-27772: Make preceding width with 0 valid in string format. (GH-11…
serhiy-storchaka Jan 25, 2021
d9afdfc
bpo-43013: Fix old tkinter module names in idlelib (GH-24326)
terryjreedy Jan 25, 2021
ca2ff48
bpo-42955: Add sys.modules_names (GH-24238)
vstinner Jan 25, 2021
2ea2168
bpo-42955: Fix sys.module_names doc (GH-24329)
vstinner Jan 25, 2021
669fd24
bpo-42843: Keep Sphinx 1.8 and Sphinx 2 compatibility (GH-24282)
JulienPalard Jan 25, 2021
3e692e7
bpo-42869: Avoid an HTTP redirection. (GH-24174)
JulienPalard Jan 25, 2021
042869c
bpo-37319: Improve documentation, code and tests of randrange. (GH-19…
serhiy-storchaka Jan 25, 2021
fe65394
bpo-42383: pdb: do not fail to restart the target if the current dire…
hexagonrecursion Jan 25, 2021
6bdb89a
bpo-42955: Rename module_names to sys.stdlib_module_names (GH-24332)
vstinner Jan 25, 2021
258a916
bpo-38250: [Enum] single-bit flags are canonical (GH-24215)
ethanfurman Jan 25, 2021
c23fb92
Typo in comment (GH-24199)
borispopoff Jan 25, 2021
9e6ab22
Document new parenthesized with statements (GH-24281)
pablogsal Jan 25, 2021
2b5beb9
Fix minor typo in the rest format in the enum docs (GH-24335)
pablogsal Jan 25, 2021
0b91e40
bpo-33387: update documentation for exception handling opcode changes…
iritkatriel Jan 26, 2021
65576b9
bpo-38250: [Enum] only include .rst test if file available (GH-24342)
ethanfurman Jan 26, 2021
adffbb9
bpo-43008: Make IDLE respect sys.excepthook (GH-24302)
Kenny2github Jan 26, 2021
1c49fa0
bpo-43033: Fix the handling of PyObject_SetAttrString() in _zoneinfo.…
ZackerySpytz Jan 27, 2021
9a3ebf8
bpo-43031: Set a timeout when running tests in PGO build (GH-24339)
vstinner Jan 27, 2021
13da12b
bpo-42979: _zoneinfo exec function checks for PyDateTime_IMPORT failu…
shihai1991 Jan 27, 2021
96f7d78
bpo-42979: Enhance abstract.c assertions checking slot result (GH-24352)
vstinner Jan 27, 2021
948bcc0
bpo-42955: Remove sub-packages from sys.stdlib_module_names (GH-24353)
vstinner Jan 27, 2021
21e47a6
bpo-23544: Disable IDLE Stack Viewer when running user code (GH-17163)
ZackerySpytz Jan 28, 2021
0f92d27
bpo-42990: Introduce 'frame constructor' struct to simplify API for P…
markshannon Jan 29, 2021
24227dd
bpo-42979: Use _Py_CheckSlotResult() to check slots result (GH-24356)
vstinner Jan 29, 2021
f0b30ae
Fixed typo in turtle.rst (GH-24371)
Seluj78 Jan 29, 2021
ca5f4d8
bpo-43008: Add 'Patch by Ken Hilton' (GH-24370)
terryjreedy Jan 29, 2021
70d06c1
Fixing typos in turtle.rst (GH-24376)
Seluj78 Jan 29, 2021
aee1ff2
bpo-41282: Add deprecation warning and docs for distutils (PEP 632) (…
zooba Jan 29, 2021
574a9d4
bpo-42323: Fix math.nextafter() on AIX (GH-24381)
vstinner Jan 29, 2021
20f1de4
Fix a reference leak in the compiler for compiler_lambda() (GH-24382)
pablogsal Jan 29, 2021
bdadaff
bpo-38631: Replace compiler fatal errors with exceptions (GH-24369)
vstinner Jan 30, 2021
89abb84
bpo-42927: Inline cache for attributes defined with '__slots__' (#24216)
gvanrossum Jan 30, 2021
0ba8166
bpo-43047: logging.config formatters documentation update (GH-24358)
ianw Jan 30, 2021
8b1b8e7
bpo-40455: Fix gcc10+ warning about writing into a section of offset …
pablogsal Jan 30, 2021
d7fc740
bpo-43077: Update bundled pip to 21.0.1 and setuptools to 52.0.0 (GH-…
pfmoore Jan 30, 2021
35d5647
bpo-43059: Remove reference to legacy external sqlite3 repository (GH…
LukeLR Jan 31, 2021
d403bd2
Doc: errors tutorial improvements (GH-16269)
adorilson Jan 31, 2021
fb0957e
bpo-43030: Fixed a compiler warning in Py_UNICODE_ISSPACE with signed…
serhiy-storchaka Jan 31, 2021
47120d2
bpo-43016: Rewrite tests for curses (GH-24312)
serhiy-storchaka Jan 31, 2021
fd43bbf
bpo-43083: Fix error handling in _sqlite3 (GH-24395)
serhiy-storchaka Jan 31, 2021
78c6491
bpo-41604: Don't decrement the reference count of the previous user_p…
madebr Jan 31, 2021
266a2a0
bpo-43016: Fix test_curses on platform without cursesw (GH-24405)
serhiy-storchaka Jan 31, 2021
e52d3cc
bpo-42986: Fix parser crash when reporting syntax errors in f-string …
pablogsal Jan 31, 2021
96f922e
bpo-43017: Improve error message for unparenthesised tuples in compre…
pablogsal Jan 31, 2021
22fcd78
bpo-42927: Update the What's new entry for LOAD_ATTR optimizations (G…
pablogsal Jan 31, 2021
4806a64
bpo-42504: Ensure that get_config_var('MACOSX_DEPLOYMENT_TARGET') is …
ronaldoussoren Feb 1, 2021
4432a0f
bpo-42990: Further refactoring of PyEval_ functions. (GH-24368)
markshannon Feb 1, 2021
3465629
Fix typo in Lib/trace.py (GH-24309)
Jongy Feb 1, 2021
ffa1482
bpo-42834: Fix _json internal caches for subinterpreters (GH-24121)
Fidget-Spinner Feb 1, 2021
d01ddfd
bpo-38307: Add end_lineno attribute to pyclbr Objects (GH-24348)
kebab-mai-haddi Feb 1, 2021
25eb657
bpo-41748: Handles unquoted attributes with commas (#24072)
karlcow Feb 1, 2021
1750214
Only eliminate jumps to successor block if jump is unconditional. (GH…
markshannon Feb 2, 2021
c14a4eb
bpo-42997: Improve error message for missing : before suites (GH-24292)
pablogsal Feb 2, 2021
9df7daf
bpo-41149: Fix a bug in threading that causes fals-y threads callable…
BarneyStratford Feb 2, 2021
c335205
bpo-43108: Fix a reference leak in the curses module (GH-24420)
pablogsal Feb 2, 2021
67cf266
Python 3.10.0a5
pablogsal Feb 2, 2021
b5a895f
Fix Sphynx syntax in the memory.rst document
pablogsal Feb 2, 2021
92dc5e9
bpo-8264: Document hasattr and getattr behavior for private attribute…
Fidget-Spinner Feb 2, 2021
4b955f6
Add link to Microsoft docs for limitations in Windows Store package (…
zooba Feb 3, 2021
c3459e4
bpo-43082: Remove redundant 'the' in Descriptor howto (GH-24394)
diegoe Feb 3, 2021
4c04445
Post 3.10.0a5
pablogsal Feb 3, 2021
0f6b6b8
build(deps): bump actions/upload-artifact from v2.2.1 to v2.2.2 (GH-2…
dependabot[bot] Feb 3, 2021
5c32cdc
Fix typo (GH-23019)
Harry-Lees Feb 3, 2021
b9c033c
bpo-43121: Fix incorrect SyntaxError message for missing comma (GH-24…
pablogsal Feb 3, 2021
7c6b0b2
bpo-43106: Add os.O_EVTONLY/O_FSYNC/O_SYMLINK/O_NOFOLLOW_ANY (GH-24428)
corona10 Feb 3, 2021
da49ecb
Fix dependabot.yml file (GH-24443)
Mariatta Feb 4, 2021
ae6188f
build(deps): bump actions/cache from v2.1.3 to v2.1.4 (#24446)
dependabot[bot] Feb 4, 2021
9642201
Fix signed/unsigned comparison to avoid compilation warning (GH-24441)
Fidget-Spinner Feb 4, 2021
dc0819b
bpo-42882: Fix MSVC warnings in pystate.c (GH-24440)
Fidget-Spinner Feb 4, 2021
c02709e
bpo-43102: Set namedtuple __new__'s internal builtins to a dict. (GH…
rhettinger Feb 4, 2021
85a8432
bpo-35295: Remove outdated comment. (GH-24453)
methane Feb 5, 2021
3dba1c2
Reduce overhead on random timings (GH-24455)
rhettinger Feb 5, 2021
83f7979
Minor readability improvements. Also note performance impact of __sl…
rhettinger Feb 5, 2021
f8bb6f7
bpo-43132: Fix incorrect handling of PyObject_RichCompareBool() in _z…
ZackerySpytz Feb 5, 2021
0c2bb80
Fix a typo in a deprecation warning (GH-24423)
ZackerySpytz Feb 5, 2021
b3cba50
Simple typo fix (GH-24448)
atenni Feb 5, 2021
9f16613
bpo-16781: In 'exec' doc, add 'nonlocal' to 'yield' and 'return' (GH-…
terryjreedy Feb 7, 2021
b66fff2
bpo-43149: Improve error message for exception group without parenthe…
pablogsal Feb 7, 2021
9922d00
bpo-43147: Remove archaic terminology. (GH-24462)
rhettinger Feb 8, 2021
593b591
bpo-40692: Run more test_concurrent_futures tests (GH-20239)
paulproteus Feb 8, 2021
a050fcd
bpo-13501: allow choosing between readline and libedit (GH-24189)
rohieb Feb 9, 2021
d31a56b
bpo-43162: [Enum] deprecate enum member.member access (GH-24486)
ethanfurman Feb 9, 2021
3d535fc
Improve docs of PEP 604 Union (#24301)
Fidget-Spinner Feb 9, 2021
6f8e162
bpo-41824: Add versionadded for typing.ForwardRef docs (#24224)
Fidget-Spinner Feb 9, 2021
08ed5f5
bpo-43166: Disable ceval.c optimisations for Windows debug builds (GH…
zooba Feb 9, 2021
6f17567
bpo-43163: Handle unclosed parentheses in codeop (GH-24483)
pablogsal Feb 9, 2021
532e752
bpo-42217: compiler: merge same co_code and co_linetable objects (GH-…
methane Feb 10, 2021
9a792f7
Fix link to sqlite3 enable_shared_cache documentation (GH-24496)
orf Feb 10, 2021
1bb6281
bpo-40956: Fix segfault when Connection.backup is called without targ…
Feb 10, 2021
5ca5efe
bpo-43174: Windows: Use /utf-8 compiler option. (GH-24498)
methane Feb 12, 2021
7be81b1
bpo-43202: Immediately return code object in codeop._maybe_compile (G…
terryjreedy Feb 12, 2021
95e1c52
bpo-43204: Fix LibTomCrypt URL in md5module.c and sha*module.c commen…
Feb 12, 2021
dce878f
bpo-43172: readline now passes its tests when built against libedit (…
gpshead Feb 12, 2021
4a571d9
bpo-43200: Fix link to shutil.copy() in the shutil doc (GH-24505)
ZackerySpytz Feb 13, 2021
693594a
bpo-43202: More codeop._maybe_compile clean-ups (GH-24512)
terryjreedy Feb 13, 2021
5f100d2
bpo-43152: Update assert statement to remove unused warning (GH-24473)
corona10 Feb 14, 2021
113e1ef
bpo-43210: Fix byteswap comment in sha512.module.c (GH-24518)
Feb 14, 2021
e4d7adc
bpo-42967: only use '&' as a query string separator (#24297)
AdamGold Feb 14, 2021
50002fc
bpo-43181: Convert PyObject_TypeCheck to static inline function (GH-2…
Feb 15, 2021
8041fc1
bpo-42967: Fix urllib.parse docs and make logic clearer (GH-24536)
Fidget-Spinner Feb 15, 2021
ee942af
bpo-43231: Fix test.test_curses.TestCurses.test_init_pair when runnin…
pablogsal Feb 15, 2021
abadf47
bpo-43231: Correctly calculate the curses color pair limit when check…
pablogsal Feb 15, 2021
8a97938
Add a warning block around the get_referrers() documentation (GH-24511)
pablogsal Feb 15, 2021
bf7569c
bpo-42819, readline: Disable bracketed paste (GH-24108)
dtrodrigues Feb 15, 2021
6f9c56e
bpo-43155: Add PyCMethod_New to PC/python3dll.c (GH-24500)
ZackerySpytz Feb 16, 2021
b415fbd
bpo-40170: Convert PyDescr_IsData() to static inline function (GH-24535)
Feb 16, 2021
343112b
bpo-35134, Include: Move pytime.h to cpython/pytime.h (GH-23988)
Feb 16, 2021
a64877a
bpo-40170: Always define PyIter_Check() as a function (GH-24548)
Feb 16, 2021
d8b82f2
bpo-43103: Add configure --without-static-libpython (GH-24418)
vstinner Feb 17, 2021
e9facf7
bpo-40170: Always define PyExceptionClass_Name() as a function (GH-24…
Feb 17, 2021
9e4674b
bpo-40170: Move 3 NEWS entries to the C API section (GH-24555)
Feb 17, 2021
3953750
bpo-35134: Move Include/{pyarena.h,pyctype.h} to Include/cpython/ (GH…
nw0 Feb 17, 2021
2d00e2b
bpo-42990: Add __builtins__ attribute to functions (GH-24559)
vstinner Feb 18, 2021
7fb1192
bpo-42960: Add resource.RLIMIT_KQUEUES constant from FreeBSD (GH-24251)
devnexen Feb 18, 2021
4417d7c
bpo-43249: sqlite3_column_bytes() must follow sqlite_column_blob() (G…
Feb 18, 2021
f5ab255
bpo-43249: Improve scoping in _pysqlite_fetch_one_row() (GH-24565)
Feb 18, 2021
d54f790
bpo-42990: Refactor _PyFrame_New_NoTrack() (GH-24566)
vstinner Feb 18, 2021
35e1b3c
Remove all links to mingw.org (GH-24552)
ucodery Feb 18, 2021
af69662
bpo-39448: Add regen-frozen makefile target. (GH-18174)
nascheme Feb 19, 2021
c563af5
closes bpo-43254: Fix *snprintf() man page refs. (GH-24563)
Feb 19, 2021
21b91f3
bpo-43258: Don't allocate sqlite3 aggregate context for empty queries…
Feb 19, 2021
b8ac448
bpo-43258: Make sqlite3 callback functions static (GH-24574)
Feb 19, 2021
33353c5
bpo-43268: Replace _PyThreadState_GET() with _PyInterpreterState_GET(…
vstinner Feb 19, 2021
4985de0
bpo-40522: Replace PyThreadState_GET() with PyThreadState_Get() (GH-2…
vstinner Feb 19, 2021
54eb259
bpo-43268: _Py_IsMainInterpreter() now expects interp (GH-24577)
vstinner Feb 19, 2021
b0c712d
bpo-43268: Remove abusive usage of tstate in sysmodule.c (#24581)
vstinner Feb 19, 2021
a33fcf3
bpo-43270: Remove private _PyErr_OCCURRED() macro (GH-24579)
vstinner Feb 19, 2021
897aa40
bpo-43268: Pass interp rather than tstate to internal functions (GH-2…
vstinner Feb 19, 2021
5d96295
bpo-43268: local_clear() uses _PyInterpreterState_GET() (GH-24583)
vstinner Feb 19, 2021
ffd6c4d
bpo-35134: Move non-limited C API files to Include/cpython/ (GH-24561)
nw0 Feb 19, 2021
7567f36
closes bpo-43266: Improve array formatting. (GH-24573)
Feb 19, 2021
176b0e8
bpo-42825: Enable /OPT:REF (GH-24098)
Austin-Lamb Feb 19, 2021
7cf2919
bpo-43042: Augment tutorial sentence (GH-24514)
terryjreedy Feb 20, 2021
6e8fadc
Fix typo in dis module doc (GH-24509)
iritkatriel Feb 20, 2021
116b71e
Fix typo in launcher.c (GH-24497)
eltociear Feb 20, 2021
3e7db1a
bpo-42990: Functions inherit current builtins (GH-24564)
vstinner Feb 20, 2021
e71b771
bpo-43277: Add PySet_CheckExact to the C-API (GH-24598)
pablogsal Feb 20, 2021
c10eb82
bpo-43269: Clean up sqlite3 file scope (GH-24578)
Feb 21, 2021
fba7b08
bpo-27646: Say that 'yield from' expression can be any iterable (GH-2…
terryjreedy Feb 21, 2021
c89b7ff
bpo-43283: Rearrange some IDLE doc paragraphs. (GH-24604)
terryjreedy Feb 21, 2021
33bf58b
bpo-43269: Remove redundant extern keywords (GH-24605)
Feb 21, 2021
5d8f84d
bpo-42093: Cleanup _PyDict_GetItemHint() (GH-24582)
vstinner Feb 21, 2021
bd9d873
bpo-43288: Fix bug in test_importlib test. (GH-24612)
nascheme Feb 21, 2021
f021e64
Fix failed merge of bpo-43288. (GH-24614)
nascheme Feb 21, 2021
11e532f
bpo-43260: io: Prevent large data remains in textio buffer. (GH-24592)
methane Feb 21, 2021
548f201
bpo-42808: Add PyType_Type.tp_vectorcall for type(obj) performance (G…
sweeneyde Feb 22, 2021
51e7a92
bpo-23882: Doc: Clarify unittest discovery document (GH-21560)
methane Feb 22, 2021
25fb3b6
bpo-36346: Emit DeprecationWarning for PyArg_Parse() with 'u' or 'Z'.…
methane Feb 22, 2021
c208106
bpo-36346: Document removal schedule of deprecate APIs (GH-20879)
methane Feb 22, 2021
12ed704
bpo-43239: Export PyCFunction_New with PyAPI_FUNC (GH-24551)
encukou Feb 23, 2021
624632b
bpo-43146: fix regression in traceback.print_exception(None) (GH-24463)
iritkatriel Feb 23, 2021
7b10ffa
bpo-43146: fix None-handling in single-arg traceback.print_exception(…
iritkatriel Feb 23, 2021
9be2429
bpo-43283: Add IDLE doc paragraph about print speed (GH-24615)
terryjreedy Feb 24, 2021
768c09d
bpo-41841: Revise header (GH-24633)
terryjreedy Feb 24, 2021
11657e5
bpo-42151: don't set specified_attributes=1 in pure Python ElementTre…
obfusk Feb 24, 2021
24a8853
bpo-43293: Doc: move note about GIL to top of threading module (GH-24…
quantum5 Feb 24, 2021
35b0eff
Remove comment about a private email.headerregistry (GH-24233)
The-Compiler Feb 24, 2021
6b5c8e4
bpo-43316: gzip: CLI uses non-zero return code on error. (GH-24647)
rhpvorderman Feb 25, 2021
32ebc1a
bpo-43290: Remove workaround from pysqlite_step() (GH-24638)
Feb 25, 2021
1176a2a
bpo-43314: Remove SQLITE_OPEN_URI ifdef (GH-24637)
Feb 26, 2021
e415329
bpo-43316: gzip: Fix sys.exit() usage. (GH-24652)
methane Feb 26, 2021
ba87516
bpo-43144: Mark unicodedata's test_normalization as requiring network…
ammaraskar Feb 26, 2021
32a885a
closes bpo-43278: remove unnecessary leading '\n' from COMPILER when …
josephshen Feb 26, 2021
e089525
Update logging.config.rst (GH-24630)
MasaYan24 Feb 26, 2021
4e5f175
bpo-43317: Use io.DEFAULT_BUFFER_SIZE instead of 1024 in gzip CLI (#2…
rhpvorderman Feb 26, 2021
8101313
bpo-43294: Remove unused variables in pysqlite_connection_*() (GH-24658)
Feb 26, 2021
3be4b90
bpo-38302: __pow__/__rpow__ now called when __ipow__ returns NotImple…
ashkop Feb 26, 2021
c468eab
bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)
brandtbucher Feb 26, 2021
db76501
bpo-43321: Fix SystemError in getargs.c (GH-24656)
methane Feb 27, 2021
e9b5893
[DOC] Added snipped code in str.capitalize
adorilson Feb 27, 2021
0428b71
[DOC] Add snippet code in str.casefold and str.lower methods
adorilson Feb 27, 2021
959c348
[DOC] Added snippet code in str.count method
adorilson Feb 27, 2021
48c3799
[DOC] Added snippet code in str.count method
adorilson Feb 27, 2021
c8a64ac
[DOC] fix typo
adorilson Feb 28, 2021
e6e6742
[DOC] Added snippet code in str.encode method
adorilson Mar 13, 2021
19317b0
[DOC] Added snippet code to str.endswith method
adorilson Mar 13, 2021
82b09df
[DOC] Added snippet code with \n to str.expandtabs method
adorilson Mar 13, 2021
a45dc59
[DOC] Added snippet code to str.find method
adorilson Mar 13, 2021
a8e3e94
Merge branch 'str_methods' of github.com:adorilson/cpython into str_m…
adorilson Mar 13, 2021
5d41e44
[DOC] Added snippet code to str.index method
adorilson Mar 14, 2021
7cd800e
[DOC] Added snippet code to str.isalnum method
adorilson Mar 14, 2021
b242e64
[DOC] Added snippet code in str.isalpha method
adorilson Mar 15, 2021
2055120
[DOC] Added snippet code in str.isascii method
adorilson Mar 15, 2021
880eba9
[DOC] Added snippet code to str.isdecimal method
adorilson Mar 15, 2021
958c94a
[Doc] Added snippet code to str.isdigit method
adorilson Mar 22, 2021
75126cd
[Doc] Improvement the str.isidentifier method doc
adorilson Mar 22, 2021
66500d5
[Doc] Added snippet code to str.islower method
adorilson Mar 22, 2021
de76d49
[Doc] Added snippet code to str.isnumeric method
adorilson Mar 22, 2021
96bf6a1
[Doc] Added snippet code to str.isprintable method
adorilson Mar 22, 2021
c82fcf4
[Doc] Added snippet code to str.isspace method
adorilson Mar 22, 2021
e330c3c
[Doc] Adde snippet code to str.istitle method
adorilson Mar 22, 2021
898a0cb
[Doc] Added snippet code to str.join method
adorilson May 11, 2021
9426500
[Doc] Added snippet code to str.ljust method
adorilson May 12, 2021
6920436
[Doc] Added snippet code to str.rjust method
adorilson May 12, 2021
e4f205f
[Doc] Added 'See also' in str.lstrip and str.rstrip methods from one …
adorilson May 12, 2021
d332cfa
[Doc] Added snippet code to str.maketrans method
adorilson May 12, 2021
fa23de4
[Doc] Added snippet code to str.translate method
adorilson May 12, 2021
bad6e90
[Doc] Added snippet code to str.partition method
adorilson May 12, 2021
73f3a73
[Doc] Added snippet code to str.replace method
adorilson May 12, 2021
78d118b
[Doc] Added snippet code to str.rfind method
adorilson May 12, 2021
8c1f058
[Doc] Added snippet code to str.rindex method
adorilson May 12, 2021
fa84890
[Doc] Added snippet code to str.rpartition method
adorilson May 12, 2021
0064c92
mend
adorilson May 12, 2021
1888446
Revert "mend"
adorilson May 12, 2021
eebd56b
[DOC] minor change
adorilson May 12, 2021
8ea5204
[Doc] Added snippet code to str.rsplit method
adorilson May 12, 2021
b4a68da
[Doc] Added snippet code to str.startswith method
adorilson May 12, 2021
992a7d7
[Doc] Added snippet code to str.swapcase method
adorilson May 12, 2021
58b11f1
[Doc] Added snippet code to str.upper method
adorilson May 13, 2021
a2c17ac
Merge branch 'main' into str_methods
adorilson Oct 11, 2022
180f61c
Merge branch 'python:main' into str_methods
adorilson Oct 11, 2022
7dc5c2b
Merge branch 'python:main' into str_methods
adorilson Oct 12, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading