You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Dennis Sweeney 1e7e4519a8
bpo-40459: Fix NameError in platform.py (GH-19855)
6 years ago
..
asyncio bpo-40443: Remove unused imports in the stdlib (GH-19803) 6 years ago
collections Expand the implementation comments (GH-19699) 6 years ago
concurrent bpo-40443: Remove unused imports in the stdlib (GH-19803) 6 years ago
ctypes bpo-40443: Remove unused imports in the stdlib (GH-19803) 6 years ago
curses [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620) 7 years ago
dbm bpo-36232: Improve error message on dbm.open() when the db doesn't exist (GH-12060) 7 years ago
distutils bpo-40443: Remove unused imports in distutils (GH-19802) 6 years ago
email bpo-39073: validate Address parts to disallow CRLF (#19007) 6 years ago
encodings bpo-30566: Fix IndexError when using punycode codec (GH-18632) 6 years ago
ensurepip bpo-38662: ensurepip invokes pip via runpy (GH-18901) 6 years ago
html bpo-37328: remove deprecated HTMLParser.unescape (GH-14186) 7 years ago
http bpo-39481: PEP 585 for a variety of modules (GH-19423) 6 years ago
idlelib bpo-40443: Remove unused imports in idlelib (GH-19801) 6 years ago
importlib bpo-40443: Remove unused imports in stdlib (GH-19815) 6 years ago
json bpo-39828: Fix json.tool to catch BrokenPipeError (GH-18779) 6 years ago
lib2to3 bpo-40360: Deprecate lib2to3 module in light of PEP 617 (GH-19663) 6 years ago
logging bpo-40300: Allow empty logging.Formatter.default_msec_format. (GH-19551) 6 years ago
msilib Remove binding of captured exceptions when not used to reduce the chances of creating cycles (GH-17246) 6 years ago
multiprocessing bpo-40443: Remove unused imports in stdlib (GH-19815) 6 years ago
pydoc_data Python 3.9.0a6 6 years ago
site-packages Issue #24633: site-packages/README -> README.txt. 11 years ago
sqlite3 bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is set. (GH-18942) 6 years ago
test bpo-40275: test.support imports lazily locale import (GH-19761) 6 years ago
tkinter bpo-39152: add missing ttk.Scale.configure return value (GH-17815) 6 years ago
turtledemo bpo-40431: Fix syntax typo in turtledemo (GH-19777) 6 years ago
unittest bpo-40462: fix variable and function names (GH-19832) 6 years ago
urllib bpo-39481: PEP 585 for a variety of modules (GH-19423) 6 years ago
venv bpo-38972: Link to instructions to change PowerShell execution policy (GH-19131) 6 years ago
wsgiref bpo-8138: Initialize wsgiref's SimpleServer as single-threaded (GH-12977) 7 years ago
xml bpo-40443: Remove unused imports in the stdlib (GH-19803) 6 years ago
xmlrpc bpo-38786: Add parsing of https links to pydoc (GH-17143) 6 years ago
__future__.py bpo-39562: Prevent collision of future and compiler flags (GH-19230) 6 years ago
__phello__.foo.py Fix the frozen bytecode for __hello__ (betcha didn't know that existed 25 years ago
_aix_support.py bpo-39936: _aix_support uses _bootsubprocess (GH-18970) 6 years ago
_bootlocale.py bpo-29240: PEP 540: Add a new UTF-8 Mode (#855) 8 years ago
_bootsubprocess.py bpo-40094: Add os.waitstatus_to_exitcode() (GH-19201) 6 years ago
_collections_abc.py bpo-39481: Implementation for PEP 585 (#18239) 6 years ago
_compat_pickle.py Issue #15767: Add ModuleNotFoundError. 10 years ago
_compression.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
_markupbase.py Issue #13590: Improve support for OS X Xcode 4: 14 years ago
_osx_support.py bpo-38360: macOS: support alternate form of -isysroot flag (GH-16480) 6 years ago
_py_abc.py bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) 7 years ago
_pydecimal.py bpo-39794: Add --without-decimal-contextvar (#18702) 6 years ago
_pyio.py bpo-39674: Revert "bpo-37330: open() no longer accept 'U' in file mode (GH-16959)" (GH-18767) 6 years ago
_sitebuiltins.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
_strptime.py Fix outdated comment in _strptime.py (GH-17929) 6 years ago
_threading_local.py bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) 7 years ago
_weakrefset.py bpo-39481: Make weakref and WeakSet generic (GH-19497) 6 years ago
abc.py bpo-35609: Remove examples for deprecated decorators in the abc module. (GH-11355) 7 years ago
aifc.py bpo-37320: Remove openfp() of aifc, sunau and wave (GH-14169) 7 years ago
antigravity.py bpo-9216: Nobody expects the geohashing FIPS inquisition (GH-19520) 6 years ago
argparse.py bpo-39546: argparse: Honor allow_abbrev=False for specified prefix_chars (GH-18337) 6 years ago
ast.py bpo-38870: Don't start generated output with newlines in ast.unparse (GH-19636) 6 years ago
asynchat.py Remove binding of captured exceptions when not used to reduce the chances of creating cycles (GH-17246) 6 years ago
asyncore.py bpo-15999: Always pass bool instead of int to socket.setblocking(). (GH-15621) 7 years ago
base64.py bpo-39351: Remove base64.encodestring() (GH-18022) 6 years ago
bdb.py bpo-39649: Remove obsolete check for `__args__` in bdb.Bdb.format_stack_entry (GH-18531) 6 years ago
binhex.py bpo-39353: binascii.crc_hqx() is no longer deprecated (GH-18276) 6 years ago
bisect.py bpo-38626: Add comment explaining why __lt__ is used. (GH-16978) 6 years ago
bz2.py bpo-40443: Remove unused imports in the stdlib (GH-19803) 6 years ago
cProfile.py [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620) 7 years ago
calendar.py bpo-28292: Mark calendar.py helper functions as private. (GH-15113) 7 years ago
cgi.py bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has… (#10638) 7 years ago
cgitb.py bpo-33311: Do not display parameters displayed in parentheses for module call. (GH-6677) 8 years ago
chunk.py bpo-29762: More use "raise from None". (#569) 9 years ago
cmd.py Issue #13590: Improve support for OS X Xcode 4: 14 years ago
code.py Fix documentation in code.py (GH-17988) 6 years ago
codecs.py bpo-38971: Open file in codecs.open() closes if exception raised. (GH-17666) 6 years ago
codeop.py bpo-36820: Break unnecessary cycle in socket.py, codeop.py and dyld.py (GH-13135) 6 years ago
colorsys.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
compileall.py compileall: Fix typos in docstring (GH-19810) 6 years ago
configparser.py fix typo in configparser doc (GH-12154) 7 years ago
contextlib.py bpo-39481: Implementation for PEP 585 (#18239) 6 years ago
contextvars.py bpo-32436: Implement PEP 567 (#5027) 8 years ago
copy.py bpo-38293: Allow shallow and deep copying of property objects (GH-16438) 6 years ago
copyreg.py bpo-33138: Change standard error message for non-pickleable and non-copyable types. (GH-6239) 7 years ago
crypt.py closes bpo-38402: Check error of primitive crypt/crypt_r. (GH-16599) 6 years ago
csv.py bpo-27497: Add return value to csv.DictWriter.writeheader (GH-12306) 7 years ago
dataclasses.py bpo-39481: PEP 585 for dataclasses, mailbox, contextvars (GH-19425) 6 years ago
datetime.py bpo-38155: Add __all__ to datetime module (GH-16203) 7 years ago
decimal.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
difflib.py bpo-40394 - difflib.SequenceMatched.find_longest_match default args (GH-19742) 6 years ago
dis.py bpo-38115: Deal with invalid bytecode offsets in lnotab (GH-16079) 7 years ago
doctest.py bpo-1812: Fix newline conversion when doctest.testfile loads from a package whose loader has a get_data method (GH-17385) 6 years ago
enum.py bpo-40025: Require _generate_next_value_ to be defined before members (GH-19098) 6 years ago
filecmp.py bpo-39481: PEP 585 for difflib, filecmp, fileinput (#19422) 6 years ago
fileinput.py bpo-39481: PEP 585 for difflib, filecmp, fileinput (#19422) 6 years ago
fnmatch.py bpo-32775: Fix regular expression warnings in fnmatch. (#5583) 8 years ago
formatter.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
fractions.py bpo-39350: Fix fractions for int subclasses (GH-18375) 6 years ago
ftplib.py bpo-39380: Change ftplib encoding from latin-1 to utf-8 (GH-18048) 6 years ago
functools.py bpo-39481: Make functools.cached_property, partial, partialmethod generic (#19427) 6 years ago
genericpath.py bpo-38807: Add os.PathLike to exception message raised by _check_arg_types (#17160) 6 years ago
getopt.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
getpass.py Remove binding of captured exceptions when not used to reduce the chances of creating cycles (GH-17246) 6 years ago
gettext.py bpo-36239: Skip comments in gettext infos (GH-12255) 7 years ago
glob.py bpo-38149: Call sys.audit() only once per call for glob.glob(). (GH-18360) 6 years ago
gzip.py bpo-39389: gzip: fix compression level metadata (GH-18077) 6 years ago
hashlib.py bpo-38153: Normalize hashlib algorithm names (GH-16083) 7 years ago
heapq.py bpo-29984: Improve 'heapq' test coverage (GH-992) 7 years ago
hmac.py bpo-33604: Raise TypeError on missing hmac arg. (GH-16805) 6 years ago
imaplib.py bpo-40375: Implement imaplib.IMAP4.unselect (GH-19712) 6 years ago
imghdr.py Issue #28228: imghdr now supports pathlib 10 years ago
imp.py closes bpo-34056: Always return bytes from _HackedGetData.get_data(). (GH-8130) 8 years ago
inspect.py bpo-35113: Fix inspect.getsource to return correct source for inner classes (#10307) 6 years ago
io.py bpo-36842: Implement PEP 578 (GH-12613) 7 years ago
ipaddress.py bpo-39481: PEP 585 for ipaddress.py (GH-19418) 6 years ago
keyword.py bpo-36143: Regenerate Lib/keyword.py from the Grammar and Tokens file using pgen (GH-12456) 7 years ago
linecache.py Fix linecache.py add lazycache to __all__ and use dict.clear to clear the cache (GH-4641) 6 years ago
locale.py bpo-38536: locale: Remove trailing space in formatted currency (GH-16864) 6 years ago
lzma.py Issue #27181 remove geometric_mean and defer for 3.7. 10 years ago
mailbox.py bpo-39481: PEP 585 for dataclasses, mailbox, contextvars (GH-19425) 6 years ago
mailcap.py bpo-40094: mailcap.test() uses waitstatus_to_exitcode() (GH-19287) 6 years ago
mimetypes.py bpo-39299: Add more tests for mimetypes and its cli. (GH-17949) 6 years ago
modulefinder.py bpo-40443: Remove unused imports in the stdlib (GH-19803) 6 years ago
netrc.py bpo-28334: netrc() now uses expanduser() to find .netrc file (GH-4537) 8 years ago
nntplib.py bpo-39366: Remove xpath() and xgtitle() methods of NNTP (GH-18035) 6 years ago
ntpath.py bpo-38453: Ensure ntpath.realpath correctly resolves relative paths (GH-16967) 6 years ago
nturl2path.py bpo-29836: Remove nturl2path from test_sundry and amend the module docstring (GH-694) 9 years ago
numbers.py Fix miscellaneous typos (#4275) 8 years ago
opcode.py bpo-39320: Handle unpacking of **values in compiler (GH-18141) 6 years ago
operator.py bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) 7 years ago
optparse.py bpo-34605: Avoid master/slave terms (GH-9101) 8 years ago
os.py bpo-39481: Implementation for PEP 585 (#18239) 6 years ago
pathlib.py bpo-40148: Add PurePath.with_stem() (GH-19295) 6 years ago
pdb.py bpo-38723: Pdb._runscript should use io.open_code() instead of open() (GH-17127) 6 years ago
pickle.py bpo-39435: Make the first argument of pickle.loads() positional-only. (GH-19846) 6 years ago
pickletools.py bpo-36785: PEP 574 implementation (GH-7076) 7 years ago
pipes.py Issue #13590: Improve support for OS X Xcode 4: 14 years ago
pkgutil.py bpo-12915: Improve Unicode support for package names and attributes. (GH-18517) 6 years ago
platform.py bpo-40459: Fix NameError in platform.py (GH-19855) 6 years ago
plistlib.py bpo-40443: Remove unused imports in the stdlib (GH-19803) 6 years ago
poplib.py bpo-39259: poplib now rejects timeout = 0 (GH-17912) 6 years ago
posixpath.py bpo-35755: Remove current directory from posixpath.defpath (GH-11586) 7 years ago
pprint.py bpo-37376: pprint support for SimpleNamespace (GH-14318) 7 years ago
profile.py [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620) 7 years ago
pstats.py bpo-37958: Adding get_profile_dict to pstats (GH-15495) 6 years ago
pty.py bpo-39184: Add audit events to command execution functions in os and pty modules (GH-17824) 6 years ago
py_compile.py bpo-22640: Add silent mode to py_compile.compile() (GH-12976) 7 years ago
pyclbr.py Fix typos in docs and docstrings (GH-13745) 7 years ago
pydoc.py bpo-40257: Improve help for the typing module (GH-19546) 6 years ago
queue.py bpo-39481: PEP 585 for a variety of modules (GH-19423) 6 years ago
quopri.py bpo-15999: Clean up of handling boolean arguments. (GH-15610) 7 years ago
random.py bpo-40465: Deprecate the optional argument to random.shuffle(). (#19867) 6 years ago
re.py bpo-40016: re docstring: Clarify relationship of inline and argument flags (#19078) 6 years ago
reprlib.py bpo-31370: Remove support for threads-less builds (#3385) 9 years ago
rlcompleter.py Merge 3.5 10 years ago
runpy.py bpo-40108: Improve the error message in runpy when importing a module that includes the extension (GH-19239) 6 years ago
sched.py bpo-31370: Remove support for threads-less builds (#3385) 9 years ago
secrets.py bpo-40286: Add randbytes() method to random.Random (GH-19527) 6 years ago
selectors.py bpo-29255: Wait in KqueueSelector.select when no fds are registered (GH-19508) 6 years ago
shelve.py Fix misleading docsting of shelve.open(). (GH-6427) 8 years ago
shlex.py bpo-33262: Deprecate passing None for `s` to shlex.split() (GH-6514) 6 years ago
shutil.py bpo-39184: Add audit events to functions in `fcntl`, `msvcrt`, `os`, `resource`, `shutil`, `signal`, `syslog` (GH-18407) 6 years ago
signal.py bpo-34282: Fix Enum._convert shadowing members named _convert (GH-8568) 8 years ago
site.py bpo-1294959: Add sys.platlibdir attribute (GH-18381) 6 years ago
smtpd.py bpo-35800: Deprecate smtpd.MailmanProxy (GH-11675) 6 years ago
smtplib.py bpo-39329: Add timeout parameter for smtplib.LMTP constructor (GH-17998) 6 years ago
sndhdr.py bpo-31985: Deprecate openfp in aifc, sunau, and wave (#4344) 8 years ago
socket.py Fix host in address of socket.create_server example. (GH-17706) 6 years ago
socketserver.py Change 'exception happened' to 'exception occurred' in two places (#19767) 6 years ago
sre_compile.py Simplify flags checks in sre_compile.py. (GH-9718) 8 years ago
sre_constants.py bpo-36793: Remove unneeded __str__ definitions. (GH-13081) 7 years ago
sre_parse.py bpo-37723: Fix performance regression on regular expression parsing. (GH-15030) 7 years ago
ssl.py bpo-40443: Remove unused imports in stdlib (GH-19815) 6 years ago
stat.py bpo-38109: Add missing constants to Lib/stat.py (GH-16665) 6 years ago
statistics.py Minor code cleanups for statistics (GH-19873) 6 years ago
string.py bpo-38208: Simplify string.Template by using __init_subclass__(). (GH-16256) 6 years ago
stringprep.py Merged revisions 55007-55179 via svnmerge from 19 years ago
struct.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
subprocess.py bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670) 6 years ago
sunau.py bpo-37320: Remove openfp() of aifc, sunau and wave (GH-14169) 7 years ago
symbol.py bpo-35766: Merge typed_ast back into CPython (GH-11645) 7 years ago
symtable.py bpo-40208: Remove deprecated has_exec method of SymbolTable (GH-19396) 6 years ago
sysconfig.py bpo-24916: Remove an outdated comment. (GH-19101) 6 years ago
tabnanny.py bpo-30166: Import command-line parsing modules only when needed. (#1293) 9 years ago
tarfile.py bpo-18819: tarfile: only set device fields for device files (GH-18080) 6 years ago
telnetlib.py bpo-37363: Add audit events for a range of modules (GH-14301) 7 years ago
tempfile.py bpo-40287: Fix SpooledTemporaryFile.seek() return value (GH-19540) 6 years ago
textwrap.py bpo-30754: Document textwrap.dedent blank line behavior. (GH-14469) 7 years ago
this.py Fix most trivially-findable print statements. 19 years ago
threading.py bpo-40234: Revert "bpo-37266: Daemon threads are now denied in subinterpreters (GH-14049)" (GH-19456) 6 years ago
timeit.py bpo-40419: timeit CLI docs now mention 1,2,5,10,... trials instead of powers of 10 (GH-19752) 6 years ago
token.py bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) 7 years ago
tokenize.py bpo-5028: Fix up rest of documentation for tokenize documenting line (GH-13686) 7 years ago
trace.py bpo-21016: pydoc and trace use sysconfig (GH-18476) 6 years ago
traceback.py Fix typo in Lib/tracepack.py (GH-19605) 6 years ago
tracemalloc.py bpo-37961, tracemalloc: add Traceback.total_nframe (GH-15545) 6 years ago
tty.py final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be 25 years ago
turtle.py Fix typos in docs and docstrings (GH-13745) 7 years ago
types.py bpo-39481: Implementation for PEP 585 (#18239) 6 years ago
typing.py bpo-40389: Improve repr of typing.Optional (#19714) 6 years ago
uu.py bpo-38945: UU Encoding: Don't let newline in filename corrupt the output format (#17418) 6 years ago
uuid.py bpo-39991: Enhance uuid parser for MAC address (GH-19045) 6 years ago
warnings.py bpo-39056: Fix handling invalid warning category in the -W option. (GH-17618) 6 years ago
wave.py Fix a typo in wave module docstring (GH-17009) 6 years ago
weakref.py bpo-36144: Add union operators to WeakValueDictionary584 (#19127) 6 years ago
webbrowser.py Fix typo from base to based (GH-18055) 6 years ago
xdrlib.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
zipapp.py bpo-31638: Add compression support to zipapp (GH-3819) 9 years ago
zipfile.py bpo-40443: Remove unused imports in the stdlib (GH-19803) 6 years ago
zipimport.py bpo-39033: Fix NameError in zipimport during hash validation (GH-17588) 6 years ago