Skip to content

Commit d8b4e26

Browse files
committed
Add more modules
1 parent 11694e3 commit d8b4e26

34 files changed

+37
-3
lines changed

Lib/_colorize.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# upstream_version: v3.13.7
12
from __future__ import annotations
23
import io
34
import os

Lib/_ios_support.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# upstream_version: v3.13.7
12
import sys
23
try:
34
from ctypes import cdll, c_void_p, c_char_p, util

Lib/_osx_support.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# upstream_version: v3.13.7
12
"""Shared OS X support functions."""
23

34
import os

Lib/_py_abc.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# upstream_version: v3.13.7
12
from _weakrefset import WeakSet
23

34

Lib/_pydecimal.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# upstream_version: v3.13.7
12
# Copyright (c) 2004 Python Software Foundation.
23
# All rights reserved.
34

@@ -6083,7 +6084,7 @@ def _convert_for_comparison(self, other, equality_op=False):
60836084
(?P<alt>\#)?
60846085
(?P<zeropad>0)?
60856086
(?P<minimumwidth>(?!0)\d+)?
6086-
(?P<thousands_sep>,)?
6087+
(?P<thousands_sep>[,_])?
60876088
(?:\.(?P<precision>0|(?!0)\d+))?
60886089
(?P<type>[eEfFgGn%])?
60896090
\Z

Lib/calendar.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# upstream_version: v3.13.7
12
"""Calendar printing functions
23
34
Note when comparing these calendars to the ones printed by cal(1): By

Lib/cmd.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# upstream_version: v3.13.7
12
"""A generic class to build line-oriented command interpreters.
23
34
Interpreters constructed with this class obey the following conventions:

Lib/colorsys.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# upstream_version: v3.13.7
12
"""Conversion functions between RGB and other color systems.
23
34
This modules provides two functions for each color system ABC:

Lib/csv.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# upstream_version: v3.13.7
12

23
r"""
34
CSV parsing and writing.

Lib/difflib.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# upstream_version: v3.13.7
12
"""
23
Module difflib -- helpers for computing deltas between objects.
34
@@ -78,8 +79,8 @@ class SequenceMatcher:
7879
sequences. As a rule of thumb, a .ratio() value over 0.6 means the
7980
sequences are close matches:
8081
81-
>>> print(round(s.ratio(), 3))
82-
0.866
82+
>>> print(round(s.ratio(), 2))
83+
0.87
8384
>>>
8485
8586
If you're only interested in where the sequences match,

0 commit comments

Comments
 (0)