mercurial/posix.py
Wed, 01 Jun 2022 00:47:25 +0200 Manuel Jacob py3: catch specific OSError subclasses instead of checking errno
Tue, 31 May 2022 23:38:51 +0200 Manuel Jacob py3: catch PermissionError instead of checking errno == EACCES
Tue, 31 May 2022 22:50:01 +0200 Manuel Jacob py3: catch FileNotFoundError instead of checking errno == ENOENT
Tue, 31 May 2022 21:16:17 +0200 Manuel Jacob py3: catch FileExistsError instead of checking errno == EEXIST
Tue, 31 May 2022 04:11:34 +0200 Manuel Jacob py3: remove retry on EINTR errno
Mon, 21 Feb 2022 13:08:28 -0700 Gregory Szorc py3: use class X: instead of class X(object):
Thu, 03 Mar 2022 08:04:33 -0800 Gregory Szorc posix: delete Python 2 posixfile()
Thu, 03 Mar 2022 17:34:00 +0100 Gregory Szorc py2: remove simple from __future__ statements
Sat, 10 Jul 2021 13:46:24 +0200 Pierre-Yves David windows: introduce a `util.abspath` to replace os.path.abspath
Wed, 12 May 2021 12:41:52 -0400 Matt Harbison util: avoid echoing the password to the console on Windows py3 (issue6446) stable
Thu, 25 Mar 2021 18:02:08 +0100 Raphaël Gomès contributor: change mentions of mpm to olivia
Thu, 11 Mar 2021 21:21:41 -0500 Matt Harbison typing: fix a suppression directive that was mangled by black formatting stable
Fri, 27 Nov 2020 17:03:29 -0500 Augie Fackler formating: upgrade to black 20.8b1
Tue, 13 Oct 2020 16:44:57 -0400 Matt Harbison posix: avoid a leaked file descriptor in a unix domain socket exception case
Tue, 13 Oct 2020 16:41:01 -0400 Matt Harbison posix: use context managers in a couple of places
Fri, 29 May 2020 03:56:07 +0200 Manuel Jacob cleanup: eliminate procutil.quotecommand()
Mon, 10 Feb 2020 17:31:05 -0500 Augie Fackler cleanup: re-run black on the codebase
Fri, 08 Nov 2019 11:19:20 -0800 Augie Fackler cleanup: remove pointless r-prefixes on single-quoted strings
Wed, 06 Nov 2019 15:03:02 -0500 Augie Fackler posix: add a pytype suppression
Sun, 06 Oct 2019 16:55:18 -0400 Gregory Szorc py3: manually import getattr where it is needed
Sun, 06 Oct 2019 13:28:56 -0400 Gregory Szorc py3: manually import pycompat.open into files that need it
Sun, 06 Oct 2019 09:48:39 -0400 Augie Fackler formatting: byteify all mercurial/ and hgext/ string literals
Sun, 06 Oct 2019 09:45:02 -0400 Augie Fackler formatting: blacken the codebase
Mon, 08 Jul 2019 13:12:20 -0400 Augie Fackler posix: always seek to EOF when opening a file in append mode stable 5.0.2
Sat, 02 Mar 2019 05:01:00 +0530 Pulkit Goyal py3: make sure return value of posix.groupname() is bytes
Sun, 03 Feb 2019 16:38:47 +0530 Pulkit Goyal py3: do a fsdecode(), fsencode() dance in posix.py
Sat, 02 Feb 2019 04:49:42 +0530 Pulkit Goyal py3: pass str into grp.getgrnam
Thu, 10 Jan 2019 14:57:01 +0100 Boris Feld update: fix edge-case with update.atomic-file and read-only files
Thu, 15 Nov 2018 17:08:23 +0100 Boris Feld check-exec: write file in 'wcache' instead of 'cache'
Thu, 15 Nov 2018 03:09:23 +0100 Boris Feld checkexec: create destination directory if necessary stable
Tue, 25 Sep 2018 21:16:12 -0400 Matt Harbison py3: convert os.readlink() path to native strings on Windows
Sat, 09 Jun 2018 15:14:31 +0530 Pulkit Goyal py3: make sure util.username() always returns bytes
Sat, 26 May 2018 12:38:07 +0900 Yuya Nishihara py3: wrap tempfile.NamedTemporaryFile() to return bytes fp.name
Sat, 26 May 2018 12:14:04 +0900 Yuya Nishihara py3: wrap tempfile.mkstemp() to use bytes path
Fri, 27 Apr 2018 13:26:43 -0400 Augie Fackler posix: use inst.errno instead of inst[0] on OSError instances
Sat, 07 Apr 2018 21:14:16 +0900 Yuya Nishihara procutil: unify platform.explainexit()
Sat, 07 Apr 2018 21:09:21 +0900 Yuya Nishihara procutil: rewrite popen() as a subprocess.Popen wrapper (issue4746) (API)
Sat, 24 Mar 2018 13:30:50 +0900 Yuya Nishihara rcutil: directly call win32.executablepath()
Wed, 14 Mar 2018 15:39:28 -0400 Augie Fackler cleanup: fix some latent open(path).read() et al calls we previously missed
Mon, 05 Mar 2018 12:30:20 -0500 Augie Fackler cleanup: use stat_result[stat.ST_MTIME] instead of stat_result.st_mtime
Wed, 21 Feb 2018 22:20:27 +0900 Yuya Nishihara util: factor out shellsplit() function
Sun, 18 Feb 2018 18:22:40 +0530 Pulkit Goyal py3: make sure we open the files in bytes mode
Fri, 29 Dec 2017 22:54:14 -0500 Matt Harbison util: add a function to show the mount point of the filesystem
Sat, 30 Dec 2017 21:07:03 -0500 Matt Harbison util: move getfstype() to the platform modules
Thu, 12 Oct 2017 23:34:34 -0700 Jun Wu codemod: use pycompat.isdarwin
Sat, 30 Sep 2017 07:45:18 -0400 Augie Fackler posix: replace superfluous pass statement with explicit return
Fri, 15 Sep 2017 19:44:32 -0400 Augie Fackler posix: always pass a native str to unicodedata.normalize's first arg
Fri, 15 Sep 2017 19:44:05 -0400 Augie Fackler posix: use slicing to grab a single byte out of a bytes in HFS+ normcase code
Fri, 15 Sep 2017 19:43:02 -0400 Augie Fackler posix: fix HFS+ normcase doctest to produce valid bytes literals in Python 3
Sun, 03 Sep 2017 14:32:11 +0900 Yuya Nishihara doctest: bulk-replace string literals with b'' for Python 3
Fri, 04 Aug 2017 23:54:12 -0700 Jun Wu ssh: quote parameters using shellquote (SEC) stable
Fri, 04 Aug 2017 14:00:03 -0400 Augie Fackler ssh: ban any username@host or host that starts with - (SEC) stable
Fri, 04 Aug 2017 23:54:12 -0700 Jun Wu ssh: quote parameters using shellquote (SEC) stable
Fri, 04 Aug 2017 14:00:03 -0400 Augie Fackler ssh: ban any username@host or host that starts with - (SEC) stable
Wed, 26 Apr 2017 16:05:22 +0200 Koen Van Hoof chmod: create a new file when flags are set on a hardlinked file
Sun, 21 May 2017 18:36:28 -0400 Augie Fackler checklink: degrade gracefully on posix when fs is readonly (issue5511)
Fri, 10 Feb 2017 16:56:29 -0800 Martin von Zweigbergk cleanup: use set literals
Fri, 21 Apr 2017 00:53:38 +0530 Pulkit Goyal py3: make posix.getuser return a bytes
Tue, 21 Mar 2017 06:50:28 -0700 Ryan McElroy util: unify unlinkpath
Tue, 21 Mar 2017 06:50:28 -0700 Ryan McElroy posix: use local reference to removedirs
less more (0) -100 -60 tip