summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* fix condition (#14296)Benjamin Peterson2012-03-161-1/+1
* try to fix compilation on glibc's with cpu sets (#14296)Benjamin Peterson2012-03-151-0/+4
* Close #14180: Factorize code to convert a number of seconds to time_t, timeva...Victor Stinner2012-03-131-45/+20
* Issue #14153 Create _Py_device_encoding() to prevent _io from having to importBrett Cannon2012-02-291-27/+3
* Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-201-82/+31
|\
| * Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-201-106/+18
| |\
| | * Issue #13703: add a way to randomize the hash values of basic types (str, byt...Georg Brandl2012-02-201-106/+19
* | | Issue #13609: Add two functions to query the terminal size:Antoine Pitrou2012-02-081-0/+130
* | | Backout f8409b3d6449: the PEP 410 is not accepted yetVictor Stinner2012-02-081-124/+61
* | | PEP 410Victor Stinner2012-02-081-61/+124
* | | Issue #13964: Skip os.*utime*() tests if os.stat() doesn't support timestampVictor Stinner2012-02-081-1/+0
* | | Issue #13964: Split os.*utime*() subsecond tests into multiple tests to helpVictor Stinner2012-02-081-77/+45
* | | Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), toCharles-François Natali2012-02-061-5/+5
* | | Issue #8828: Add new function os.replace(), for cross-platform renaming with ...Antoine Pitrou2012-01-301-13/+34
* | | Issue #13772: In os.symlink() under Windows, do not try to guess the linkAntoine Pitrou2012-01-241-11/+0
|\ \ \ | |/ /
| * | Issue #13772: In os.symlink() under Windows, do not try to guess the linkAntoine Pitrou2012-01-241-11/+0
* | | Use GetModuleHandleW to avoid *A functions where possible.Martin v. Löwis2012-01-141-3/+3
* | | Issue #13757: Change os.fdlistdir() so that it duplicates the passed fileCharles-François Natali2012-01-101-2/+5
* | | Backed out changeset 36f2e236c601: For some reason, rewinddir() doesn't work asCharles-François Natali2012-01-081-1/+2
* | | Issue #13739: It's simpler and more direct to call rewinddir() at theCharles-François Natali2012-01-081-2/+1
* | | Issue #13739: In os.listdir(), rewind the directory stream (so that listdir()Charles-François Natali2012-01-081-0/+2
* | | Issue #13530: Document os.lseek() resultVictor Stinner2011-12-171-1/+2
|\ \ \ | |/ /
| * | Issue #13530: Document os.lseek() resultVictor Stinner2011-12-171-1/+2
| * | Issue #13415: Test in configure if unsetenv() has a return value or not.Charles-François Natali2011-11-271-0/+6
| * | decref correct objectBenjamin Peterson2011-11-231-1/+1
* | | Issue #13560: Locale codec functions use the classic "errors" parameter,Victor Stinner2011-12-171-1/+1
* | | Issue #13560: os.strerror() now uses the current locale encoding instead of U...Victor Stinner2011-12-171-1/+1
* | | Close #13415: Test in configure if unsetenv() has a return value or not.Victor Stinner2011-11-241-1/+6
* | | merge 3.2Benjamin Peterson2011-11-231-1/+5
|\ \ \ | |/ /
| * | plug refleakBenjamin Peterson2011-11-231-1/+3
* | | (Merge 3.2) Issue #13415: os.unsetenv() doesn't ignore errors anymore.Victor Stinner2011-11-221-81/+33
|\ \ \ | |/ /
| * | Issue #13415: os.unsetenv() doesn't ignore errors anymore.Victor Stinner2011-11-221-17/+11
* | | Fix compiler warningsVictor Stinner2011-11-221-1/+1
* | | Use the new Unicode APIVictor Stinner2011-11-221-13/+13
* | | Issue #13374: Deprecate os.getcwdb() on WindowsVictor Stinner2011-11-161-0/+3
* | | Issue #13374: The Windows bytes API has been deprecated in the os module. UseVictor Stinner2011-11-151-147/+181
* | | Issue #12442: nt._getdiskusage() is now using the Windows Unicode APIVictor Stinner2011-11-091-3/+3
* | | Commit 59dca1e2363d for issue #13327 introduced a compilation warningJesus Cea2011-11-081-1/+2
* | | Fix #13327. utimensat now has the atime and mtime arguments set as optional,Brian Curtin2011-11-071-7/+12
* | | Forgot to apply the futimesat change.Brian Curtin2011-11-071-4/+3
* | | Fix 13327. Remove explicit None arguments from futimes, futimens, futimesat,Brian Curtin2011-11-071-18/+17
* | | Adjust None handling to be a bit more clean. Thanks to BenjaminBrian Curtin2011-11-071-4/+4
* | | Fix #13327. Remove the need for an explicit None as the second argument toBrian Curtin2011-11-061-7/+7
* | | (Merge 3.2) Issue #13339.Ross Lagerwall2011-11-041-1/+1
|\ \ \ | |/ /
| * | Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.Ross Lagerwall2011-11-041-1/+1
* | | Issue #13226: Add RTLD_xxx constants to the os module. These constants can byVictor Stinner2011-10-251-0/+26
* | | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-1/+1
* | | Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE()Victor Stinner2011-10-111-2/+1
* | | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-1/+2
* | | Add PyUnicode_Copy() function, include it to the public APIVictor Stinner2011-09-301-2/+1