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
*
make fix_decimal_and_space_to_ascii check if it modifies the string
Benjamin Peterson
2012-01-12
1
-1/+3
*
kill capwords implementation which has been disabled since the begining
Benjamin Peterson
2012-01-12
1
-42/+0
*
remove some usage of Py_UNICODE_TOUPPER/LOWER
Benjamin Peterson
2012-01-12
6
-12/+0
*
use full unicode mappings for upper/lower/title case (#12736)
Benjamin Peterson
2012-01-11
3
-1684/+4445
*
Issue #13738: Simplify implementation of bytes.lower() and bytes.upper().
Antoine Pitrou
2012-01-08
1
-10/+2
*
Add a new PyUnicode_Fill() function
Victor Stinner
2012-01-03
1
-0/+35
*
also decref the right thing
Benjamin Peterson
2012-01-02
1
-1/+1
*
ready the correct string
Benjamin Peterson
2012-01-02
1
-1/+1
*
fix some possible refleaks from PyUnicode_READY error conditions
Benjamin Peterson
2012-01-02
1
-21/+53
*
== -1 is convention
Benjamin Peterson
2012-01-01
1
-1/+1
*
make switch more robust
Benjamin Peterson
2012-01-01
1
-1/+2
*
fix weird indentation
Benjamin Peterson
2011-12-28
1
-1/+1
*
Issue #13577: Built-in methods and functions now have a __qualname__.
Antoine Pitrou
2011-12-23
2
-5/+41
*
4 space indentation
Benjamin Peterson
2011-12-20
1
-13/+13
*
fix spacing around switch statements
Benjamin Peterson
2011-12-20
1
-23/+22
*
merge 3.2
Benjamin Peterson
2011-12-20
1
-1/+5
|
\
|
*
fix possible if unlikely leak
Benjamin Peterson
2011-12-20
1
-1/+5
*
|
Merge with 3.2.
Georg Brandl
2011-12-18
1
-3/+3
|
\
\
|
|
/
|
*
Small clarification in docstring of dict.update(): the positional argument is...
Georg Brandl
2011-12-18
1
-3/+3
*
|
Issue #13624: Write a specialized UTF-8 encoder to allow more optimization
Victor Stinner
2011-12-18
2
-149/+209
*
|
Optimize str * n for len(str)==1 and UCS-2 or UCS-4
Victor Stinner
2011-12-18
1
-4/+11
*
|
Issue #13621: Optimize str.replace(char1, char2)
Victor Stinner
2011-12-18
1
-9/+21
*
|
Issue #13623: Fix a performance regression introduced by issue #12170 in
Victor Stinner
2011-12-18
1
-10/+17
*
|
Issue #11231: Fix bytes and bytearray docstrings
Victor Stinner
2011-12-17
2
-10/+9
|
\
\
|
|
/
|
*
Issue #11231: Fix bytes and bytearray docstrings
Victor Stinner
2011-12-17
2
-10/+9
*
|
Issue #10951: Fix compiler warnings in timemodule.c and unicodeobject.c
Victor Stinner
2011-12-17
1
-1/+1
|
\
\
|
|
/
*
|
fix possible NULL dereference
Benjamin Peterson
2011-12-17
1
-1/+3
*
|
The locale decoder raises a UnicodeDecodeError instead of an OSError
Victor Stinner
2011-12-17
1
-17/+86
*
|
Issue #13560: Locale codec functions use the classic "errors" parameter,
Victor Stinner
2011-12-17
1
-7/+38
*
|
What's New in Python 3.3: complete the deprecation list
Victor Stinner
2011-12-17
1
-0/+2
*
|
Issue #13560: os.strerror() now uses the current locale encoding instead of U...
Victor Stinner
2011-12-17
1
-8/+20
*
|
Issue #13560: Add PyUnicode_EncodeLocale()
Victor Stinner
2011-12-17
1
-32/+135
*
|
Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale()
Victor Stinner
2011-12-16
1
-17/+78
*
|
Issue #6695: Full garbage collection runs now clear the freelist of set objects.
Antoine Pitrou
2011-12-16
1
-2/+10
*
|
improve abstract property support (closes #11610)
Benjamin Peterson
2011-12-15
3
-3/+105
*
|
Fix OSError.__init__ and OSError.__new__ so that each of them can be
Antoine Pitrou
2011-12-15
1
-57/+159
*
|
Fix the fix for issue #12149: it was incorrect, although it had the side
Antoine Pitrou
2011-12-15
1
-8/+10
|
\
\
|
|
/
|
*
Fix the fix for issue #12149: it was incorrect, although it had the side
Antoine Pitrou
2011-12-15
1
-8/+10
|
*
Issue #13093: Fix error handling on PyUnicode_EncodeDecimal()
Victor Stinner
2011-11-22
1
-6/+4
*
|
Issue #13575: there is only one class type.
Florent Xicluna
2011-12-12
1
-19/+12
*
|
Issue #13577: various kinds of descriptors now have a __qualname__ attribute.
Antoine Pitrou
2011-12-12
1
-0/+51
*
|
PyUnicode_Resize(): warn about canonical representation
Victor Stinner
2011-12-12
1
-12/+13
*
|
Fix PyUnicode_Resize() for compact string: leave the string unchanged on error
Victor Stinner
2011-12-12
1
-20/+9
*
|
Make PyUnicode_Copy() private => _PyUnicode_Copy()
Victor Stinner
2011-12-12
2
-7/+7
*
|
resize_copy() now supports legacy ready strings
Victor Stinner
2011-12-11
1
-13/+15
*
|
Rewrite PyUnicode_Append(); unicode_modifiable() is more strict
Victor Stinner
2011-12-11
1
-79/+84
*
|
Create unicode_result_unchanged() subfunction
Victor Stinner
2011-12-11
1
-69/+48
*
|
Fix fixup() for unchanged unicode subtype
Victor Stinner
2011-12-11
1
-33/+33
*
|
unicode_fromascii() doesn't check string content twice in debug mode
Victor Stinner
2011-12-11
1
-6/+3
*
|
Call directly PyUnicode_DecodeUTF8Stateful() instead of PyUnicode_DecodeUTF8()
Victor Stinner
2011-12-11
1
-33/+14
[next]