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
/
Include
Commit message (
Expand
)
Author
Age
Files
Lines
*
add generic implementation of a __dict__ descriptor for C types
Benjamin Peterson
2012-02-20
1
-0/+2
*
Backout f8409b3d6449: the PEP 410 is not accepted yet
Victor Stinner
2012-02-08
1
-27/+1
*
PEP 410
Victor Stinner
2012-02-08
1
-1/+27
*
Issue #13706: Add assertions to detect bugs earlier
Victor Stinner
2012-01-31
1
-0/+3
*
Issue #13848: open() and the FileIO constructor now check for NUL characters ...
Antoine Pitrou
2012-01-29
1
-0/+6
|
\
|
*
Issue #13848: open() and the FileIO constructor now check for NUL characters ...
Antoine Pitrou
2012-01-29
1
-0/+6
*
|
use the static identifier api for looking up special methods
Benjamin Peterson
2012-01-22
2
-30/+30
*
|
Issue #12705: Raise SyntaxError when compiling multiple statements as single ...
Meador Inge
2012-01-19
1
-0/+1
*
|
Issue #13727: Add 3 macros to access PyDateTime_Delta members:
Amaury Forgeot d'Arc
2012-01-17
1
-0/+6
*
|
move LINENO define to where it actually belongs
Benjamin Peterson
2012-01-16
1
-0/+1
*
|
Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenName...
Meador Inge
2012-01-16
1
-31/+30
|
\
\
|
|
/
|
*
Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenName...
Meador Inge
2012-01-16
1
-31/+30
*
|
Consolidate the occurrances of the prime used as the multiplier when hashing.
Gregory P. Smith
2012-01-14
1
-1/+4
|
\
\
|
|
/
|
*
Consolidate the occurrances of the prime used as the multiplier when hashing
Gregory P. Smith
2012-01-14
1
-1/+4
*
|
add str.casefold() (closes #13752)
Benjamin Peterson
2012-01-14
1
-0/+5
*
|
make YieldFrom its own distinct from Yield (closes #13780)
Benjamin Peterson
2012-01-14
1
-8/+13
*
|
Fix indenting
Nick Coghlan
2012-01-14
1
-10/+10
*
|
Silence compilation warnings on Windows
Amaury Forgeot d'Arc
2012-01-13
1
-2/+2
*
|
Implement PEP 380 - 'yield from' (closes #11682)
Nick Coghlan
2012-01-13
6
-127/+140
*
|
use full unicode mappings for upper/lower/title case (#12736)
Benjamin Peterson
2012-01-11
1
-0/+23
*
|
Add a new PyUnicode_Fill() function
Victor Stinner
2012-01-03
1
-3/+20
*
|
Issue #13577: Built-in methods and functions now have a __qualname__.
Antoine Pitrou
2011-12-23
1
-1/+2
*
|
fix PyCompactUnicodeObject doc (test)
Victor Stinner
2011-12-22
1
-1/+1
*
|
backout 7876cd49300d: Move PyUnicode_WCHAR_KIND outside PyUnicode_Kind enum
Victor Stinner
2011-12-19
1
-4/+3
*
|
Move PyUnicode_WCHAR_KIND outside PyUnicode_Kind enum
Victor Stinner
2011-12-17
1
-3/+4
*
|
Issue #13560: Locale codec functions use the classic "errors" parameter,
Victor Stinner
2011-12-17
1
-3/+3
*
|
Issue #13560: Add PyUnicode_EncodeLocale()
Victor Stinner
2011-12-17
1
-1/+11
*
|
Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale()
Victor Stinner
2011-12-16
1
-0/+22
*
|
Issue #6695: Full garbage collection runs now clear the freelist of set objects.
Antoine Pitrou
2011-12-16
1
-0/+2
*
|
improve abstract property support (closes #11610)
Benjamin Peterson
2011-12-15
1
-0/+1
*
|
Issue #13577: various kinds of descriptors now have a __qualname__ attribute.
Antoine Pitrou
2011-12-12
1
-0/+1
*
|
PyUnicode_Resize(): warn about canonical representation
Victor Stinner
2011-12-12
1
-1/+4
*
|
Fix PyUnicode_Resize() for compact string: leave the string unchanged on error
Victor Stinner
2011-12-12
1
-8/+5
*
|
Make PyUnicode_Copy() private => _PyUnicode_Copy()
Victor Stinner
2011-12-12
1
-1/+3
*
|
resize_copy() now supports legacy ready strings
Victor Stinner
2011-12-11
1
-0/+4
*
|
PyUnicode_IS_ASCII() macro ensures that the string is ready
Victor Stinner
2011-12-12
1
-5/+7
*
|
- Issue #11147: Fix an unused argument in _Py_ANNOTATE_MEMORY_ORDER. (Fix
Barry Warsaw
2011-12-05
1
-0/+1
|
\
\
|
|
/
|
*
- Issue #11147: Fix an unused argument in _Py_ANNOTATE_MEMORY_ORDER. (Fix
Barry Warsaw
2011-12-05
1
-0/+1
*
|
Py_UNICODE_HIGH_SURROGATE() and Py_UNICODE_LOW_SURROGATE() macros
Victor Stinner
2011-11-29
1
-0/+4
*
|
MERGE: Closes issue #13488: Some old preprocessors have problem with #define ...
Jesus Cea
2011-11-27
1
-80/+80
|
\
\
|
|
/
|
*
Closes issue #13488: Some old preprocessors have problem with #define not in ...
Jesus Cea
2011-11-27
1
-80/+80
*
|
Issue #12567: The curses module uses Unicode functions for Unicode arguments
Victor Stinner
2011-11-25
1
-0/+1
*
|
PEP 3155 / issue #13448: Qualified name for classes and functions.
Antoine Pitrou
2011-11-25
2
-1/+3
*
|
Issue #12328: Under Windows, refactor handling of Ctrl-C events and
Antoine Pitrou
2011-11-21
1
-0/+6
*
|
Issue #13411: memoryview objects are now hashable when the underlying object ...
Antoine Pitrou
2011-11-21
2
-0/+2
*
|
PyUnicode_GET_SIZE() checks that PyUnicode_AsUnicode() succeed
Victor Stinner
2011-11-21
1
-6/+7
*
|
_PyUnicode_CheckConsistency() also checks maxchar maximum value,
Victor Stinner
2011-11-20
1
-5/+8
*
|
Fix PyUnicode_CopyCharacters() doc
Victor Stinner
2011-11-20
1
-2/+1
*
|
Ensure that Py_UCS4 is 32 bits and Py_UCS2 is 16 bits
Victor Stinner
2011-11-20
1
-2/+7
*
|
Merge branch 3.2 (closes #13338)
Petri Lehtinen
2011-11-19
1
-2/+4
|
\
\
|
|
/
[next]