| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Revert the following revisions, as they don't fix security | Martin v. Löwis | 2008-03-02 | 1 | -21/+2 |
| | | | | | | | | problems: 52448, 52468, 52472, 52475, 52646, 52797, 52802, 52863, 52999, 53001, 53101, 53371, 53373, 53383, 53384, 53736, 53812, 53921, 55578, 55580, 55581, 55772, 55775, 56557, 57093, 57094, 58630, 60114 | ||||
| * | Point users to the subprocess module in the docs for os.system, os.spawn*, ↵ | Andrew M. Kuchling | 2006-10-27 | 1 | -2/+21 |
| | | | | | os.popen2, and the popen2 and commands modules | ||||
| * | Backport r45505, r45573, r45576 | Martin v. Löwis | 2006-10-09 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | - reset errno before calling confstr - use confstr() doc to simplify checks afterwards - Correct implementation and documentation of os.confstr. Add a simple test case. I've yet to figure out how to provoke a None return I can test. - Address issues brought up by MvL on python-checkins. I tested this with valgrind on amd64. The man pages I found for diff architectures are inconsistent on this. I'm not entirely sure this change is correct for all architectures either. Perhaps we should just over-allocate and not worry about it? The change to return None instead of "" in case of unconfigured values has not been backported. | ||||
| * | [Backport rev.39739 by nnorwitz] | Andrew M. Kuchling | 2006-09-29 | 1 | -2/+2 |
| | | | | | SF bug #1328915, try to word kill a bit more generically. Backport candidate. | ||||
| * | Bug #1467952: backport: make os.listdir() raise if readdir() fails | Georg Brandl | 2006-04-11 | 1 | -1/+2 |
| | | |||||
| * | Backport: SF #1442767, docs for os.statvfs miss f_bsize parameter. | Neal Norwitz | 2006-03-03 | 1 | -0/+1 |
| | | |||||
| * | Another typo. | Georg Brandl | 2006-01-22 | 1 | -1/+1 |
| | | |||||
| * | Correct several typos in libos.tex. Bug #1412227. | Georg Brandl | 2006-01-22 | 1 | -8/+8 |
| | | |||||
| * | Remove dots in \version{added,changed} arguments. | Georg Brandl | 2006-01-15 | 1 | -1/+1 |
| | | |||||
| * | bug #1395597: doc typo | Georg Brandl | 2006-01-02 | 1 | -2/+2 |
| | | |||||
| * | Bug #1373197: note that os.makedirs does not work with '..' | Georg Brandl | 2005-12-17 | 1 | -0/+2 |
| | | |||||
| * | Bug #1343671: clarify docs for os.removedirs | Georg Brandl | 2005-12-17 | 1 | -5/+9 |
| | | |||||
| * | Bug #1106572: clarify os.makedirs docs wrt umask | Georg Brandl | 2005-12-17 | 1 | -1/+2 |
| | | |||||
| * | Bug #1357604: os.makedirs handles UNC paths | Georg Brandl | 2005-11-22 | 1 | -3/+2 |
| | | |||||
| * | Add a note to os.chown that permission constants can be combined | Georg Brandl | 2005-11-22 | 1 | -1/+2 |
| | | |||||
| * | Backport: SF Bug #1008310, os.major() os.minor() example and description change. | Neal Norwitz | 2005-10-03 | 1 | -2/+4 |
| | | |||||
| * | Fix SF bug #991735, os.access reports true for read-only directories. Will ↵ | Neal Norwitz | 2005-10-03 | 1 | -0/+5 |
| | | | | | backport | ||||
| * | backport bug [ 755617 ] os module: Need a better description of "mode" | Georg Brandl | 2005-07-18 | 1 | -0/+5 |
| | | |||||
| * | bug [ 872769 ] os.access() documentation should stress race conditions | Georg Brandl | 2005-07-17 | 1 | -0/+5 |
| | | |||||
| * | add note that os.EX_* constants are subject to availability on the host | Fred Drake | 2005-06-27 | 1 | -0/+3 |
| | | | | | platform | ||||
| * | backport bug [ 1186072 ] tempnam doc doesn't include link to tmpfile | Georg Brandl | 2005-06-25 | 1 | -8/+9 |
| | | |||||
| * | backport [ 1190563 ] os.waitpid docs don't specify return value for WNOHANG | Georg Brandl | 2005-06-25 | 1 | -2/+3 |
| | | |||||
| * | backport patch [ 1213031 ] note that os.chown can have -1 as an argument | Georg Brandl | 2005-06-25 | 1 | -1/+1 |
| | | |||||
| * | backport of bug [ 1225705 ] os.environ documentation should mention unsetenv | Georg Brandl | 2005-06-25 | 1 | -3/+21 |
| | | |||||
| * | Clarify docs about os.popen[234]. | Georg Brandl | 2005-06-10 | 1 | -2/+2 |
| | | |||||
| * | Update refences to "Macintosh" to reflect the state of affairs for OS X and not | Brett Cannon | 2005-02-13 | 1 | -79/+79 |
| | | | | | | | Mac OS 9. Backport of patch #1095802. | ||||
| * | Backport checkin: Fix typo (from SF bug #1086127). | Walter Dörwald | 2004-12-15 | 1 | -1/+1 |
| | | |||||
| * | os.walk(): Changed the "sum of bytes consumed by files" example to use | Tim Peters | 2004-11-22 | 1 | -1/+1 |
| | | | | | | | a generator expression instead of a listcomp. Not a backport candidate (genexps are new in 2.4). | ||||
| * | SF bug 1071087: os.walk example for deleting a full tree is sometime wrong. | Tim Peters | 2004-11-22 | 1 | -5/+5 |
| | | | | | | | | | | | | Clarify that the example assumes no links are present; the point of the example is to illustrate a need for topdown=False, not to wrestle with platform-dependent link convolutions. Also spell os.path.join() out in full, instead of using a shortcut import. The bug reporter was confused by that too, and it's clearer this way. Bugfix candidate; but I don't intend to backport it. | ||||
| * | Point out some platform vagaries in stat() and utime(). | Tim Peters | 2004-11-04 | 1 | -5/+19 |
| | | | | | | Bugfix candidate (the vagaries aren't new <wink>), but I don't intend to backport this. | ||||
| * | Document that on Unix, the 'cmd' argument to the os.popen2/3/4 and | Johannes Gijsbers | 2004-10-11 | 1 | -4/+8 |
| | | | | | | | | | | | popen2.popen2/3/4 functions can be a sequence. All texts are a variation on the following: On \UNIX, \var{cmd} may be a sequence, in which case arguments will be passed directly to the program without shell intervention (as with \function{os.spawnv()}). If \var{cmd} is a string it will be passed to the shell (as with \function{os.system()}). | ||||
| * | Patch #1009075, bug #952953: allow execve with empty 2nd argument | Armin Rigo | 2004-09-27 | 1 | -2/+2 |
| | | |||||
| * | Patch #934711: Expose platform-specific entropy. | Martin v. Löwis | 2004-08-29 | 1 | -0/+19 |
| | | |||||
| * | SF bugs 996748: os.environ documentation should indicate unreliability | Tim Peters | 2004-07-26 | 1 | -3/+12 |
| | | | | | | | Clarifed that os.environ is captured once; emphasized that it's better to assign to os.environ than to call putenv() directly (the putenv() docs said so, but the environ docs didn't). | ||||
| * | Get doc to build (add missing backslash) | Neal Norwitz | 2004-07-19 | 1 | -1/+1 |
| | | |||||
| * | SF bug 990749: os constants missing | Tim Peters | 2004-07-15 | 1 | -7/+10 |
| | | | | | | | | A LaTeX comment identified the 6 os.O_XXX constants the docs claimed are available on Windows but aren't. The bug report listed the same 6. Split these non-Windows constants into a different table with a possibly correct "Availability:" claim. | ||||
| * | Feature request #935915: Add os.path.devnull. | Martin v. Löwis | 2004-06-08 | 1 | -0/+8 |
| | | |||||
| * | [Bug #918710] Add paragraph to clarify docs | Andrew M. Kuchling | 2004-06-05 | 1 | -0/+5 |
| | | |||||
| * | fix various descriptions of "ctime" | Fred Drake | 2004-05-12 | 1 | -1/+2 |
| | | | | | (closes SF patch #870287) | ||||
| * | really scream out that people should use the file objects instead of | Fred Drake | 2004-04-16 | 1 | -7/+19 |
| | | | | | file descriptor operations for normal applications | ||||
| * | SF patch #859286: documentation bool change fix | Raymond Hettinger | 2003-12-31 | 1 | -2/+3 |
| | | | | | (Contributed by George Yoshida.) | ||||
| * | Mention that getsid is new in 2.4. | Martin v. Löwis | 2003-11-10 | 1 | -1/+1 |
| | | |||||
| * | Patch #839038: Add getsid(2). | Martin v. Löwis | 2003-11-10 | 1 | -0/+6 |
| | | |||||
| * | Fix typo. | Raymond Hettinger | 2003-09-10 | 1 | -1/+1 |
| | | |||||
| * | Fix spacing markup and other sundries. | Raymond Hettinger | 2003-09-08 | 1 | -4/+4 |
| | | |||||
| * | SF patch #797157: Bug 794658: os.chmod docs, stat constants | Raymond Hettinger | 2003-08-31 | 1 | -1/+2 |
| | | | | | | | (Contributed by Christos Georgiou.) Reference the symbol definitions in the stat module. | ||||
| * | Fix markup nits. | Fred Drake | 2003-05-20 | 1 | -4/+4 |
| | | |||||
| * | Straighten out the docs for os.system(); the Unix and Windows behaviors | Tim Peters | 2003-05-20 | 1 | -5/+13 |
| | | | | | | | really can't be smushed together. Bugfix candidate. | ||||
| * | Add optional 'onerror' argument to os.walk(), to control error | Guido van Rossum | 2003-05-13 | 1 | -1/+9 |
| | | | | | handling. | ||||
| * | Fixed spacing and unbalanced brackets or parenthesis. | Raymond Hettinger | 2003-05-10 | 1 | -2/+2 |
| | | |||||
