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
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
*
#9418: first step of moving private string methods to _string module.
Georg Brandl
2010-10-14
1
-0/+4
*
Revert r85435 (and r85440): decode command line arguments from utf-8
Victor Stinner
2010-10-13
1
-10/+1
*
Issue 9005: Removed dead code.
Alexander Belopolsky
2010-10-13
1
-22/+6
*
main(): catch PyUnicode_FromString() failure (exit)
Victor Stinner
2010-10-13
1
-0/+2
*
Issue #9992: On Mac OS X, decode command line arguments from utf-8 instead of
Victor Stinner
2010-10-13
1
-1/+9
*
constify to appease compiler warnings
Benjamin Peterson
2010-10-13
1
-2/+2
*
Issue #9992: Remove PYTHONFSENCODING environment variable.
Victor Stinner
2010-10-13
1
-3/+0
*
Define a "session_id_context" at context creation. This is recommended
Antoine Pitrou
2010-10-13
1
-0/+5
*
Fix compile on NetBSD 5.0 (or anything else using an old 0.9.9-dev OpenSSL).
Gregory P. Smith
2010-10-13
1
-2/+4
*
fix compliation on NetBSD
Gregory P. Smith
2010-10-13
1
-1/+1
*
Issue #3873: Speed up unpickling from file objects which have a peek()
Antoine Pitrou
2010-10-12
1
-24/+93
*
Issue #10075: Add a session_stats() method to SSLContext objects.
Antoine Pitrou
2010-10-12
1
-0/+41
*
Upgrade to Unicode 6.0.0.
Martin v. Löwis
2010-10-11
2
-18656/+20399
*
Issue #10055: Make json C89-compliant in UCS4 mode.
Antoine Pitrou
2010-10-09
1
-1/+1
*
copy_absolute() keeps the relative path on _Py_wgetcwd() failure
Victor Stinner
2010-10-07
1
-2/+5
*
copy_absolute() raises a fatal error on _Py_wgetcwd() failure
Victor Stinner
2010-10-07
1
-1/+2
*
Create fileutils.c/.h
Victor Stinner
2010-10-07
2
-285/+4
*
_wrealpath() and _Py_wreadlink() support surrogates (PEP 383)
Victor Stinner
2010-10-07
1
-3/+6
*
PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*
Victor Stinner
2010-10-07
5
-6/+6
*
time: fix gcc warning
Victor Stinner
2010-10-07
1
-27/+28
*
Rewrite RunMainFromImporter()
Victor Stinner
2010-10-06
1
-25/+35
*
Issue #8670: Rename testcapi unicode test methods
Victor Stinner
2010-10-02
1
-4/+4
*
Oops, revert unwanted _testcapi changes of r85174
Victor Stinner
2010-10-02
1
-4/+4
*
Issue #8670: ctypes.c_wchar supports non-BMP characters with 32 bits wchar_t
Victor Stinner
2010-10-02
2
-6/+7
*
Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul char...
Victor Stinner
2010-10-02
1
-9/+63
*
Fix #10003. Add SIGBREAK to the set of valid signals on Windows.
Brian Curtin
2010-10-01
1
-0/+5
*
Issue #6608: time.asctime is now checking struct tm fields its input
Alexander Belopolsky
2010-10-01
1
-62/+76
*
Issue #9599: Further accuracy tweaks to loghelper. For an integer n that's ...
Mark Dickinson
2010-09-29
1
-14/+22
*
Issue #9979: Use PyUnicode_AsWideCharString() in _ctypes module
Victor Stinner
2010-09-29
2
-24/+5
*
Issue #9979: Use PyUnicode_AsWideCharString() in time.strftime()
Victor Stinner
2010-09-29
1
-21/+20
*
Issue #9979: Use PyUnicode_AsWideCharString() for _locale.strcoll()
Victor Stinner
2010-09-29
1
-17/+4
*
Fix compilation under Windows
Antoine Pitrou
2010-09-28
1
-0/+3
*
Issue #9090: When a socket with a timeout fails with EWOULDBLOCK or EAGAIN,
Antoine Pitrou
2010-09-28
1
-15/+88
*
Fix for issue #9568.
Ronald Oussoren
2010-09-28
1
-1/+1
*
Issue #9599: Tweak loghelper algorithm to return slightly improved results f...
Mark Dickinson
2010-09-28
1
-6/+8
*
Issue #9950: Fix socket.sendall() crash or misbehaviour when a signal is
Antoine Pitrou
2010-09-27
1
-23/+25
*
issue 9910
Kristján Valur Jónsson
2010-09-27
1
-0/+20
*
Fix a typo. full->final
Brian Curtin
2010-09-24
1
-1/+1
*
#9808. Implement os.getlogin for Windows, completed by Jon Anglin.
Brian Curtin
2010-09-23
1
-2/+15
*
Issue #9928: Properly initialize the types exported by the bz2 module.
Antoine Pitrou
2010-09-23
1
-3/+6
*
Issue 9916: Add some missing errno symbols.
Barry Warsaw
2010-09-22
1
-0/+30
*
Issue #9908: Fix os.stat() on bytes paths under Windows 7.
Antoine Pitrou
2010-09-21
1
-17/+31
*
Issue #2643: msync() is not called anymore when deallocating an open mmap
Antoine Pitrou
2010-09-21
1
-1/+0
*
Remove unused code in posixmodule.c
Amaury Forgeot d'Arc
2010-09-17
1
-68/+0
*
Issue #9854: The default read() implementation in io.RawIOBase now
Antoine Pitrou
2010-09-14
1
-2/+2
*
Remove C++-style comments
Antoine Pitrou
2010-09-14
1
-2/+2
*
Do not print additional shutdown message when gc.DEBUG_SAVEALL is set
Antoine Pitrou
2010-09-14
1
-1/+2
*
- Issue #9817: Add expat COPYING file; add expat, libffi and expat licenses
Matthias Klose
2010-09-12
1
-0/+21
*
Fixed refcount bug. I placed Py_INCREF in create_comerror() for compatibility
Hirokazu Yamamoto
2010-09-12
1
-0/+1
*
Isse #8589: Decode PYTHONWARNINGS from utf-8 on Mac OS X
Victor Stinner
2010-09-12
1
-2/+6
[next]