Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v3.3.0b2
/
Lib
1b94ab7
Bump to 3.3b2.
by Georg Brandl
· 13 years ago
v3.3.0b2
a81b481
Fix markup errors and update pydoc topics.
by Georg Brandl
· 13 years ago
80dd1af
Issue #15424: Add a __sizeof__ implementation for array objects.
by Meador Inge
· 13 years ago
03b4d50
Issue #15424: Add a __sizeof__ implementation for array objects.
by Meador Inge
· 13 years ago
688a551
fix docstring wording
by Philip Jenvey
· 13 years ago
f410ce8
Issue #15502: Refactor some code.
by Brett Cannon
· 13 years ago
731d48a
update docstring per the extension package fix, refactor
by Philip Jenvey
· 13 years ago
ac9f2f3
Issue #15576: Allow extension modules to be a package's __init__
by Brett Cannon
· 13 years ago
f4dc920
Issue #15502: Finish bringing importlib.abc in line with the current
by Brett Cannon
· 13 years ago
25a02d4
Issue #15601: fix tkinter test_variables failure with OS X Aqua Tk 8.4
by Andrew Svetlov
· 13 years ago
3a2b97e
Issue #14992: merge from 3.2
by Ned Deily
· 13 years ago
c622f42
Issue #14992: Prevent test_os test_exist_ok_s_isgid_directory test case
by Ned Deily
· 13 years ago
9d512ab
Issue #13072: Fix test_array for installation without the ctypes module
by Victor Stinner
· 13 years ago
2965011
regrtest: give more information when a child process fails with an error
by Victor Stinner
· 13 years ago
bded28c
Issue #13072: Ooops, now fix test_array for Linux with 32-bit wchar_t...
by Victor Stinner
· 13 years ago
8d4734f
Issue #13072: Fix test_array for Windows with 16-bit wchar_t
by Victor Stinner
· 13 years ago
0ed0505
merge heads
by Benjamin Peterson
· 13 years ago
b37df51
fix yield from return value on custom iterators (closes #15568)
by Benjamin Peterson
· 13 years ago
d340b43
Issue #15163: Pydoc shouldn't show __loader__ as a part of a module's data.
by Brett Cannon
· 13 years ago
cb4996a
Issue #15471: Don't use mutable object as default values for the
by Brett Cannon
· 13 years ago
21603c9
merge heads
by Benjamin Peterson
· 13 years ago
4eda937
add another testcase
by Benjamin Peterson
· 13 years ago
415d0f5
Merge
by Antoine Pitrou
· 13 years ago
4adc9a8
Fix CGI tests to take into account the platform's line ending (issue #13119)
by Antoine Pitrou
· 13 years ago
e768c39
Fix CGI tests to take into account the platform's line ending (issue #13119)
by Antoine Pitrou
· 13 years ago
0435400
#15546: Also fix GzipFile.peek().
by Nadeem Vawda
· 13 years ago
e3ded95
Issue #14814: Remove redundant property from interface objects - prefixlen can be accessed via the associated network object
by Nick Coghlan
· 13 years ago
730f67f
Issue 14814: Docs work showed some more cases of networks pretending to be addresses and highlighted the weird approach to implementing the 'is_whatever' properties. Impl now illustrates far more clearly that networks have a property if both their network and broadcast addresses have that property
by Nick Coghlan
· 13 years ago
e0c3f5e
Close #15559: Implementing __index__ creates a nasty interaction with the bytes constructor. At least for 3.3, ipaddress objects must now be explicitly converted with int() and thus can't be passed directly to the hex() builtin.
by Nick Coghlan
· 13 years ago
37d3ff1
#15546: Fix {GzipFile,LZMAFile}.read1()'s handling of pathological input data.
by Nadeem Vawda
· 13 years ago
9c92a69
Fix test_venv to work with universal newlines (issue #13119)
by Antoine Pitrou
· 13 years ago
6f1a40f
Merge universal newlines-related fixes (issue #13119)
by Antoine Pitrou
· 13 years ago
ec2d269
Fix universal newlines test to avoid the newline translation done by sys.stdout.
by Antoine Pitrou
· 13 years ago
894375a
Fix test_sys under Windows (issue #13119)
by Antoine Pitrou
· 13 years ago
fa556bd
Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ended with '\'.
by Andrew Svetlov
· 13 years ago
5ad514d
Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ended with '\'.
by Andrew Svetlov
· 13 years ago
8aaeb2f
Merge
by Antoine Pitrou
· 13 years ago
8486987
Issue #12655: Instead of requiring a custom type, os.sched_getaffinity and
by Antoine Pitrou
· 13 years ago
8280b4b
#15546: Fix BZ2File.read1()'s handling of pathological input data.
by Nadeem Vawda
· 13 years ago
d9f38bc
asynchat speedup improvement: avoid to use a function mimicking old buffer() builtin behavior; instead use plain slicing
by Giampaolo Rodola'
· 13 years ago
90ef747
Close #13119: use "\r\n" newline for sys.stdout/err on Windows
by Victor Stinner
· 13 years ago
7b3f0fa
Close #13119: use "\r\n" newline for sys.stdout/err on Windows
by Victor Stinner
· 13 years ago
ba9b404
MERGE: #15512: Remove remnants of debugging code
by Jesus Cea
· 13 years ago
676e73b
#15512: Remove remnants of debugging code
by Jesus Cea
· 13 years ago
1659b75
MERGE: Closes #15469: Correct __sizeof__ support for deque
by Jesus Cea
· 13 years ago
16e2fca
Closes #15469: Correct __sizeof__ support for deque
by Jesus Cea
· 13 years ago
88ca04e
MERGE: Closes #15512: Correct __sizeof__ support for parser
by Jesus Cea
· 13 years ago
e9c5318
Closes #15512: Correct __sizeof__ support for parser
by Jesus Cea
· 13 years ago
5323173
Closes #15514: Correct __sizeof__ support for cpu_set
by Jesus Cea
· 13 years ago
b3f5501
Close #15534: Fix a typo in the fast search function of the string library (_s => s)
by Victor Stinner
· 13 years ago
4941774
Issue #15502: Bring the importlib.PathFinder docs and docstring more in line with the new import system documentation, and fix various parts of the new docs that weren't quite right given PEP 420 or were otherwise a bit misleading. Also note the key terminology problem still being discussed in the issue
by Nick Coghlan
· 13 years ago
ff79486
Close #15519: Properly expose WindowsRegistryFinder in importlib and bring the name into line with normal import terminology. Original patch by Eric Snow
by Nick Coghlan
· 13 years ago
8a9080f
Issue #15502: Bring the importlib ABCs into line with the current state of the import protocols given PEP 420. Original patch by Eric Snow.
by Nick Coghlan
· 13 years ago
7c7ea62
Issue #15441: Skip test_nonascii_abspath() of test_genericpath on Windows
by Victor Stinner
· 13 years ago
53386d8
Issue #15463: Write a test for faulthandler truncating the name of functions
by Victor Stinner
· 13 years ago
b303580
Issue #15525: Increase timeout when TerminateProcess() fails
by Richard Oudkerk
· 13 years ago
a562ed0
Issue #8847: Merge with 3.2
by Martin v. Löwis
· 13 years ago
4c1730d
Issue #8847: Disable COMDAT folding in Windows PGO builds.
by Martin v. Löwis
· 13 years ago
c9aa321
Closes #15499: Sleep is hardcoded in webbrowser.UnixBrowser
by Jesus Cea
· 13 years ago
0efcf99
abc fixes.
by Barry Warsaw
· 13 years ago
38f75cb
Typo.
by Barry Warsaw
· 13 years ago
9a5af12
merge
by Barry Warsaw
· 13 years ago
233f684
Issue #9803: Don't close IDLE on saving if breakpoint is open.
by Andrew Svetlov
· 13 years ago
06c5c6d
Issue #9803: Don't close IDLE on saving if breakpoint is open.
by Andrew Svetlov
· 13 years ago
336d9ac
Issue #15425: Don't rely on the assumption that the current working directory is on sys.path (this will hopefully appease the XP buildbots)
by Nick Coghlan
· 13 years ago
42c0766
Close #15486: Simplify the mechanism used to remove importlib frames from tracebacks when they just introduce irrelevant noise
by Nick Coghlan
· 13 years ago
d5698cb
Fix initialization of the faulthandler module
by Victor Stinner
· 13 years ago
38732ea
merge
by Barry Warsaw
· 13 years ago
504ba31
Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog.
by Andrew Svetlov
· 13 years ago
1fb0e3f
Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog.
by Andrew Svetlov
· 13 years ago
754d5ef
Better test for BytesIO.__sizeof__, now that the struct module supports (s)size_t.
by Antoine Pitrou
· 13 years ago
eb00d09
Issue #14018: merge
by Ned Deily
· 13 years ago
c556c64
Issue #14018: Update the OS X IDLE Tcl/Tk warning check to include
by Ned Deily
· 13 years ago
57911f6
Issue #15489: Add a __sizeof__ implementation for BytesIO objects.
by Antoine Pitrou
· 13 years ago
8f328d0
Issue #15489: Add a __sizeof__ implementation for BytesIO objects.
by Antoine Pitrou
· 13 years ago
dee609c
merged
by Barry Warsaw
· 13 years ago
d7d2194
Integration of importdocs from the features/pep-420 repo.
by Barry Warsaw
· 13 years ago
a264384
Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.
by Antoine Pitrou
· 13 years ago
10f0c50
Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.
by Antoine Pitrou
· 13 years ago
2b16844
Issue #15467: Merge 3.2
by Martin v. Löwis
· 13 years ago
33f7997
Issue #15467: Move helpers for __sizeof__ tests into test_support.
by Martin v. Löwis
· 13 years ago
5ee9892
Close #15425: Eliminate more importlib related traceback noise
by Nick Coghlan
· 13 years ago
bb9b1c1
Issue #15402: Simplify Struct.__sizeof__ and make tests more precise.
by Meador Inge
· 13 years ago
90bc2dbc
Issue #15402: Simplify Struct.__sizeof__ and make tests more precise.
by Meador Inge
· 13 years ago
e3010a8
Issue #14578: Support modules registered in the Windows registry again.
by Martin v. Löwis
· 13 years ago
5562d9d
Issue #1692335: Move initial args assignment to BaseException.__new__
by Richard Oudkerk
· 13 years ago
7d12d9d
Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays.
by Stefan Krah
· 13 years ago
6c779ea
Issue #15364: Fix test_srcdir for the installed case.
by Ned Deily
· 13 years ago
b15e622
Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses.
by Richard Oudkerk
· 13 years ago
4887b1c
Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses.
by Richard Oudkerk
· 13 years ago
46874ad
Issue #15364: Fix sysconfig.get_config_var('srcdir') to be an absolute path.
by Richard Oudkerk
· 13 years ago
3bbd2fa
Issue #15456: Fix code __sizeof__ after #12399 change.
by Martin v. Löwis
· 13 years ago
d0118e1
Restored test by specifying that the symlink links to a target (currently required for Windows symlinks). See issue15093 for details.
by Jason R. Coombs
· 13 years ago
0b9e7b9
Issue #15320: Make iterating the list of tests thread-safe when running tests in multiprocess mode.
by Antoine Pitrou
· 13 years ago
09f2e6f
Issue #15320: Make iterating the list of tests thread-safe when running tests in multiprocess mode.
by Antoine Pitrou
· 13 years ago
0994148
merge 3.2
by Martin v. Löwis
· 13 years ago
30d5e6c
Issue #7163: Propagate return value of sys.stdout.write. Patch by Roger Serwy.
by Martin v. Löwis
· 13 years ago
f4b341b
merge 3.2
by Martin v. Löwis
· 13 years ago
c882b7c
Issue #15318: Prevent writing to sys.stdin. Patch by Roger Serwy and myself.
by Martin v. Löwis
· 13 years ago
653e4b3
MERGE: Better test for Issue #15402: Add a __sizeof__ method to struct.Struct
by Jesus Cea
· 13 years ago
Next »