Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
f033510fee836a98500fb87407409d0ad1a4d4d7
f033510
Cleanup PyUnicode_Append()
by Victor Stinner
· 12 years ago
4560f9c
PyUnicode_Join(): move use_memcpy test out of the loop to cleanup and optimize the code
by Victor Stinner
· 12 years ago
55c0878
Optimize repr(str): use _PyUnicode_FastCopyCharacters() when no character is escaped
by Victor Stinner
· 12 years ago
af03757
Optimize ascii(str): don't encode/decode repr if repr is already ASCII
by Victor Stinner
· 12 years ago
322cc74
Issue #17693: Fix memory/reference leaks
by Victor Stinner
· 12 years ago
bf71f7d
Merge #17341: Include name in re error message about invalid group name.
by R David Murray
· 12 years ago
26dfaac9
#17341: Include name in re error message about invalid group name.
by R David Murray
· 12 years ago
255fb3e
add a newline
by Brett Cannon
· 12 years ago
9c367c2
merge
by Brett Cannon
· 12 years ago
edfd6ae
Issue #17244: Don't mask exceptions raised during the creation of
by Brett Cannon
· 12 years ago
4e762ee
Issue #17221: Resort Misc/NEWS.
by Serhiy Storchaka
· 12 years ago
f2fa5fc
Issue #17221: Resort Misc/NEWS.
by Serhiy Storchaka
· 12 years ago
672559f
(Merge 3.3) Issue #17702: use assertRaises() for the unit test
by Victor Stinner
· 12 years ago
839e5ea
Issue #17702: use assertRaises() for the unit test
by Victor Stinner
· 12 years ago
43aa0d0
(Merge 3.3) Close #17702: os.environ now raises KeyError with the original
by Victor Stinner
· 12 years ago
6d10139
Close #17702: os.environ now raises KeyError with the original environment
by Victor Stinner
· 12 years ago
76b3b27
stringlib: remove unused STRINGLIB_RESIZE macro
by Victor Stinner
· 12 years ago
685bd4a
Merge fix for #16163 from 3.3
by Nick Coghlan
· 12 years ago
c4e0d98
Close issue #16163: handle submodules in pkgutil.iter_importers
by Nick Coghlan
· 12 years ago
8b4c719
Issue #17713: additional tweak to test.
by Vinay Sajip
· 12 years ago
d86ac96
Closes #17713: Fixed bug in test_compute_rollover_weekly_attime.
by Vinay Sajip
· 12 years ago
8a34596
#2118: IOError is deprecated, use OSError.
by R David Murray
· 12 years ago
96d6a78
Merge 3.3
by Alexandre Vassalotti
· 12 years ago
a3e32c9
Closes #16551. Cleanup pickle.py.
by Serhiy Storchaka
· 12 years ago
8157459
Merge heads.
by Alexandre Vassalotti
· 12 years ago
8db89ca
Issue #16550: Update the opcode descriptions of pickletools to use unsigned
by Alexandre Vassalotti
· 12 years ago
c8fb047
merge with 3.3
by Georg Brandl
· 12 years ago
1aca953
Fix example ignoring ".svn" directories in compileall.
by Georg Brandl
· 12 years ago
e827ea8
merge with 3.3
by Georg Brandl
· 12 years ago
1e1134a
The Integral class does not contain implementations for the bit-shifting operations. (See #3056.)
by Georg Brandl
· 12 years ago
015427e
merge with 3.3
by Georg Brandl
· 12 years ago
5e2954e
Clarify that the function *definition* creates the function and the binding in the module globals.
by Georg Brandl
· 12 years ago
b979f10
merge with 3.3
by Georg Brandl
· 12 years ago
1d472b7
Closes #14462: allow any valid Python identifier in sre group names, as documented.
by Georg Brandl
· 12 years ago
cc75717
Style cleanups for pickle.py and _pickle.
by Alexandre Vassalotti
· 12 years ago
f36f20f
merge with 3.3
by Georg Brandl
· 12 years ago
991fc57
Closes #13638: document PyErr_SetFromErrnoWithFilenameObject,
by Georg Brandl
· 12 years ago
6d9e145
Merge 3.3
by Alexandre Vassalotti
· 12 years ago
5c4874f
Merge heads.
by Alexandre Vassalotti
· 12 years ago
1e6a3a2
merge with 3.3
by Georg Brandl
· 12 years ago
a204636
bind('') does not do the same as bind('localhost')
by Georg Brandl
· 12 years ago
f221377
merge with 3.3
by Georg Brandl
· 12 years ago
5f4b4ac
Update code examples using collections.abc classes.
by Georg Brandl
· 12 years ago
9def205
merge with 3.3
by Georg Brandl
· 12 years ago
7b8c132
Closes #17726: small clarification in design FAQ.
by Georg Brandl
· 12 years ago
00d83f2
Clean up error messages raised by save_reduce in _pickle.
by Alexandre Vassalotti
· 12 years ago
94a9a2d
merge with 3.3
by Georg Brandl
· 12 years ago
e095968
Update using/mac documentation which was still on 2.5.
by Georg Brandl
· 12 years ago
cf72c5e
merge with 3.3
by Georg Brandl
· 12 years ago
dec3b3f
Clarify point in name mangling doc.
by Georg Brandl
· 12 years ago
bdc3eb7
Merge 3.3
by Alexandre Vassalotti
· 12 years ago
6eea818
Fix pickling test in test_memoryio.
by Alexandre Vassalotti
· 12 years ago
e94950e
Merge heads.
by Meador Inge
· 12 years ago
2581bdb
Issue #16804: Fix 'python -S -m site' failure.
by Meador Inge
· 12 years ago
9a7a811
Issue #16804: Fix 'python -S -m site' failure.
by Meador Inge
· 12 years ago
8a1a6cf
Add _PyUnicodeWriter_WriteCharInline()
by Victor Stinner
· 12 years ago
d949126
Issue #17693: CJK encoders now use the new Unicode API (PEP 393)
by Victor Stinner
· 12 years ago
7155759
remove pointless change
by Benjamin Peterson
· 12 years ago
214a7d2
properly lookup the __round__ special method (closes #17722)
by Benjamin Peterson
· 12 years ago
c1ab0bd
Fix misindent. This would test half less possibilities.
by Antoine Pitrou
· 12 years ago
e9bbe8b
Issue #15480: Remove the deprecated and unused TYPE_INT64 code from marshal.
by Antoine Pitrou
· 12 years ago
e2cef88
Issue #16061: Speed up str.replace() for replacing 1-character strings.
by Serhiy Storchaka
· 12 years ago
a707f29
#17719: fix incorrect version number in deprecation doc.
by R David Murray
· 12 years ago
8e37d5d
#2118: Make SMTPException a subclass of IOError.
by R David Murray
· 12 years ago
c1d3daf
Merge #2118: clarify smtplib exception documentation.
by R David Murray
· 12 years ago
0bfd6ac
Reflow paragraph.
by R David Murray
· 12 years ago
14ee3cf
#2118: clarify smtplib exception documentation.
by R David Murray
· 12 years ago
6d80046
Issue #17016: Get rid of possible pointer wraparounds and integer overflows
by Serhiy Storchaka
· 12 years ago
4bb1734
Issue #17016: Get rid of possible pointer wraparounds and integer overflows
by Serhiy Storchaka
· 12 years ago
d24abee
#17571: merge with 3.3.
by Ezio Melotti
· 12 years ago
f756f94
#17571: remove broken links in datetime.py docstring.
by Ezio Melotti
· 12 years ago
5c965da
#17686: merge with 3.3.
by Ezio Melotti
· 12 years ago
ac3da87
#17686: fix broken link in Doc/using/unix.rst. Patch by Dan Riti.
by Ezio Melotti
· 12 years ago
93196eb
Issue #17715: Merge fix from 3.3.
by Mark Dickinson
· 12 years ago
c973448
Issue #17715: Add missing NULL Check to PyNumber_Long.
by Mark Dickinson
· 12 years ago
171bb26
Issue #17713: Test temporarily skipped while failure investigated.
by Vinay Sajip
· 12 years ago
bca5141
Merge heads.
by Mark Dickinson
· 12 years ago
9b6fdf8
Fix incorrect indentation on 'versionadded' for weakref.ref.__callback__.
by Mark Dickinson
· 12 years ago
44e33f3
Revert changes for #13355 by request from Raymond Hettinger
by Andrew Svetlov
· 12 years ago
b4fd468
Revert changes for #13355 by request from Raymond Hettinger
by Andrew Svetlov
· 12 years ago
556e94b
Issue #17643: Add __callback__ attribute to weakref.ref.
by Mark Dickinson
· 12 years ago
548677b
Issue #16447: Merge fix from 3.3.
by Mark Dickinson
· 12 years ago
64aafeb
Issue #16447: Fix potential segfault when setting __name__ on a class.
by Mark Dickinson
· 12 years ago
4e7d3ab
Fix whitespaces
by Andrew Svetlov
· 12 years ago
eff6444
Fix whitespaces
by Andrew Svetlov
· 12 years ago
7300011
Issue #13355: Raise ValueError on random.triangular call with invalid params.
by Andrew Svetlov
· 12 years ago
a2dfc35
Issue #13355: Raise ValueError on random.triangular call with invalid params.
by Andrew Svetlov
· 12 years ago
3042b5e
Issue #16658: add missing return to HTTPConnection.send().
by Andrew Svetlov
· 12 years ago
7b2c8bb
Issue #16658: add missing return to HTTPConnection.send().
by Andrew Svetlov
· 12 years ago
7ca4936
attempt to fix bb failure as per http://bugs.python.org/issue17675#msg186595
by Giampaolo Rodola'
· 12 years ago
3121e32
#17653: merge with 3.3.
by Ezio Melotti
· 12 years ago
a3b255f
#17653: fix typo in socketserver docs. Patch by Tshepang Lekhonkhobe.
by Ezio Melotti
· 12 years ago
a713079
Closed #9556: Allowed specifying a time-of-day for a TimedRotatingFileHandler to rotate.
by Vinay Sajip
· 12 years ago
8a9e38e
Null merge.
by Ezio Melotti
· 12 years ago
15a98cd
Merge heads.
by Ezio Melotti
· 12 years ago
6ebdb61
Merge heads.
by Ezio Melotti
· 12 years ago
2175b4f
#17688: fix declaration for richcmp example in the docs.
by Andrew Svetlov
· 12 years ago
59d6d2d
#17688: fix declaration for richcmp example in the docs.
by Andrew Svetlov
· 12 years ago
cbc2d29
#6696: merge with 3.3.
by Ezio Melotti
· 12 years ago
075d87c
#6696: add documentation for the Profile objects, and improve profile/cProfile docs. Patch by Tom Pinckney.
by Ezio Melotti
· 12 years ago
Next »