Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
fc9ca274b8d814e1fdfce72828414ae628fdba88
fc9ca27
Plug a refleak.
by Brett Cannon
· 13 years ago
2a082ad
Clarify that one should not use __import__() directly. Also mention
by Brett Cannon
· 13 years ago
49f8d8b
Handle importing pkg.mod by executing
by Brett Cannon
· 13 years ago
59f9c3a
Rebuild importlib.h to incorporate added comments.
by Brett Cannon
· 13 years ago
aef82d3
IDLE was relying on implicit relative imports which have gone away in
by Brett Cannon
· 13 years ago
44590e4
Add some comments.
by Brett Cannon
· 13 years ago
2217c46
merge with the tip
by Brian Curtin
· 13 years ago
e6b299f
Fix Windows build
by Brian Curtin
· 13 years ago
afbdc13
Fix an import race condition.
by Brett Cannon
· 13 years ago
73def61
Try to fix a sporadic test failure from what is probably a caching race condition.
by Brett Cannon
· 13 years ago
740fce0
Undo a C99 idiom.
by Brett Cannon
· 13 years ago
fd07415
Issue #2377: Make importlib the implementation of __import__().
by Brett Cannon
· 13 years ago
d2cbd90
merge with 3.2
by Sandro Tosi
· 13 years ago
1ee1719
fix typo; thanks to Jérôme Mainka from docs@
by Sandro Tosi
· 13 years ago
9c9af9d
Merge highlight and spacing fixes in json example with 3.2.
by Ezio Melotti
· 13 years ago
84e59aa
Fix highlight and spacing in json example.
by Ezio Melotti
· 13 years ago
584fbbb
#14535: merge with 3.2.
by Ezio Melotti
· 13 years ago
f86b28e
#14535: fix code highlight in multiprocessing examples. Patch by Tshepang Lekhonkhobe.
by Ezio Melotti
· 13 years ago
2c4efa8
Merge #14399: corrected news item
by R David Murray
· 13 years ago
650dfaf
#14399: corrected news item
by R David Murray
· 13 years ago
780b66b
merge 3.2
by Benjamin Peterson
· 13 years ago
3bf0175
move outside WITH_THREAD conditional
by Benjamin Peterson
· 13 years ago
b8d0169
Fix clock_gettime/getres/settime: PyArg_ParseTuple() expects an int
by Victor Stinner
· 13 years ago
0682a0c
Minor docstring / docs corrections for unittest.mock
by Michael Foord
· 13 years ago
656319e
Make unittest.mock.create_autospec resilient against AttributeError on original object
by Michael Foord
· 13 years ago
899ee61
merge 3.2
by Benjamin Peterson
· 13 years ago
43162b8
take linkage def outside of WITH_THREAD conditional (closes #14569)
by Benjamin Peterson
· 13 years ago
c287062
unittest.mock.PropertyMock return value and attributes are now standard MagicMocks
by Michael Foord
· 13 years ago
633b32a
put PyImportErrorObject with its brothers
by Benjamin Peterson
· 13 years ago
15af26f
Merge
by Brett Cannon
· 13 years ago
a29629f
NEWS entry about importlib and ImportError's new attributes.
by Brett Cannon
· 13 years ago
bbb6680
Have importlib take advantage of ImportError's new 'name' and 'path' attributes.
by Brett Cannon
· 13 years ago
b413874
merge heads
by Amaury Forgeot d'Arc
· 13 years ago
504a83f
merge heads
by Amaury Forgeot d'Arc
· 13 years ago
18d508f
Merge heads
by Amaury Forgeot d'Arc
· 13 years ago
79ec55e
Issue #1559549: Add 'name' and 'path' attributes to ImportError.
by Brett Cannon
· 13 years ago
8963943
hg merge 3.2
by Amaury Forgeot d'Arc
· 13 years ago
a9d33a2
Issue14559: Fix build files old Microft compilers.
by Amaury Forgeot d'Arc
· 13 years ago
f50b38a
Merge #14399: zipfile now correctly handles comments added to empty zipfiles.
by R David Murray
· 13 years ago
51804e9
#14399: zipfile now correctly handles comments added to empty zipfiles.
by R David Murray
· 13 years ago
6125e23
Doc: sort time.CLOCK_xxx constants
by Victor Stinner
· 13 years ago
84ba495
Null-merge 3.2 branch.
by Georg Brandl
· 13 years ago
d46d69c
3.2 sidebar: link to 3.3, not 3.1
by Georg Brandl
· 13 years ago
515ea9b
Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban.
by Charles-François Natali
· 13 years ago
5739e10
Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban.
by Charles-François Natali
· 13 years ago
80a133b
code improvement. 'as cm' not required when not used. Review comment by Georg Brandl
by Senthil Kumaran
· 13 years ago
df7ac06
Merge doc fixes #14553 and #14552.
by R David Murray
· 13 years ago
e7bade5
#14553: fix word order.
by R David Murray
· 13 years ago
644cabe
#14552: remove redundant wording in 'test' docs.
by R David Murray
· 13 years ago
d268109
merge 3.2 (null)
by Benjamin Peterson
· 13 years ago
118ef7c
merge 3.1 (null)
by Benjamin Peterson
· 13 years ago
2fd0b1a
after 3.1.5
by Benjamin Peterson
· 13 years ago
ea16980
#14508: make gprof2html script runnable under python3
by R David Murray
· 13 years ago
776c0df
#14508: make gprof2html script runnable under python3
by R David Murray
· 13 years ago
690598a
merge to default - Issue 10484 - Incorporate improvements to CGI module - Suggested by Glenn Linderman. Refactor code and tests
by Senthil Kumaran
· 13 years ago
d70846b
3.2 - Issue 10484 - Incorporate improvements to CGI module - Suggested by Glenn Linderman. Refactor code and tests
by Senthil Kumaran
· 13 years ago
1c94ff8
Improve the threading.Condition docs.
by Antoine Pitrou
· 13 years ago
f6cd9b2
Improve the threading.Condition docs.
by Antoine Pitrou
· 13 years ago
b43ef77
#14545: merge 3.2
by Georg Brandl
· 13 years ago
2a4864b
Merge 3.2
by Georg Brandl
· 13 years ago
2c58075
Closes #14545: make clearer what was added.
by Georg Brandl
· 13 years ago
08bd4aa
use assertWarns instead of check_warnings - Issue14341
by Senthil Kumaran
· 13 years ago
a51497a
Merge 3.2.3 release clone.
by Georg Brandl
· 13 years ago
507776e
Post-release update.
by Georg Brandl
· 13 years ago
9fe92d1
Make the trace module ignore modules whose names start with "<" and
by Brett Cannon
· 13 years ago
ec766a6
1) Remove claim of an input invariant that is only true for static mpd_t.
by Stefan Krah
· 13 years ago
7b544ca
Fix stale comment.
by Stefan Krah
· 13 years ago
61d85ba
Merge
by Antoine Pitrou
· 13 years ago
b96a354
Small improvements to the threading docs: better publicize support for the with statement.
by Antoine Pitrou
· 13 years ago
2c9f104
Fix some markup in the threading docs.
by Antoine Pitrou
· 13 years ago
126aef7
Issue #8799: Fix and improve the threading.Condition documentation.
by Antoine Pitrou
· 13 years ago
88b957a
merge heads
by Senthil Kumaran
· 13 years ago
1cbf78a
merge heads
by Senthil Kumaran
· 13 years ago
d05853d
merge - fix the incorrect changes made for PATH_INFO value - Issue10484
by Senthil Kumaran
· 13 years ago
dbb369d
3.2- fix the incorrect changes made for PATH_INFO value - Issue10484
by Senthil Kumaran
· 13 years ago
8bf2aea
Merged updates to logging reference and HOWTO from 3.2.
by Vinay Sajip
· 13 years ago
074faff
Updated logging reference and HOWTO.
by Vinay Sajip
· 13 years ago
eba2428
Issue #14541: Merged addition of test/sndhdrdata to Makefile.pre.in from 3.2.
by Vinay Sajip
· 13 years ago
935b629
Issue #14541: Added test/sndhdrdata to Makefile.pre.in for installation.
by Vinay Sajip
· 13 years ago
6b2e4cb
Added tag v3.2.3 for changeset 3d0686d90f55
by Georg Brandl
· 13 years ago
81c393b
Merge.
by Georg Brandl
· 13 years ago
4403601
Bump to 3.2.3 final.
by Georg Brandl
· 13 years ago
470f33f
News entry for f91ecbc8bafc.
by Georg Brandl
· 13 years ago
cc74b6a
Issue #14478: Cache the hash of a Decimal in the C version.
by Stefan Krah
· 13 years ago
9deb188
merge - minor .rst fix
by Senthil Kumaran
· 13 years ago
cc49790
minor .rst fix
by Senthil Kumaran
· 13 years ago
f93fc04
Merge.
by Stefan Krah
· 13 years ago
e37f8b2
Issue #14520: Add __sizeof__() method to the Decimal object.
by Stefan Krah
· 13 years ago
4a1e7cb
merge 3.2
by Benjamin Peterson
· 13 years ago
d47f0d6
merge heads
by Benjamin Peterson
· 13 years ago
77ec326
merge heads
by Benjamin Peterson
· 13 years ago
64ed576
merge 3.2 (#14509)
by Benjamin Peterson
· 13 years ago
ca819c3
merge 3.1 (#14509)
by Benjamin Peterson
· 13 years ago
f6622c8
fix build without Py_DEBUG and DNDEBUG (closes #14509)
by Benjamin Peterson
· 13 years ago
f69aef7
Resize the coefficient to MPD_MINALLOC also if the requested size is below
by Stefan Krah
· 13 years ago
da29f8c
Merged comment correction from 3.2.
by Vinay Sajip
· 13 years ago
838e638
Corrected comment in cookbook example script.
by Vinay Sajip
· 13 years ago
0c0914e
_decimal is now 100x faster than the Python version in the pi benchmark.
by Stefan Krah
· 13 years ago
dd159ce
Speed up _decimal by 30-40% for numerical workloads by improving the cache
by Stefan Krah
· 13 years ago
94ef3e4
Use the MPD() accessor macro.
by Stefan Krah
· 13 years ago
Next »