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 #10956: Buffered I/O classes retry reading or writing after a signal
Antoine Pitrou
2011-02-25
1
-2/+49
*
Issue 10784: adds os.getpriority() and os.setpriority() functions.
Giampaolo Rodolà
2011-02-25
1
-0/+62
*
Issue #11114: Fix catastrophic performance of tell() on text files (up
Antoine Pitrou
2011-02-25
1
-39/+96
*
Rename internal helper function and make it static.
Georg Brandl
2011-02-25
1
-5/+5
*
Issue 10882: add os.sendfile(). (patch provided by Ross Lagerwall)
Giampaolo Rodolà
2011-02-25
1
-16/+232
*
Issue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer with
Antoine Pitrou
2011-02-24
1
-0/+11
*
Issue #11286: Fixed unpickling of empty 2.x strings.
Alexander Belopolsky
2011-02-24
1
-5/+0
*
Issue #8914: fix various warnings from the Clang static analyzer v254.
Brett Cannon
2011-02-22
17
-43/+24
*
Issue #10924: Adding salt and Modular Crypt Format to crypt library.
Sean Reifscheider
2011-02-22
2
-3/+3
*
Issue #4681: Allow mmap() to work on file sizes and offsets larger than
Antoine Pitrou
2011-02-21
1
-48/+59
*
Fix compile error under MSVC introduced by r88460.
Antoine Pitrou
2011-02-21
1
-2/+2
*
Fix issues on 32-bit systems introduced by r88460
Antoine Pitrou
2011-02-21
1
-6/+6
*
Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers
Antoine Pitrou
2011-02-21
1
-2/+22
*
#941346: Fix broken shared library build on AIX. Patch by Sebastien Sable, re...
Georg Brandl
2011-02-15
1
-1/+1
*
Issue #11135: Remove redundant doc field from PyType_Spec.
Martin v. Löwis
2011-02-11
1
-6/+4
*
Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check
Martin v. Löwis
2011-02-05
1
-1/+7
*
There was a possibility that the initialization of _sqlite, when it failed,
Brett Cannon
2011-02-04
1
-1/+1
*
Issue #8275: Fix passing of callback arguments with ctypes under Win64.
Antoine Pitrou
2011-01-31
2
-1/+15
*
Issue #10989: Fix a crash on SSLContext.load_verify_locations(None, True).
Victor Stinner
2011-01-29
1
-1/+1
*
Issue #11004: Repair edge case in deque.count().
Raymond Hettinger
2011-01-25
1
-4/+7
*
Issue #10987: Fix the recursion limit handling in the _pickle module.
Antoine Pitrou
2011-01-23
1
-12/+19
*
Issue #10955: zipimport uses ASCII at bootstrap
Victor Stinner
2011-01-22
1
-1/+19
*
Issue #10955: Fix a potential crash when trying to mmap() a file past its
Antoine Pitrou
2011-01-20
1
-0/+11
*
Issue #10898: Allow compiling the posix module when the C library defines
Antoine Pitrou
2011-01-19
1
-0/+2
*
Fix mmap and test_mmap under Windows too (followup to r88022)
v3.2rc1
Antoine Pitrou
2011-01-15
1
-0/+1
*
Issue #10916: mmap should not segfault when a file is mapped using 0 as
Antoine Pitrou
2011-01-15
1
-1/+1
*
Remove call to nonexisting function (relic from Python 2.x) under #ifdef __IN...
Eli Bendersky
2011-01-14
1
-1/+0
*
Issue #5109: array.array constructor will now use fast code when
Alexander Belopolsky
2011-01-11
1
-5/+15
*
Issue #1726687: time.mktime() will now correctly compute value one
Alexander Belopolsky
2011-01-11
1
-1/+4
*
Issue #9611: remove useless and dangerous explicit conversion to size_t
Victor Stinner
2011-01-11
2
-3/+3
*
Issue #9566: Fix pyparse.xmlparser.ParseFile()
Victor Stinner
2011-01-10
1
-22/+12
*
Issue #10872: The repr() of TextIOWrapper objects now includes the mode
Antoine Pitrou
2011-01-09
1
-7/+34
*
Issue #10864: limit year to [1; 9999] for strftime() on Solaris
Victor Stinner
2011-01-08
1
-1/+1
*
Issue #1777412: Remove all limits on tm_year from time.strftime()
Victor Stinner
2011-01-08
1
-8/+1
*
Issue #1777412: strftime() accepts year >= 1 instead of year >= 1900
Victor Stinner
2011-01-08
1
-6/+12
*
Fixed error handling branches. Thanks
Alexander Belopolsky
2011-01-08
1
-14/+19
*
Issue #1777412: extended year range of strftime down to 1000.
Alexander Belopolsky
2011-01-08
2
-8/+8
*
Issue #10827: Changed the rules for 2-digit years. The time.asctime
Alexander Belopolsky
2011-01-07
1
-15/+32
*
Issue #10841: set binary mode on files; the parser translates newlines
Victor Stinner
2011-01-07
2
-3/+11
*
Further simplify gettmarg()
Alexander Belopolsky
2011-01-06
1
-19/+5
*
Issue #7858: Raise an error properly when os.utime() fails under Windows
Antoine Pitrou
2011-01-06
1
-0/+1
*
Use PyOS_snprintf for better portability.
Alexander Belopolsky
2011-01-06
1
-5/+5
*
- time.accept2dyear = True is now equivalent to time.accept2dyear = 1
Alexander Belopolsky
2011-01-05
1
-34/+19
*
Issue #10756: atexit normalizes the exception before displaying it.
Victor Stinner
2011-01-05
1
-0/+1
*
test_unicode: use ctypes to test PyUnicode_FromFormat()
Victor Stinner
2011-01-05
1
-12/+0
*
Issue #9566: PyUnicode_FromFormatV() doesn't support %zi, use %zd instead
Victor Stinner
2011-01-04
1
-1/+1
*
Issue #9566: explain why (int)len cannot underflow
Victor Stinner
2011-01-04
1
-0/+1
*
Whitespace cleanup
Alexander Belopolsky
2011-01-04
1
-2/+1
*
Issue #8013: time.asctime and time.ctime no longer call system asctime
Alexander Belopolsky
2011-01-04
1
-22/+39
*
Issue #9566: use Py_ssize_t instead of int
Victor Stinner
2011-01-04
10
-26/+23
[next]