History log of /external/python/cpython2/Lib/posixfile.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
ea684743daa0c198ab327d07832eca48a9578c68 28-Oct-2007 Hye-Shik Chang <hyeshik@gmail.com> Enable platform-specific tweaks for FreeBSD 8 (exactly same to FreeBSD 7's yet)
/external/python/cpython2/Lib/posixfile.py
41bf2fad62e4c9d0c6310e4aec30bc41cabf4871 21-May-2007 Brett Cannon <bcannon@gmail.com> Cause posixfile to raise a DeprecationWarning. Documented as deprecated since
Ptyhon 1.5.
/external/python/cpython2/Lib/posixfile.py
4e422817eb1bc5a6a42365001ad45683ae07e559 17-Jul-2005 Hye-Shik Chang <hyeshik@gmail.com> Add support for FreeBSD 7.
/external/python/cpython2/Lib/posixfile.py
dbecd93b7203cd187c1978de1207c29d3a9a686c 06-Feb-2005 Raymond Hettinger <python@rcn.com> Replace list of constants with tuples of constants.
/external/python/cpython2/Lib/posixfile.py
4ebe364277b62785821003a8161a2081618b23a5 05-Dec-2004 Raymond Hettinger <python@rcn.com> Remove the deprecated statcache module.
/external/python/cpython2/Lib/posixfile.py
f64700a512e89c322f46f3cabda3bf58573eda54 18-Aug-2004 Hye-Shik Chang <hyeshik@gmail.com> Add support for FreeBSD 6.
/external/python/cpython2/Lib/posixfile.py
70a6b49821a3226f55e9716f32d802d06640cb89 12-Feb-2004 Walter Dörwald <walter@livinglogic.de> Replace backticks with repr() or "%r"

From SF patch #852334.
/external/python/cpython2/Lib/posixfile.py
9242a4af177c4c62dfacdf633eb1bbdeba273b3c 25-Oct-2001 Fred Drake <fdrake@acm.org> Add a warning to the posixfile module stating that it will go away.
/external/python/cpython2/Lib/posixfile.py
22cd7681777139a6c2409ea73cbcaf27fc2e5950 18-Sep-2001 Tim Peters <tim.peters@gmail.com> This module didn't work at all anymore -- blew up with AttributeError
on file.__methods__. Since the docs say "This module will become obsolete
in a future release", this is just a quick hack to stop it from blowing
up. If you care about this module, test it! It doesn't make much sense
on Windows.
/external/python/cpython2/Lib/posixfile.py
86c7e22036c935b3a3da98653db2ee313e46206a 13-Aug-2001 Andrew M. Kuchling <amk@amk.ca> Add forgotten import (PyChecker)
/external/python/cpython2/Lib/posixfile.py
a94414a2875e8e5c17af3a1567fdb78432394748 10-May-2001 Fred Drake <fdrake@acm.org> Remove all remaining uses of the FCNTL module from the standard library.
/external/python/cpython2/Lib/posixfile.py
e9901f325e4bfb123479c706288d5c6a09bad406 10-Apr-2001 Guido van Rossum <guido@python.org> Fix two unqualified except: clauses.

This came out of SF bug #411881.
/external/python/cpython2/Lib/posixfile.py
78349072f7c8f2d3da6f552665f9f381930c3c42 18-Feb-2001 Skip Montanaro <skip@pobox.com> removed __all__ from several modules
/external/python/cpython2/Lib/posixfile.py
c62c81e013fbc9a726493870c3624b60ae63a757 12-Feb-2001 Skip Montanaro <skip@pobox.com> __all__ for several more modules
/external/python/cpython2/Lib/posixfile.py
2344fae6d003f5a5dde8016e1d2310e161288708 15-Jan-2001 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/posixfile.py
b37bdc2c7c35f1aa75535f273c1c67dad32873a0 09-Sep-2000 Fred Drake <fdrake@acm.org> Do not try to fix bugs while sleeping.

Paid more attention to the comments on the report; Martin suggested just
not having a __del__() method, which makes more sense in this case. So
I have removed it.

This closes SourceForge bug #113850. Again.
/external/python/cpython2/Lib/posixfile.py
16c4aa441bba65ac0e4386e4b04d25119e8fc609 09-Sep-2000 Fred Drake <fdrake@acm.org> Kevin Jacobs <jacobs@darwin.cwru.edu>:
The posixfile __del__ method attempts to close the file (_file_) it
contains. However, if the open() method fails, then _file_ is never
assigned.

This closes SourceForge bug #113850.
/external/python/cpython2/Lib/posixfile.py
2d21863266ad3b7551e03933abbfadaa86b95fb2 29-Aug-2000 Guido van Rossum <guido@python.org> Add support for FreeBSD-[45].

-- tg@FreeBSD.org
/external/python/cpython2/Lib/posixfile.py
54f22ed30bab2e64909ba2d79205cb4b87c69db2 04-Feb-2000 Guido van Rossum <guido@python.org> More trivial comment -> docstring transformations by Ka-Ping Yee,
who writes:

Here is batch 2, as a big collection of CVS context diffs.
Along with moving comments into docstrings, i've added a
couple of missing docstrings and attempted to make sure more
module docstrings begin with a one-line summary.

I did not add docstrings to the methods in profile.py for
fear of upsetting any careful optimizations there, though
i did move class documentation into class docstrings.

The convention i'm using is to leave credits/version/copyright
type of stuff in # comments, and move the rest of the descriptive
stuff about module usage into module docstrings. Hope this is
okay.
/external/python/cpython2/Lib/posixfile.py
5274c336f5c33838259ab29e43ac88158953f474 06-Dec-1999 Guido van Rossum <guido@python.org> According to Craig H Rowland, openbsd2 is yet another BSD variant that
uses the BSD version of the lock structure. Sigh, @!%$.
/external/python/cpython2/Lib/posixfile.py
027188a3827eeaa7df83740ab3731767b4a2995a 23-Feb-1999 Guido van Rossum <guido@python.org> According to Jeffrey Honig, bsd/os 2.0 - 4.0 should be added to the
list (of bsd variants that have a different lock structure).
/external/python/cpython2/Lib/posixfile.py
45e2fbc2e70ef28b1f0327207f33dab3a4e825c5 26-Mar-1998 Guido van Rossum <guido@python.org> Mass check-in after untabifying all files that need it.
/external/python/cpython2/Lib/posixfile.py
91221c29f285bfd1a0595ee7a5335f6e23e49579 02-Dec-1997 Guido van Rossum <guido@python.org> Support for netbsd1 and freebsd3, after suggestions by Anders Andersen
and Jacques Vidrine.
/external/python/cpython2/Lib/posixfile.py
ba885ffaa05f8b80041e0b83f15bf8fa71463447 10-Sep-1996 Guido van Rossum <guido@python.org> Added linux2 specific code :-(
/external/python/cpython2/Lib/posixfile.py
0f6a3bf4900d8a7dfff44713fa9719bbd3041321 20-Aug-1996 Guido van Rossum <guido@python.org> Added locking hacks for AIX
/external/python/cpython2/Lib/posixfile.py
7698d12a8bb3a5b42d89843fd17a8caa8d4153cc 30-Jul-1996 Guido van Rossum <guido@python.org> Changes to make it work on FreeBSD 2.x.
/external/python/cpython2/Lib/posixfile.py
ba3e46b9ce8c02c0215cc45bffa36b8500351f5b 10-Aug-1995 Guido van Rossum <guido@python.org> fix stupid typo: r->RDLK
/external/python/cpython2/Lib/posixfile.py
28aa229fa314b3257d5a846aa2c0f1f6f56261c6 23-Mar-1995 Guido van Rossum <guido@python.org> optional mode, bufsize for global function open()
/external/python/cpython2/Lib/posixfile.py
13c503e93b0ece98a6b1e100e743cc35b5890cf8 16-Mar-1995 Guido van Rossum <guido@python.org> default mode="r" and add optional bufsize
/external/python/cpython2/Lib/posixfile.py
c762becaf5fff6f7f10ba4d1c6f4708a99f8fb74 18-May-1994 Guido van Rossum <guido@python.org> Changes by Jaap -- added 'fileopen' method
/external/python/cpython2/Lib/posixfile.py
78f8dea44aa10f947d43d6f4873ec8eb7866ea0a 18-May-1994 Guido van Rossum <guido@python.org> New module by Jaap V
/external/python/cpython2/Lib/posixfile.py