mirror of
https://github.com/python/cpython.git
synced 2024-12-02 06:14:49 +08:00
Changed the extended slice example to show that you can reverse a
string with a [::-1] slice.
This commit is contained in:
parent
e9996c6093
commit
2e82e717e6
@ -10,8 +10,8 @@ Core and builtins
|
||||
finally clause. [SF bug 567538]
|
||||
|
||||
- Most builtin sequences now support "extended slices", i.e. slices
|
||||
with a third "stride" parameter. For example, "range(10)[1:6:2]"
|
||||
evaluates to [1, 3, 5].
|
||||
with a third "stride" parameter. For example, "hello world"[::-1]
|
||||
gives "dlrow olleh".
|
||||
|
||||
- Cycles going through the __class__ link of a new-style instance are
|
||||
now detected by the garbage collector.
|
||||
|
Loading…
Reference in New Issue
Block a user