index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
|
Modify _PyBytes_DecodeEscapeRecode() to use _PyBytesAPI
Victor Stinner
2015-10-14
1
-58/+73
*
|
|
Fix compiler warnings (uninitialized variables), false alarms in fact
Victor Stinner
2015-10-14
1
-4/+2
*
|
|
_PyBytesWriter_Alloc(): only use 10 bytes of the small buffer in debug mode to
Victor Stinner
2015-10-14
1
-1/+13
*
|
|
Issue #25401: Remove now unused hex_digit_to_int() function
Victor Stinner
2015-10-14
1
-16/+0
*
|
|
Optimize bytes.fromhex() and bytearray.fromhex()
Victor Stinner
2015-10-14
2
-94/+77
*
|
|
Optimize bytearray % args
Victor Stinner
2015-10-14
2
-35/+28
*
|
|
Add use_bytearray attribute to _PyBytesWriter
Victor Stinner
2015-10-14
1
-28/+65
*
|
|
Fix long_format_binary()
Victor Stinner
2015-10-14
1
-1/+1
*
|
|
Rewrite PyBytes_FromFormatV() using _PyBytesWriter API
Victor Stinner
2015-10-13
1
-171/+165
*
|
|
Issue #25353: Optimize unicode escape and raw unicode escape encoders to use
Victor Stinner
2015-10-12
1
-44/+69
*
|
|
Fix compilation error in _PyBytesWriter_WriteBytes() on Windows
Victor Stinner
2015-10-12
1
-1/+3
*
|
|
Writer APIs: use empty string singletons
Victor Stinner
2015-10-12
2
-18/+32
*
|
|
Relax _PyBytesWriter API
Victor Stinner
2015-10-12
1
-8/+7
*
|
|
Issue #24164: Objects that need calling ``__new__`` with keyword arguments,
Serhiy Storchaka
2015-10-10
1
-13/+3
*
|
|
Issue #25349: Add fast path for b'%c' % int
Victor Stinner
2015-10-09
1
-10/+15
*
|
|
Issue #25349: Optimize bytes % int
Victor Stinner
2015-10-09
2
-27/+129
*
|
|
Optimize error handlers of ASCII and Latin1 encoders when the replacement
Victor Stinner
2015-10-09
2
-43/+47
*
|
|
Add _PyBytesWriter_WriteBytes() to factorize the code
Victor Stinner
2015-10-09
3
-16/+28
*
|
|
_PyBytesWriter: simplify code to avoid "prealloc" parameters
Victor Stinner
2015-10-09
3
-47/+47
*
|
|
_PyBytesWriter: rename size attribute to min_size
Victor Stinner
2015-10-09
1
-7/+7
*
|
|
Issue #25349: Optimize bytes % args using the new private _PyBytesWriter API
Victor Stinner
2015-10-09
1
-59/+128
*
|
|
Issue #25318: cleanup code _PyBytesWriter
Victor Stinner
2015-10-09
1
-17/+17
*
|
|
Issue #25318: Fix backslashreplace()
Victor Stinner
2015-10-09
1
-1/+1
*
|
|
Issue #25318: Avoid sprintf() in backslashreplace()
Victor Stinner
2015-10-09
1
-7/+18
*
|
|
Issue #25318: Fix compilation error
Victor Stinner
2015-10-09
1
-1/+1
*
|
|
Issue #25318: Move _PyBytesWriter to bytesobject.c
Victor Stinner
2015-10-08
2
-210/+193
*
|
|
Optimize backslashreplace error handler
Victor Stinner
2015-10-08
2
-51/+160
*
|
|
Issue #25318: Add _PyBytesWriter API
Victor Stinner
2015-10-08
2
-132/+268
*
|
|
Merge typo fixes from 3.5
Martin Panter
2015-10-07
3
-3/+3
|
\
\
\
|
|
/
/
|
*
|
More typos in 3.5 documentation and comments
Martin Panter
2015-10-07
2
-2/+2
|
*
|
Merge typo fixes from 3.4 into 3.5
Martin Panter
2015-10-07
2
-2/+2
|
|
\
\
|
|
|
/
|
|
*
Various minor typos in documentation and comments
Martin Panter
2015-10-07
2
-2/+2
*
|
|
merge 3.5 (closes #24806)
Benjamin Peterson
2015-10-07
1
-6/+6
|
\
\
\
|
|
/
/
|
*
|
merge 3.4 (#24806)
Benjamin Peterson
2015-10-07
1
-6/+6
|
|
\
\
|
|
|
/
|
|
*
prevent unacceptable bases from becoming bases through multiple inheritance (...
Benjamin Peterson
2015-10-07
1
-6/+6
*
|
|
Issue #25301: Fix compatibility with ISO C90
Victor Stinner
2015-10-05
1
-1/+5
*
|
|
Issue #25301: The UTF-8 decoder is now up to 15 times as fast for error
Victor Stinner
2015-10-05
1
-9/+39
*
|
|
Fix _PyUnicodeWriter_PrepareKind()
Victor Stinner
2015-10-02
1
-7/+18
*
|
|
Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:
Serhiy Storchaka
2015-10-02
1
-9/+12
|
\
\
\
|
|
/
/
|
*
|
Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:
Serhiy Storchaka
2015-10-02
1
-9/+12
|
|
\
\
|
|
|
/
|
|
*
Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:
Serhiy Storchaka
2015-10-02
1
-9/+12
*
|
|
Issue #24483: C implementation of functools.lru_cache() now calculates key's
Serhiy Storchaka
2015-10-02
1
-0/+37
|
\
\
\
|
|
/
/
|
*
|
Issue #24483: C implementation of functools.lru_cache() now calculates key's
Serhiy Storchaka
2015-10-02
1
-0/+37
*
|
|
Make _PyUnicode_TranslateCharmap() symbol private
Victor Stinner
2015-10-01
1
-1/+1
*
|
|
Issue #25267: The UTF-8 encoder is now up to 75 times as fast for error
Victor Stinner
2015-10-01
2
-53/+101
*
|
|
(Merge 3.5) Issue #25182: Fix compilation on Windows
Victor Stinner
2015-09-30
1
-3/+6
|
\
\
\
|
|
/
/
|
*
|
(Merge 3.4) Issue #25182: Fix compilation on Windows
Victor Stinner
2015-09-30
1
-3/+6
|
|
\
\
|
|
|
/
|
|
*
Issue #25182: Fix compilation on Windows
Victor Stinner
2015-09-30
1
-3/+6
*
|
|
Issue #25182: The stdprinter (used as sys.stderr before the io module is
Serhiy Storchaka
2015-09-30
1
-4/+21
|
\
\
\
|
|
/
/
|
*
|
Issue #25182: The stdprinter (used as sys.stderr before the io module is
Serhiy Storchaka
2015-09-30
1
-4/+21
|
|
\
\
|
|
|
/
[prev]
[next]