- 852a542 Bug #1373197: note that os.makedirs does not work with '..' by Georg Brandl · 20 years ago
- 69cb3cd Bug #1343671: clarify docs for os.removedirs by Georg Brandl · 20 years ago
- c1d2f7b Bug #1106572: clarify os.makedirs docs wrt umask by Georg Brandl · 20 years ago
- e3faaeb Bug #1357604: os.makedirs handles UNC paths by Georg Brandl · 20 years ago
- a6ba602 Add a note to os.chown that permission constants can be combined by Georg Brandl · 20 years ago
- 9483220 SF bug #1328915, try to word kill a bit more generically. Backport candidate. by Neal Norwitz · 20 years ago
- 7ecbc19 SF Bug #1008310, os.major() os.minor() example and description change. Will backport. by Neal Norwitz · 20 years ago
- 92ff693 Fix SF bug #991735, os.access reports true for read-only directories. Will backport by Neal Norwitz · 20 years ago
- e1a385a Explain what file descriptors are; this change has been sitting in my tree for a while by Andrew M. Kuchling · 20 years ago
- 9f3ae3e fix minor markup errors by Fred Drake · 20 years ago
- ebd9d5b Patch #1180695: Implement nanosecond stat resolution on FreeBSD, by Martin v. Löwis · 20 years ago
- 2d8cc61 [ 755617 ] os module: Need a better description of "mode" by Georg Brandl · 20 years ago
- b37b8ec bug [ 872769 ] os.access() documentation should stress race conditions by Georg Brandl · 20 years ago
- 3e3b699 add note that os.EX_* constants are subject to availability on the host platform by Fred Drake · 20 years ago
- 6df3fd3 bug [ 1186072 ] tempnam doc doesn't include link to tmpfile by Georg Brandl · 20 years ago
- 03dbb4f Bug [ 1190563 ] os.waitpid docs don't specify return value for WNOHANG by Georg Brandl · 20 years ago
- 0929b7e Patch [ 1213031 ] note that os.chown can have -1 as an argument by Georg Brandl · 20 years ago
- 3da85ec correcting duplicate TeX markup by Georg Brandl · 20 years ago
- 837a976 Bug [ 1225705 ] os.environ documentation should mention unsetenv by Georg Brandl · 20 years ago
- debd371 Clarify docs about os.popen[234]. by Georg Brandl · 20 years ago
- 5f937a7 Patch #1212117: Add optional attribute st_flags to os.stat_result by Hye-Shik Chang · 20 years ago
- 5ff1492 Add O_SHLOCK & O_EXLOCK. Closes patch #1103951. by Skip Montanaro · 20 years ago
- 7706c2d Update references specifying "Macintosh" to mean OS X semantics and not Mac OS by Brett Cannon · 21 years ago
- 4d394df Truncate st_?time before comparing it with ST_?TIME in the tests. by Martin v. Löwis · 21 years ago
- b184ae8 fix a bunch of spelling errors (closes SF patch #1104868) by Fred Drake · 21 years ago
- fe33d0b Default stat_float_times to true. by Martin v. Löwis · 21 years ago
- 22b457e Added SEEK_* constants. Fixes #711830. by Martin v. Löwis · 21 years ago
- bccc9a9 Added example to os.stat() by Facundo Batista · 21 years ago
- 3fa932f Fix typo (from SF bug #1086127). by Walter Dörwald · 21 years ago
- 7f13cfa os.walk(): Changed the "sum of bytes consumed by files" example to use by Tim Peters · 21 years ago
- 919a3b4 SF bug 1071087: os.walk example for deleting a full tree is sometime wrong. by Tim Peters · 21 years ago
- 2cf5e19 Point out some platform vagaries in stat() and utime(). by Tim Peters · 21 years ago
- 9fc9789 Document that on Unix, the 'cmd' argument to the os.popen2/3/4 and by Johannes Gijsbers · 21 years ago
- b6aa856 Patch #1009075, bug #952953: allow execve with empty 2nd argument by Armin Rigo · 21 years ago
- dc3883f Patch #934711: Expose platform-specific entropy. by Martin v. Löwis · 21 years ago
- d6ef193 SF bugs 996748: os.environ documentation should indicate unreliability by Tim Peters · 21 years ago
- 76aa2ef Get doc to build (add missing backslash) by Neal Norwitz · 21 years ago
- de83321 SF bug 990749: os constants missing by Tim Peters · 21 years ago
- bdec50f Feature request #935915: Add os.path.devnull. by Martin v. Löwis · 21 years ago
- e1ca355 [Bug #918710] Add paragraph to clarify docs by Andrew M. Kuchling · 21 years ago
- 1cd6e4d fix various descriptions of "ctime" (closes SF patch #870287) by Fred Drake · 21 years ago
- 0ed6634 really scream out that people should use the file objects instead of by Fred Drake · 21 years ago
- 9b4dab4 SF patch #859286: documentation bool change fix by Raymond Hettinger · 22 years ago
- 75aa4db Mention that getsid is new in 2.4. by Martin v. Löwis · 22 years ago
- 49ee14d Patch #839038: Add getsid(2). by Martin v. Löwis · 22 years ago
- 9756f38 Fix typo. by Raymond Hettinger · 22 years ago
- b67449d Fix spacing markup and other sundries. by Raymond Hettinger · 22 years ago
- 0a6aa28 SF patch #797157: Bug 794658: os.chmod docs, stat constants by Raymond Hettinger · 22 years ago
- 15eac1f Fix markup nits. by Fred Drake · 22 years ago
- dbaf04e Straighten out the docs for os.system(); the Unix and Windows behaviors by Tim Peters · 22 years ago
- bf1bef8 Add optional 'onerror' argument to os.walk(), to control error handling. by Guido van Rossum · 22 years ago
- 52136a8 Fixed spacing and unbalanced brackets or parenthesis. by Raymond Hettinger · 22 years ago
- a390c6e walk() docs: Emphasize that the recursive-delete example is dangerous. by Tim Peters · 22 years ago
- 5501b5e SF bug 728097: tmpnam problems on windows 2.3b, breaks test.test_os. by Tim Peters · 22 years ago
- bf89b3a walk() docs: Worked "walking" into the description and the text. Added by Tim Peters · 22 years ago
- 2194a4e markup adjustments by Fred Drake · 22 years ago
- c4e0940 New generator os.walk() does a bit more than os.path.walk() does, and by Tim Peters · 22 years ago
- 2d1c846 Clarified new fsync() docs. by Tim Peters · 22 years ago
- 11b2306 Enable os.fsync() for Windows, mapping it to MS's _commit() there. The by Tim Peters · 22 years ago
- 5c7b248 - explain what a UNC path is in the makedirs() description, since by Fred Drake · 22 years ago
- 96b1c90 Patch #683592 revisited, after discussions with MvL: by Just van Rossum · 22 years ago
- 117910d Migrate definitions of several platform-dependent path-related variables by Skip Montanaro · 23 years ago
- 002a5de extsep description: by Fred Drake · 23 years ago
- 47e46e2 add missing description of os.extsep by Skip Montanaro · 23 years ago
- 2b09bc4 Fix SF bug #675259, os.environ leaks under FreeBSD and Mac OS X by Neal Norwitz · 23 years ago
- 4b37364 Bug #678077: Suggest alternative to os.getlogin() by Andrew M. Kuchling · 23 years ago
- b6604b3 Document EX_OK and friends. by Barry Warsaw · 23 years ago
- 9f5b07d SF bug #592859: os.chmod is underdocumented by Raymond Hettinger · 23 years ago
- 6d23b17 Fix a typo by Neal Norwitz · 23 years ago
- 33e9443 Document killpg. by Martin v. Löwis · 23 years ago
- 438b534 Patch #657889: Implement posix.getloadavg. by Martin v. Löwis · 23 years ago
- 08d10f9 Typo: "dead lock" --> "deadlock" by Fred Drake · 23 years ago
- 4b9ed2f Clarified documentation of tempnam(). Closes SF bug #635656. by Fred Drake · 23 years ago
- b5f41de Minor markup adjustments. by Fred Drake · 23 years ago
- 5b470e0 Document the changed fdopen behaviour. (Hope the markup is ok). by Thomas Heller · 23 years ago
- f607bda Add PyStructSequence_UnnamedField. Add stat_float_times. by Martin v. Löwis · 23 years ago
- 36a4d8c Remove mentionings of DOS. by Martin v. Löwis · 23 years ago
- dbe3f76 Patch #569139: Implementation of major, minor and makedev. by Martin v. Löwis · 23 years ago
- a844f2d Document patch #594001. by Martin v. Löwis · 23 years ago
- a32c994 Always generate floats for stat_result; fix configure test. by Martin v. Löwis · 23 years ago
- 94717ed Patch #606592: Subsecond timestamps in stat_result. by Martin v. Löwis · 23 years ago
- 3cfdc34 Documented os.fsync and os.fdatasync. Closes SF bug 584695. by Raymond Hettinger · 23 years ago
- 0cec0ff Patch #573770: Implement lchown. by Martin v. Löwis · 23 years ago
- 403e351 Flesh out description of getlogin() and recommend against using it. by Jeremy Hylton · 23 years ago
- 2c22e85 Attempt to clarify removedirs(). Based on SF bug #574773. by Fred Drake · 23 years ago
- 9ea01d4 Add description of the deadlock problem with child processes and pipes, and by Fred Drake · 23 years ago
- 7f59124 Clarified documentation for os.access(). by Fred Drake · 23 years ago
- cc5c694 Add "version added" for getpgid by Neal Norwitz · 23 years ago
- 606edc1 Patch #568235: Add posix.setpgid. by Martin v. Löwis · 23 years ago
- db9198a SF bug 563750 (Alex Martelli): posix_tmpfile(): by Guido van Rossum · 23 years ago
- 1f89e2a Fix markup error that suppressed space. by Fred Drake · 23 years ago
- a65375c Explain what os.read() returns at end of file. by Fred Drake · 23 years ago
- d3e6678 Slightly expand and clarify the differences between getegid(), getgid(), by Fred Drake · 23 years ago
- 106c1a0 WCOREDUMP(), WIFCONTINUED(), WCONTINUED, WUNTRACED: New. by Fred Drake · 23 years ago
- e19a5bc Be consistent in presenting the signatures. by Fred Drake · 23 years ago
- 1549855 Add docs for os.fchdir(). by Fred Drake · 23 years ago
- 06a83e9 Patch #543447: Add posix.mknod. by Martin v. Löwis · 23 years ago
- 4dfb7a8 Explain that os.spawn*() return the process handle on Windows. by Fred Drake · 23 years ago
- ab034fa Implement os.waitpid() for Windows, in a way that's compatible with Linux by Tim Peters · 24 years ago
- c48a3ca Add new constants usable with os.popen() on Windows. by Tim Peters · 24 years ago