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
*
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
*
Remove compatibility code for Python < 2.1, < 2.2 and < 2.4.
Georg Brandl
2010-09-11
1
-42/+0
*
Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on
Victor Stinner
2010-09-11
1
-0/+12
*
Issue #9579, #9580: Fix os.confstr() for value longer than 255 bytes and encode
Victor Stinner
2010-09-10
1
-20/+22
*
Issue #8589: surrogateescape error handler is not available at startup
Victor Stinner
2010-09-10
1
-6/+11
*
Issue #9402: pyexpat uses Py_DECREF() instead of PyObject_DEL()
Victor Stinner
2010-09-10
1
-15/+8
*
Issue #941346: Improve the build process under AIX and allow Python to
Antoine Pitrou
2010-09-10
1
-7/+11
*
Untabify file.
Amaury Forgeot d'Arc
2010-09-10
1
-3/+3
*
Issue #9410: Various optimizations to the pickle module, leading to
Antoine Pitrou
2010-09-09
1
-519/+1830
*
#6394: Add os.getppid() support for Windows.
Amaury Forgeot d'Arc
2010-09-07
1
-2/+52
*
Issue #9758: When fcntl.ioctl() was called with mutable_flag set to True,
Antoine Pitrou
2010-09-07
1
-1/+1
*
More docstring updates
Amaury Forgeot d'Arc
2010-09-06
1
-4/+5
*
Issue #5506: BytesIO objects now have a getbuffer() method exporting a
Antoine Pitrou
2010-09-06
3
-0/+145
*
Implement #7566 - os.path.sameopenfile for Windows.
Brian Curtin
2010-09-06
1
-0/+28
*
Clean up the fix to #9324 with some of the suggestions raised on python-dev
Brian Curtin
2010-09-06
1
-11/+10
*
hashlib has two new constant attributes: algorithms_guaranteed and
Gregory P. Smith
2010-09-06
1
-1/+69
*
Issue #9293: I/O streams now raise `io.UnsupportedOperation` when an
Antoine Pitrou
2010-09-05
3
-21/+14
*
Fix for issue9662, patch by Łukasz Langa in issue5504.
Ronald Oussoren
2010-09-05
3
-3/+9
*
#9776: fix some spacing.
Georg Brandl
2010-09-05
1
-3/+3
*
#9747: fix copy-paste error in getresgid() doc.
Georg Brandl
2010-09-05
1
-1/+1
*
Inline cmp_lt().
Raymond Hettinger
2010-09-05
1
-15/+11
*
Issue #7451: Improve decoding performance of JSON objects, and reduce
Antoine Pitrou
2010-09-04
1
-45/+82
*
Fix typos in error messages (thanks Arfrever).
Antoine Pitrou
2010-09-04
1
-2/+2
*
Issue #7736: Release the GIL around calls to opendir() and closedir()
Antoine Pitrou
2010-09-04
1
-1/+10
*
Welcome to the UTF-8 world.
Florent Xicluna
2010-09-03
17
-17/+17
*
Fix invalid bytes for UTF-8
Éric Araujo
2010-09-03
1
-1/+1
*
Issue #3805: clean up implementation of the _read method in _ssl.c.
Antoine Pitrou
2010-09-03
1
-29/+30
*
Fix Issue9753: socket.dup() does not always work right on Windows
Daniel Stutzbach
2010-09-03
1
-8/+5
*
BytesIO.getvalue() and StringIO.getvalue() are METH_NOARGS.
Antoine Pitrou
2010-09-02
2
-2/+2
[next]