summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
Commit message (Expand)AuthorAgeFilesLines
* Fix #9333. The symlink function is always available now, raising OSErrorBrian Curtin2010-12-281-3/+3
* Avoid possible zombi process.Hirokazu Yamamoto2010-12-051-2/+4
* Fix #9333. Expose os.symlink on Windows only when usable.Brian Curtin2010-12-021-9/+3
* Issue 9299 Add exist_ok parameter to os.makedirs to suppress 'File exists' ex...Terry Reedy2010-12-021-0/+22
* Fix #10591. Fix test_os for refleak runs.Brian Curtin2010-11-301-2/+1
* Actually fix what I attempted to fix in r86888...Brian Curtin2010-11-301-3/+3
* Try to fix failures on platforms that can't encode the test characters.Brian Curtin2010-11-301-1/+6
* Fix for #8879.Brian Curtin2010-11-281-0/+5
* Fix #8879. Add os.link support to Windows.Brian Curtin2010-11-241-0/+28
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-21/+21
* Close subprocess pipes in _kill. Fixes a number of ResourceWarnings.Brian Curtin2010-11-051-0/+3
* Fix #10257. Clear resource warnings by using os.popen's context manager.Brian Curtin2010-10-301-8/+10
* Issue #10210: os.get_exec_path() ignores BytesWarning warningsVictor Stinner2010-10-291-1/+4
* Fix #10098. Fix sporadic test_os failures.Brian Curtin2010-10-151-1/+1
* Issue #9992: Remove PYTHONFSENCODING environment variable.Victor Stinner2010-10-131-30/+0
* Issue #9978: Wait until subprocess completes initialization. (Win32KillTests ...Hirokazu Yamamoto2010-10-081-2/+14
* LoginTests fails on a number of buildbots with different errors. SkipBrian Curtin2010-09-241-0/+3
* #9808. Implement os.getlogin for Windows, completed by Jon Anglin.Brian Curtin2010-09-231-0/+8
* Issue #9908: Fix os.stat() on bytes paths under Windows 7.Antoine Pitrou2010-09-211-2/+11
* Issue #8603: Environ.data is now protected -> Environ._dataVictor Stinner2010-09-101-1/+0
* #6394: Add os.getppid() support for Windows.Amaury Forgeot d'Arc2010-09-071-0/+12
* Workaround issue #8611 in test_undecodable_code() of test_sysVictor Stinner2010-08-201-9/+6
* Skip test_encodings() of test_os on Windows and Mac OS XVictor Stinner2010-08-191-0/+2
* Fix os.get_exec_path() (code and tests) for python -bbVictor Stinner2010-08-191-3/+10
* Fix test_os: workaround #8611 bugVictor Stinner2010-08-191-2/+9
* Create os.fsdecode(): decode from the filesystem encoding with surrogateescapeVictor Stinner2010-08-191-15/+38
* Improve PEP 383 tests (in test_os)Victor Stinner2010-08-181-15/+41
* Update test_os.py according to my last changes on _Environ.__repr__()Victor Stinner2010-07-291-1/+3
* Re-flow several long lines from #1578269.Brian Curtin2010-07-091-1/+2
* Implement #1578269. Patch by Jason R. Coombs.Brian Curtin2010-07-081-2/+80
* Merged revisions 82403 via svnmerge fromBenjamin Peterson2010-06-301-0/+1
* Merged revisions 81584 via svnmerge fromBrian Curtin2010-05-281-6/+50
* Issue #8513: os.get_exec_path() supports b'PATH' key and bytes value.Victor Stinner2010-05-181-11/+57
* Oops, my patch on subprocess is not merged yet: fix my previous commit on tes...Victor Stinner2010-05-171-4/+1
* test_os: cleanup test_internal_execvpe() and os._execvpe() mockupVictor Stinner2010-05-171-48/+53
* Replace /s with os.sep in the new internal_execvpe test. Hopefully fixesGregory P. Smith2010-05-091-5/+8
* make condition more specificBenjamin Peterson2010-05-091-1/+2
* Write tests for the new function os.fsencode()Victor Stinner2010-05-091-1/+9
* Adds a unittest for the internal os._execvpe function.Gregory P. Smith2010-05-081-0/+49
* Fix test_os: os.environb doesn't exist on WindowsVictor Stinner2010-05-071-3/+5
* self.skip -> self.skipTestBenjamin Peterson2010-05-061-1/+1
* wrap long linesBenjamin Peterson2010-05-061-2/+5
* use concise skippingBenjamin Peterson2010-05-061-1/+1
* Issue #8603: Create a bytes version of os.environ for UnixVictor Stinner2010-05-061-0/+21
* Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore,Victor Stinner2010-04-221-9/+0
* Don't assume that os.confstr_names exists.Mark Dickinson2010-04-161-1/+2
* Issue #4970: move linuxthreads check outside the affected test, and use skipIfMark Dickinson2010-04-161-10/+13
* Add CS_GNU_LIBC_VERSION and CS_GNU_LIBPTHREAD_VERSION constants for constr(),Victor Stinner2010-04-161-0/+9
* Port #1220212 (os.kill for Win32) to py3k.Brian Curtin2010-04-121-3/+63
* Merged revisions 78093 via svnmerge fromGeorg Brandl2010-03-141-3/+0