- 5d272cc Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec by Victor Stinner · 13 years ago
- efb00c0 Issue #14153 Create _Py_device_encoding() to prevent _io from having to import by Brett Cannon · 13 years ago
- 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 13 years ago
- 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
- 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
- bcf2b59 Issue #13609: Add two functions to query the terminal size: by Antoine Pitrou · 13 years ago
- 4195b5c Backout f8409b3d6449: the PEP 410 is not accepted yet by Victor Stinner · 13 years ago
- ccd5715 PEP 410 by Victor Stinner · 13 years ago
- 1aa54a4 Issue #13964: Skip os.*utime*() tests if os.stat() doesn't support timestamp by Victor Stinner · 13 years ago
- a2f7c00 Issue #13964: Split os.*utime*() subsecond tests into multiple tests to help by Victor Stinner · 13 years ago
- 7794090 Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), to by Charles-François Natali · 13 years ago
- f3b2d88 Issue #8828: Add new function os.replace(), for cross-platform renaming with overwriting. by Antoine Pitrou · 13 years ago
- 91ecea2 Issue #13772: In os.symlink() under Windows, do not try to guess the link by Antoine Pitrou · 13 years ago
- 5311c1d Issue #13772: In os.symlink() under Windows, do not try to guess the link by Antoine Pitrou · 13 years ago
- 50590f1 Use GetModuleHandleW to avoid *A functions where possible. by Martin v. Löwis · 13 years ago
- e83f899 Issue #13530: Document os.lseek() result by Victor Stinner · 13 years ago
- 76961fa Issue #13757: Change os.fdlistdir() so that it duplicates the passed file by Charles-François Natali · 13 years ago
- f2840a8 Backed out changeset 36f2e236c601: For some reason, rewinddir() doesn't work as by Charles-François Natali · 13 years ago
- 38f425e Issue #13739: It's simpler and more direct to call rewinddir() at the beginning. by Charles-François Natali · 13 years ago
- 7546ad3 Issue #13739: In os.listdir(), rewind the directory stream (so that listdir() by Charles-François Natali · 13 years ago
- 25ec056 Issue #13530: Document os.lseek() result by Victor Stinner · 13 years ago
- 1b57967 Issue #13560: Locale codec functions use the classic "errors" parameter, by Victor Stinner · 13 years ago
- 1f33f2b Issue #13560: os.strerror() now uses the current locale encoding instead of UTF-8 by Victor Stinner · 13 years ago
- 984890f Close #13415: Test in configure if unsetenv() has a return value or not. by Victor Stinner · 13 years ago
- e8eb0e8 merge 3.2 by Benjamin Peterson · 13 years ago
- 4bb867d plug refleak by Benjamin Peterson · 13 years ago
- 6517095 (Merge 3.2) Issue #13415: os.unsetenv() doesn't ignore errors anymore. by Victor Stinner · 13 years ago
- 60b385e Issue #13415: os.unsetenv() doesn't ignore errors anymore. by Victor Stinner · 13 years ago
- f8facac Fix compiler warnings by Victor Stinner · 13 years ago
- 9d3b93b Use the new Unicode API by Victor Stinner · 13 years ago
- f7c5ae2 Issue #13374: Deprecate os.getcwdb() on Windows by Victor Stinner · 13 years ago
- 1ab6c2d Issue #13374: The Windows bytes API has been deprecated in the os module. Use by Victor Stinner · 13 years ago
- 6139c1b Issue #12442: nt._getdiskusage() is now using the Windows Unicode API by Victor Stinner · 13 years ago
- d03a491 Commit 59dca1e2363d for issue #13327 introduced a compilation warning by Jesus Cea · 13 years ago
- 569b494 Fix #13327. utimensat now has the atime and mtime arguments set as optional, by Brian Curtin · 13 years ago
- 7ef53ef Forgot to apply the futimesat change. by Brian Curtin · 13 years ago
- c1b65d1 Fix 13327. Remove explicit None arguments from futimes, futimens, futimesat, by Brian Curtin · 13 years ago
- b0d5b5d Adjust None handling to be a bit more clean. Thanks to Benjamin by Brian Curtin · 13 years ago
- 52fbea1 Fix #13327. Remove the need for an explicit None as the second argument to by Brian Curtin · 13 years ago
- ab1078b (Merge 3.2) Issue #13339. by Ross Lagerwall · 13 years ago
- dcfde5a Issue #13339: Fix compile error in posixmodule.c due to missing semicolon. by Ross Lagerwall · 13 years ago
- 8b905bd Issue #13226: Add RTLD_xxx constants to the os module. These constants can by by Victor Stinner · 13 years ago
- bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
- beac78b Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE() by Victor Stinner · 13 years ago
- 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
- 034f6cf Add PyUnicode_Copy() function, include it to the public API by Victor Stinner · 13 years ago
- eb5657a posix module catches PyUnicode_AsUnicode() failure by Victor Stinner · 13 years ago
- 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
- 6fa6777 os.statvfs() encodes the filename to the filesystem encoding by Victor Stinner · 13 years ago
- b1e5d59 Issue #12517: Silence warning on windows buildbots (from 7fd80c61ddaa). by Ross Lagerwall · 13 years ago
- 9428d53 only compile xattrs on glibc (closes #12720) by Benjamin Peterson · 13 years ago
- b77fe17 Use xattr functions from sys/xattr.h instead of attr/xattr.h (closes #12720) by Benjamin Peterson · 13 years ago
- 54b0149 Typo by Jesus Cea · 13 years ago
- 9c82227 Yet another fix for #12763: test_posix failure on OpenIndiana by Jesus Cea · 13 years ago
- f2cb4e8 Close issue 12952: Solaris/Illumos (OpenIndiana) Scheduling policies by Jesus Cea · 13 years ago
- 9e3e70b Issue #12904: os.utime, os.futimes, os.lutimes, and os.futimesat now write by Larry Hastings · 13 years ago
- ea0d5fc Issue #12871: sched_get_priority_(min|max) might not be defined even though by Charles-François Natali · 13 years ago
- 799bd80 expose linux extended file system attributes (closes #12720) by Benjamin Peterson · 13 years ago
- dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
- a17a5d6 typo by Benjamin Peterson · 13 years ago
- 087a2a9 merge 3.2 by Benjamin Peterson · 13 years ago
- fc9bbd1 dosmodule is, thankfully, no more by Benjamin Peterson · 13 years ago
- 7ac9214 fix arg strings by Benjamin Peterson · 13 years ago
- 4e36d5a need NULL sentinel by Benjamin Peterson · 13 years ago
- bad9c2f avoid warning when SchedParamType is not used by Benjamin Peterson · 13 years ago
- e3298dd only add sched_param if it is initialized by Benjamin Peterson · 13 years ago
- 8f7bdd3 I have been spoiled by chained comparisons in python by Benjamin Peterson · 13 years ago
- 9b374bf comparing on number of cpus makes more sense by Benjamin Peterson · 13 years ago
- 0163c9a fix sched defines by Benjamin Peterson · 13 years ago
- c5fce4d check individually for some for sched_ functions by Benjamin Peterson · 13 years ago
- e870fe6 make_new_cpu_set takes the number of cpus by Benjamin Peterson · 13 years ago
- 2740af8 sched.h can exist without sched affinity support by Benjamin Peterson · 13 years ago
- 94b580d expose sched.h functions (closes #12655) by Benjamin Peterson · 13 years ago
- 6613c18 Issue #13415: Test in configure if unsetenv() has a return value or not. by Charles-François Natali · 13 years ago
- 06403cf decref correct object by Benjamin Peterson · 13 years ago
- 210e7ca Issue #12442: add shutil.disk_usage() by Giampaolo Rodola' · 13 years ago
- 6ee7a57 (Merge 3.2) posixmodule.c: fix function name in argument parsing by Victor Stinner · 13 years ago
- 26de69d posixmodule.c: fix function name in argument parsing by Victor Stinner · 13 years ago
- 4ff1a41 Merge 3.2 - update to the fix for #12084 by Brian Curtin · 13 years ago
- c8be840 Correct completely broken os.stat behavior on Windows XP. by Brian Curtin · 13 years ago
- a87d586 branch merge? by Brian Curtin · 13 years ago
- c9d6a50 branch merge by Brian Curtin · 13 years ago
- 3e86c99 Merge from 3.2 for Issue #12084. by Brian Curtin · 13 years ago
- d25aef5 Fix #12084. os.stat on Windows wasn't working properly with relative symlinks. by Brian Curtin · 13 years ago
- b0ae53d Issue #9344: Add os.getgrouplist(). by Ross Lagerwall · 13 years ago
- d9463b2 Merge 3.2 by Brian Curtin · 13 years ago
- 95d028f Correction to 88e318166eaf - Issue #11583 by Brian Curtin · 13 years ago
- 9a82eaa Fix #11583. Changed os.path.isdir to use GetFileAttributes instead of os.stat. by Brian Curtin · 13 years ago
- 9c669cc Fix #11583. Changed os.path.isdir to use GetFileAttributes instead of os.stat. by Brian Curtin · 13 years ago
- 368f34b Issue #12196: Make os.pipe2() flags argument mandatory. by Charles-François Natali · 13 years ago
- daafdd5 Issue #12196: Add pipe2() to the os module. by Charles-François Natali · 13 years ago
- 7870bdf Issue #6501: os.device_encoding() returns None on Windows if the application by Victor Stinner · 13 years ago
- 1e045b1 Issue #12105: Add O_CLOEXEC to the os module. by Charles-François Natali · 13 years ago
- b90db4c Issue #11918: OS/2 and VMS are no more supported because of the lack of by Victor Stinner · 14 years ago
- 877509a Issue #11382: Trivial system calls, such as dup() or pipe(), needn't by Antoine Pitrou · 14 years ago
- ff1a735 os.sendfile(): on Linux if offset parameter is passed as NULL we were erroneously returning a (bytes_sent, None) tuple instead of bytes_sent by Giampaolo Rodola' · 14 years ago
- 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 14 years ago
- 9ad63e0 Fix refleak introduced by #10812. by Ross Lagerwall · 14 years ago
- 4d076da Issue #11592: Fix compilation warnings in os module. by Ross Lagerwall · 14 years ago
- 8e74967 Issue #10812: Revert os.lseek change. by Ross Lagerwall · 14 years ago