Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitcafd7a9

Browse files
committed
feat: add a share button to doc titles
1 parent6a78bbc commitcafd7a9

File tree

102 files changed

+409
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+409
-1
lines changed

‎docs/builtin/abs.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ title: Python abs() built-in function - Python Cheatsheet
33
description:Return the absolute value of a number. The argument may be an integer, a floating point number, or an object implementing __abs__(). If the argument is a complex number, its magnitude is returned.
44
---
55

6+
<base-title:title="frontmatter.title":description="frontmatter.description">
7+
68
#Python abs() built-in function
79

10+
</base-title>
11+
812
<base-disclaimer>
913
<base-disclaimer-title>
1014
From the <a target="_blank" href="https://docs.python.org/3/library/functions.html#abs">Python 3 documentation</a>

‎docs/builtin/aiter.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ title: Python aiter() built-in function - Python Cheatsheet
33
description:Return an asynchronous iterator for an asynchronous iterable. Equivalent to calling x.__aiter__().
44
---
55

6+
<base-title:title="frontmatter.title":description="frontmatter.description">
7+
68
#Python aiter() built-in function
79

10+
</base-title>
11+
812
<base-disclaimer>
913
<base-disclaimer-title>
1014
From the <a target="_blank" href="https://docs.python.org/3/library/functions.html#aiter">Python 3 documentation</a>

‎docs/builtin/all.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ title: Python all() built-in function - Python Cheatsheet
33
description:Return True if all elements of the iterable are true (or if the iterable is empty).
44
---
55

6+
<base-title:title="frontmatter.title":description="frontmatter.description">
7+
68
#Python all() built-in function
79

10+
</base-title>
11+
812
<base-disclaimer>
913
<base-disclaimer-title>
1014
From the <a target="_blank" href="https://docs.python.org/3/library/functions.html#all">Python 3 documentation</a>

‎docs/builtin/any.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ title: Python any() built-in function - Python Cheatsheet
33
description:Return True if any element of the iterable is true. If the iterable is empty, return False.
44
---
55

6+
<base-title:title="frontmatter.title":description="frontmatter.description">
7+
68
#Python any() built-in function
79

10+
</base-title>
11+
812
<base-disclaimer>
913
<base-disclaimer-title>
1014
From the <a target="_blank" href="https://docs.python.org/3/library/functions.html#any">Python 3 documentation</a>

‎docs/builtin/ascii.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ title: Python ascii() built-in function - Python Cheatsheet
33
description:As repr(), return a string containing a printable representation of an object, but escape the non-ASCII characters in the string returned by repr() using \x, \u, or \U escapes.
44
---
55

6+
<base-title:title="frontmatter.title":description="frontmatter.description">
7+
68
#Python ascii() built-in function
79

10+
</base-title>
11+
812
<base-disclaimer>
913
<base-disclaimer-title>
1014
From the <a target="_blank" href="https://docs.python.org/3/library/functions.html#ascii">Python 3 documentation</a>

‎docs/builtin/bin.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ title: Python bin() built-in function - Python Cheatsheet
33
description:Convert an integer number to a binary string prefixed with “0b”. The result is a valid Python expression. If x is not a Python int object, it has to define an __index__() method that returns an integer.
44
---
55

6+
<base-title:title="frontmatter.title":description="frontmatter.description">
7+
68
#Python bin() built-in function
79

10+
</base-title>
11+
812
<base-disclaimer>
913
<base-disclaimer-title>
1014
From the <a target="_blank" href="https://docs.python.org/3/library/functions.html#bin">Python 3 documentation</a>

‎docs/builtin/bool.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ title: Python bool() built-in function - Python Cheatsheet
33
description:Return a Boolean value, i.e. one of True or False. x is converted using the standard truth testing procedure. If x is false or omitted, this returns False; otherwise, it returns True. The bool class is a subclass of int. It cannot be subclassed further. Its only instances are False and True.
44
---
55

6+
<base-title:title="frontmatter.title":description="frontmatter.description">
7+
68
#Python bool() built-in function
79

10+
</base-title>
11+
812
<base-disclaimer>
913
<base-disclaimer-title>
1014
From the <a target="_blank" href="https://docs.python.org/3/library/functions.html#bool">Python 3 documentation</a>

‎docs/builtin/breakpoint.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ title: Python breakpoint() built-in function - Python Cheatsheet
33
description:This function drops you into the debugger at the call site. Specifically, it calls sys.breakpointhook(), passing args and kws straight through. By default, sys.breakpointhook() calls pdb.set_trace() expecting no arguments. In this case, it is purely a convenience function so you don’t have to explicitly import pdb or type as much code to enter the debugger. However, sys.breakpointhook() can be set to some other function and breakpoint() will automatically call that, allowing you to drop into the debugger of choice.
44
---
55

6+
<base-title:title="frontmatter.title":description="frontmatter.description">
7+
68
#Python breakpoint() built-in function
79

10+
</base-title>
11+
812
<base-disclaimer>
913
<base-disclaimer-title>
1014
From the <a target="_blank" href="https://docs.python.org/3/library/functions.html#breakpoint">Python 3 documentation</a>

‎docs/builtin/bytearray.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ title: Python bytearray() built-in function - Python Cheatsheet
33
description:Return a new array of bytes. The bytearray class is a mutable sequence of integers in the range [...]. It has most of the usual methods of mutable sequences, described in Mutable Sequence Types, as well as most methods that the bytes type has [...]
44
---
55

6+
<base-title:title="frontmatter.title":description="frontmatter.description">
7+
68
#Python bytearray() built-in function
79

10+
</base-title>
11+
812
<base-disclaimer>
913
<base-disclaimer-title>
1014
From the <a target="_blank" href="https://docs.python.org/3/library/functions.html#bytearray">Python 3 documentation</a>

‎docs/builtin/bytes.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ title: Python bytes() built-in function - Python Cheatsheet
33
description:Return a new “bytes” object which is an immutable sequence of integers in the range [...]. bytes is an immutable version of bytearray – it has the same non-mutating methods and the same indexing and slicing behavior.
44
---
55

6+
<base-title:title="frontmatter.title":description="frontmatter.description">
7+
68
#Python bytes() built-in function
79

10+
</base-title>
11+
812
<base-disclaimer>
913
<base-disclaimer-title>
1014
From the <a target="_blank" href="https://docs.python.org/3/library/functions.html#bytes">Python 3 documentation</a>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp