- 21 Kas, 2010 1 kayıt (commit)
-
-
Ezio Melotti yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
-
- 01 Agu, 2010 1 kayıt (commit)
-
-
Brian Curtin yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83407 | brian.curtin | 2010-08-01 10:26:26 -0500 (Sun, 01 Aug 2010) | 3 lines Fix #8105. Add validation to mmap.mmap so invalid file descriptors don't cause a crash on Windows. ........
-
- 23 Ock, 2010 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-
- 30 Haz, 2009 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 04 Nis, 2009 1 kayıt (commit)
-
-
Hirokazu Yamamoto yazdı
-
- 01 Nis, 2009 1 kayıt (commit)
-
-
Jack Diederich yazdı
fixes crasher on OS X 10.5
-
- 31 Mar, 2009 2 kayıt (commit)
-
-
Hirokazu Yamamoto yazdı
-
Hirokazu Yamamoto yazdı
-
- 30 Mar, 2009 1 kayıt (commit)
-
-
R. David Murray yazdı
tests that expect to be skipped if imports fail or functions don't exist to use import_function and import_module. The ultimate goal is to change regrtest to not skip automatically on ImportError. Checking in now to make sure the buldbots don't show any errors on platforms I can't direct test on.
-
- 05 Mar, 2009 2 kayıt (commit)
-
-
Hirokazu Yamamoto yazdı
-
Hirokazu Yamamoto yazdı
Now uses NULL instead of INVALID_HANDLE_VALUE as invalid map handle because CreateFileMapping returns NULL when error occurs.
-
- 28 Şub, 2009 2 kayıt (commit)
-
-
Hirokazu Yamamoto yazdı
with same tagname but larger size than first map. (Windows)
-
Hirokazu Yamamoto yazdı
overrun.
-
- 17 Şub, 2009 2 kayıt (commit)
-
-
Hirokazu Yamamoto yazdı
The file was resized to wrong size.
-
Hirokazu Yamamoto yazdı
-
- 01 Nis, 2008 1 kayıt (commit)
-
-
Neal Norwitz yazdı
fine, but the last change may be required for the test to pass on Windows. Should we always close the mmap too?
-
- 17 Şub, 2008 1 kayıt (commit)
-
-
Facundo Batista yazdı
a subclass of it. Thanks John Lenton.
-
- 16 Şub, 2008 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
Skip this test created by r60830.
-
- 15 Şub, 2008 1 kayıt (commit)
-
-
Christian Heimes yazdı
Thanks to Thomas Herve for the fix.
-
- 22 Ock, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 19 Ock, 2008 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
Contributed by John Lenton.
-
- 23 Eki, 2007 1 kayıt (commit)
-
-
Travis E. Oliphant yazdı
-
- 28 Agu, 2007 1 kayıt (commit)
-
-
Thomas Wouters yazdı
- Specialcase extended slices that amount to a shallow copy the same way as is done for simple slices, in the tuple, string and unicode case. - Specialcase step-1 extended slices to optimize the common case for all involved types. - For lists, allow extended slice assignment of differing lengths as long as the step is 1. (Previously, 'l[:2:1] = []' failed even though 'l[:2] = []' and 'l[:2:None] = []' do not.) - Implement extended slicing for buffer, array, structseq, mmap and UserString.UserString. - Implement slice-object support (but not non-step-1 slice assignment) for UserString.MutableString. - Add tests for all new functionality.
-
- 03 Kas, 2006 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 29 Eki, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 05 Şub, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
on both Unix (SVR4 and BSD) and Windows. Restores behaviour of passing -1 for anonymous memory on Unix. Use MAP_ANONYMOUS instead of _ANON since the latter is deprecated according to Linux (gentoo) man pages. Should we continue to allow mmap.mmap(0, length) to work on Windows? 0 is a valid fd. Will backport bugfix portions.
-
- 11 Ock, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
This didn't crash on Linux, but valgrind complained. I'm not sure if this test is valid on Windows. Will backport.
-
- 18 Ara, 2005 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Fix some 64-bit issues due to mismatch format characters w/actual data types
-
- 26 Agu, 2005 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 24 Agu, 2005 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 28 Mar, 2005 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 03 Mar, 2005 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
file size.
-
- 13 Ock, 2003 1 kayıt (commit)
-
-
Tim Peters yazdı
managed to delete the @test file it intended to delete. Also, I don't see a reason to create a 4MB file in the new test, so cut it back to 16K.
-
- 10 Ock, 2003 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Closing an mmap'ed file (calling munmap) twice on Solaris caused a core dump. Will backport.
-
- 11 Eyl, 2002 1 kayıt (commit)
-
-
Barry Warsaw yazdı
exception occurred so it should only be closed in the else clause. Without this change we can an UnboundLocalError on Linux: Traceback (most recent call last): File "Lib/test/test_mmap.py", line 304, in ? test_both() File "Lib/test/test_mmap.py", line 208, in test_both m.close() UnboundLocalError: local variable 'm' referenced before assignment
-
- 10 Eyl, 2002 2 kayıt (commit)
-
-
Tim Peters yazdı
more instances of the bizarre "del f; del m" ways to spell .close() (del won't do any good here under Jython, etc).
-
Tim Peters yazdı
with a size larger than the underlying file worked on Windows. It does <wink>. However, merely creating an mmap that way has the side effect of growing the file on disk to match the specified size. A *later* test assumed that the file on disk was still exactly as it was before the new "size too big" test was added, but that's no longer true. So added a hack at the end of the "size too big" test to truncate the disk file back to its original size on Windows.
-
- 07 Eyl, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 05 Eyl, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Raise ValueError if user passes a size to mmap which is larger than the file.
-
- 23 Tem, 2002 1 kayıt (commit)
-
-
Barry Warsaw yazdı
imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
-