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.
 
 
 
 
 
 
Shane Harvey c4c9866064 bpo-31107: Fix copyreg mangled slot names calculation. (#2989) 9 years ago
..
asyncio bpo-30280: Cleanup threads in ayncio tests (#2501) 9 years ago
collections Issues #29311, #29289: Fixed and improved docstrings for dict and OrderedDict 9 years ago
concurrent bpo-29212: Fix the ugly repr() ThreadPoolExecutor thread name. (#2315) 9 years ago
ctypes [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302) 9 years ago
curses Issue #13051: Fixed recursion errors in large or resized curses.textpad.Textbox. 9 years ago
dbm bpo-30144: Import collections ABC from collections.abc rather than collections. (#1263) 9 years ago
distutils bpo-30296 Remove unnecessary tuples, lists, sets, and dicts (#1489) 9 years ago
email bpo-30532: Fix whitespace folding in certain cases 9 years ago
encodings Revert #27959: ImportError within an encoding module should also skip the encoding 9 years ago
ensurepip Merge - upgrade pip/setuptools 9 years ago
html bpo-30629: Remove second call of str.lower() in html.parser.parse_endtag. (#2099) 9 years ago
http bpo-28707: Add the directory parameter to http.server.SimpleHTTPRequestHandler and http.server module (#1776) 9 years ago
idlelib Spelling fixes (#2902) 9 years ago
importlib bpo-30891: Fix again importlib _find_and_load() (#2665) 9 years ago
json Fix trivial typo in json module docstring (GH-2274) 9 years ago
lib2to3 bpo-29783: Replace codecs.open() with io.open() (#599) 9 years ago
logging bpo-31080: Allowed logging.config.fileConfig() to accept both args and kwargs. (GH-2979) 9 years ago
msilib #27364: fix "incorrect" uses of escape character in the stdlib. 9 years ago
multiprocessing bpo-31019: Fix multiprocessing.Process.is_alive() (#2875) 9 years ago
pydoc_data Update pydoc topics for 3.6.0b1 9 years ago
site-packages Issue #24633: site-packages/README -> README.txt. 11 years ago
sqlite3 bpo-26187: Test that set_trace_callback() is not called multiple times (GH-461) 9 years ago
test bpo-31107: Fix copyreg mangled slot names calculation. (#2989) 9 years ago
tkinter bpo-25684: ttk.OptionMenu radiobuttons weren't unique (#2276) 9 years ago
turtledemo bpo-30296 Remove unnecessary tuples, lists, sets, and dicts (#1489) 9 years ago
unittest Spelling fixes (#2902) 9 years ago
urllib urllib: Simplify splithost by calling into urlparse. (#1849) 9 years ago
venv bpo-27425: Be more explicit in .gitattributes (GH-840) 9 years ago
wsgiref Issue #26721: Change StreamRequestHandler.wfile to BufferedIOBase 10 years ago
xml bpo-30264: ExpatParser closes the source on error (#1451) 9 years ago
xmlrpc bpo-29615: SimpleXMLRPCDispatcher no longer chains KeyError (#260) 9 years ago
__future__.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
__phello__.foo.py Fix the frozen bytecode for __hello__ (betcha didn't know that existed 25 years ago
_bootlocale.py Issue #28596: The preferred encoding is UTF-8 on Android. 9 years ago
_collections_abc.py bpo-29762: More use "raise from None". (#569) 9 years ago
_compat_pickle.py Issue #15767: Add ModuleNotFoundError. 9 years ago
_compression.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
_dummy_thread.py bpo-6532: Make the thread id an unsigned integer. (#781) 9 years ago
_markupbase.py Issue #13590: Improve support for OS X Xcode 4: 14 years ago
_osx_support.py Fix misplaced positional argument in OS X support library (#1134) 9 years ago
_pydecimal.py bpo-29776: Use decorator syntax for properties. (#585) 9 years ago
_pyio.py Fix bpo-30526: Add TextIOWrapper.reconfigure() and a TextIOWrapper.write_through attribute (#1922) 9 years ago
_sitebuiltins.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
_strptime.py Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch by 10 years ago
_threading_local.py Issue #9707: Rewritten reference implementation of threading.local which 16 years ago
_weakrefset.py bpo-30296 Remove unnecessary tuples, lists, sets, and dicts (#1489) 9 years ago
abc.py bpo-30463: Add an empty __slots__ to abc.ABC. 9 years ago
aifc.py bpo-29762: More use "raise from None". (#569) 9 years ago
antigravity.py Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam. 9 years ago
argparse.py Issue #29290: Merge 3.5. 9 years ago
ast.py bpo-29637: clean docstring only if not None (GH-267) 9 years ago
asynchat.py Issue #27034: Removed deprecated class asynchat.fifo. 10 years ago
asyncore.py bpo-30980: Fix double close in asyncore.file_wrapper (#2789) 9 years ago
base64.py Add Python version since deprecation in base64 methods. (#33) 9 years ago
bdb.py bpo-30211: bdb: add docstrings (#1350) 9 years ago
binhex.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
bisect.py Issue #28792: Remove aliases from _bisect 9 years ago
bz2.py Issue #28225: bz2 module now supports pathlib 9 years ago
cProfile.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
calendar.py bpo-30095: Make CSS classes used by calendar.HTMLCalendar customizable (GH-1439) 9 years ago
cgi.py bpo-29979: Rewrite cgi.parse_multipart to make it consistent with FieldStorage (#991) 9 years ago
cgitb.py Issue #25314: store_true and store_false also create appropriate defaults. 14 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 bpo-30166: Import command-line parsing modules only when needed. (#1293) 9 years ago
codecs.py bpo-29783: Replace codecs.open() with io.open() (#599) 9 years ago
codeop.py correct porting error with raise #7161 16 years ago
colorsys.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
compileall.py Issue #28485: Merge single-threading fix from 3.6 9 years ago
configparser.py bpo-29762: More use "raise from None". (#569) 9 years ago
contextlib.py bpo-30266: support "= None" pattern in AbstractContextManager (#1448) 9 years ago
copy.py Issue #26167: Minimized overhead in copy.copy() and copy.deepcopy(). 10 years ago
copyreg.py bpo-31107: Fix copyreg mangled slot names calculation. (#2989) 9 years ago
crypt.py Issue #25287: Don't add crypt.METHOD_CRYPT to crypt.methods if it's not 10 years ago
csv.py Issue #29405: Make total calculation in _guess_delimiter more accurate. 9 years ago
datetime.py Closes issue bpo-5288: Allow tzinfo objects with sub-minute offsets. (#2896) 9 years ago
decimal.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
difflib.py bpo-29762: More use "raise from None". (#569) 9 years ago
dis.py bpo-11822: Improve disassembly to show embedded code objects. (#1844) 9 years ago
doctest.py bpo-30166: Import command-line parsing modules only when needed. (#1293) 9 years ago
dummy_threading.py Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. 18 years ago
enum.py Spelling fixes (#2902) 9 years ago
filecmp.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
fileinput.py bpo-30432: FileInput doesn't accept PathLike objects for file names (#1732) 9 years ago
fnmatch.py Issue #22493: Inline flags now should be used only at the start of the 9 years ago
formatter.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
fractions.py Issue #27832: Make _normalize parameter to Fraction.__init__ keyword-only. 10 years ago
ftplib.py bpo-30119: fix ftplib.FTP.putline() to throw an error for a illegal command (#1214) 9 years ago
functools.py merge 9 years ago
genericpath.py Issue #26027, #27524: Add PEP 519/__fspath__() support to os and 10 years ago
getopt.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
getpass.py getpass: update docstrings (#49) 9 years ago
gettext.py bpo-29755: Fixed the lgettext() family of functions in the gettext module. (#2266) 9 years ago
glob.py Issue #25596: Optimized glob() and iglob() functions in the 9 years ago
gzip.py Issue #28227: gzip now supports pathlib 9 years ago
hashlib.py Issue #16113: Add SHA-3 and SHAKE support to hashlib module. 9 years ago
heapq.py Issue #25314: Remove confused statement about const argument 10 years ago
hmac.py Use sequence repetition instead of bytes constructor with integer argument. 9 years ago
imaplib.py bpo-30329: Catch Windows error 10022 on shutdown() (#1538) 9 years ago
imghdr.py Issue #28228: imghdr now supports pathlib 9 years ago
imp.py bpo-30645: don't append to an inner loop path in imp.load_package() (GH-2268) 9 years ago
inspect.py bpo-25532: Protect against infinite loops in inspect.unwrap() (#1717) 9 years ago
io.py Issue #1602: Windows console doesn't input or print Unicode (PEP 528) 10 years ago
ipaddress.py bpo-29931 fix __lt__ check in ipaddress.ip_interface for both v4 and v6. (#879) 9 years ago
keyword.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
linecache.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
locale.py bpo-30144: Import collections ABC from collections.abc rather than collections. (#1263) 9 years ago
lzma.py Issue #27181 remove geometric_mean and defer for 3.7. 9 years ago
macpath.py bpo-9850: Deprecate the macpath module (#1540) 9 years ago
mailbox.py bpo-29762: More use "raise from None". (#569) 9 years ago
mailcap.py #14977: Make mailcap respect the order of the lines in the mailcap file. 9 years ago
mimetypes.py bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) 9 years ago
modulefinder.py Remove unused imports. 9 years ago
netrc.py bpo-29762: More use "raise from None". (#569) 9 years ago
nntplib.py bpo-29762: More use "raise from None". (#569) 9 years ago
ntpath.py Issue #29197: Removed deprecated function ntpath.splitunc(). 9 years ago
nturl2path.py bpo-29836: Remove nturl2path from test_sundry and amend the module docstring (GH-694) 9 years ago
numbers.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
opcode.py Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes. 9 years ago
operator.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
optparse.py Merge doc and comment fixes from 3.5 10 years ago
os.py bpo-30441: Fix bug when modifying os.environ while iterating over it (#2409) 9 years ago
pathlib.py bpo-30897: Add is_mount() to pathlib.Path (#2669) 9 years ago
pdb.py Issue #20766: Merge with 3.5. 9 years ago
pickle.py bpo-29762: More use "raise from None". (#569) 9 years ago
pickletools.py bpo-30174: Remove duplicate definition from pickletools (#1301) 9 years ago
pipes.py Issue #13590: Improve support for OS X Xcode 4: 14 years ago
pkgutil.py bpo-24744: Raises error in pkgutil.walk_packages if path is str (#1926) 9 years ago
platform.py bpo-27593: Get SCM build info from git instead of hg. (#446) 9 years ago
plistlib.py bpo-29196: Removed old-deprecated classes Plist, Dict and _InternalDict (#488) 9 years ago
poplib.py bpo-30329: Catch Windows error 10022 on shutdown() (#1538) 9 years ago
posixpath.py Issue #26027, #27524: Add PEP 519/__fspath__() support to os and 10 years ago
pprint.py Issue #26778: Fixed "a/an/and" typos in code comment and documentation. 10 years ago
profile.py bpo-30166: Import command-line parsing modules only when needed. (#1293) 9 years ago
pstats.py bpo-30296 Remove unnecessary tuples, lists, sets, and dicts (#1489) 9 years ago
pty.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
py_compile.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
pyclbr.py bpo-6691: Pyclbr now reports nested classes and functions. (#2503) 9 years ago
pydoc.py bpo-29776: Use decorator syntax for properties. (#585) 9 years ago
queue.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
quopri.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
random.py fix comment (#1798) 9 years ago
re.py bpo-30215: Make re.compile() locale agnostic. (#1361) 9 years ago
reprlib.py Issue #26634: recursive_repr() now sets __qualname__ of wrapper. 10 years ago
rlcompleter.py Merge 3.5 10 years ago
runpy.py Issue #27487: Merge runpy warning from 3.5 10 years ago
sched.py Issue #5830: Remove old comment. Add empty slots. 9 years ago
secrets.py Issue #29061: secrets.randbelow() would hang with a negative input 9 years ago
selectors.py bpo-30624 remaining bare except (#2108) 9 years ago
shelve.py bpo-30144: Import collections ABC from collections.abc rather than collections. (#1263) 9 years ago
shlex.py Fixed #29132: Updated shlex to work better with punctuation chars in POSIX mode. 9 years ago
shutil.py bpo-30218: support path-like objects in shutil.unpack_archive() (GH-1367) 9 years ago
signal.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
site.py bpo-30804: fix macOS build with framework enabled. (#2516) 9 years ago
smtpd.py Issue #27110: Add smtpd.SMTPChannel to __all__, by Jacek Kołodziej 10 years ago
smtplib.py bpo-30394: Fix a socket leak in smtplib.SMTP.__init__() (#1700) 9 years ago
sndhdr.py Issue #24878: Add docstrings to selected namedtuples 11 years ago
socket.py Issue #26384: Merge from 3.5 9 years ago
socketserver.py Remove unused imports. 9 years ago
sre_compile.py bpo-30299: Display a bytecode when compile a regex in debug mode. (#1491) 9 years ago
sre_constants.py bpo-30398: Add a docstring for re.error. (#1647) 9 years ago
sre_parse.py bpo-30605: Fix compiling binary regexs with BytesWarnings enabled. (#2016) 9 years ago
ssl.py Issue #28085: Add PROTOCOL_TLS_CLIENT and PROTOCOL_TLS_SERVER for SSLContext 9 years ago
stat.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
statistics.py bpo-29919: Remove unused imports found by pyflakes (#137) 9 years ago
string.py Issue #29193: A format string argument for string.Formatter.format() 9 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-30730: Prevent environment variables injection in subprocess on Windows. (#2325) 9 years ago
sunau.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
symbol.py Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. 9 years ago
symtable.py bpo-30296 Remove unnecessary tuples, lists, sets, and dicts (#1489) 9 years ago
sysconfig.py bpo-29585: optimize site.py startup time (GH-136) 9 years ago
tabnanny.py bpo-30166: Import command-line parsing modules only when needed. (#1293) 9 years ago
tarfile.py Remove two legacy constants which hopefully have no consumers (#1087) 9 years ago
telnetlib.py #25485: Add context manager support to Telnet class. 10 years ago
tempfile.py Add a source parameter to warnings.warn() 10 years ago
textwrap.py bpo-30620: Remove dead lines from textwrap.dedent (GH-2064) 9 years ago
this.py Fix most trivially-findable print statements. 19 years ago
threading.py bpo-16500: Don't use string constants for os.register_at_fork() behavior (#1834) 9 years ago
timeit.py bpo-29661: fix contradiction in timeit.Timer.autorange's docstring (GH-331) 9 years ago
token.py bpo-25324: copy tok_name before changing it (#1608) 9 years ago
tokenize.py bpo-25324: copy tok_name before changing it (#1608) 9 years ago
trace.py bpo-30166: Import command-line parsing modules only when needed. (#1293) 9 years ago
traceback.py bpo-30296 Remove unnecessary tuples, lists, sets, and dicts (#1489) 9 years ago
tracemalloc.py bpo-30144: Import collections ABC from collections.abc rather than collections. (#1263) 9 years ago
tty.py final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be 25 years ago
turtle.py bpo-30296 Remove unnecessary tuples, lists, sets, and dicts (#1489) 9 years ago
types.py bpo:29950: Rename SlotWrapperType to WrapperDescriptorType (GH-926) 9 years ago
typing.py bpo-28556: Updates to typing module (#2076) 9 years ago
uu.py bpo-30103: Allow Uuencode in Python using backtick as zero instead of space (#1326) 9 years ago
uuid.py bpo-22807: Expose platform UUID generation safety information. (#138) 9 years ago
warnings.py Simplify code in warnings modules (#1935) 9 years ago
wave.py Issue #23883: Add missing APIs to __all__; patch by Jacek Kołodziej 10 years ago
weakref.py bpo-30144: Import collections ABC from collections.abc rather than collections. (#1263) 9 years ago
webbrowser.py bpo-29645: Speed up importing the webbrowser module. (#484) 9 years ago
xdrlib.py Issue #25314: store_true and store_false also create appropriate defaults. 14 years ago
zipapp.py bpo-29901: Improve support of path-like objects in zipapp. (#815) 9 years ago
zipfile.py Revert bpo-26293 for zipfile breakage. See also bpo-29094. (#1484) 9 years ago