log mercurial/pycompat.py @ 33251:a5cb2e4460de

age author description
Fri, 16 Jun 2017 03:01:22 +0530 Pulkit Goyal pycompat: move the queue related definitions below queue import
Fri, 16 Jun 2017 02:48:17 +0530 Pulkit Goyal pycompat: move multiline comments above a function to function doc
Fri, 16 Jun 2017 00:36:17 +0530 Pulkit Goyal py3: add a new bytesurl() to convert a str url into bytes
Fri, 16 Jun 2017 00:32:52 +0530 Pulkit Goyal py3: add a new strurl() which will convert a bytes url to str
Thu, 01 Jun 2017 22:24:15 +0900 Yuya Nishihara py3: convert __doc__ back to bytes in help.py
Thu, 04 May 2017 11:51:07 +0900 Yuya Nishihara pycompat: try __bytes__() to convert object to bytestr
Thu, 20 Apr 2017 22:16:12 +0900 Yuya Nishihara pycompat: extract helper to raise exception with traceback
Wed, 12 Apr 2017 18:42:20 -0700 Gregory Szorc pycompat: import correct cookie module on Python 3
Thu, 09 Mar 2017 21:35:21 -0800 Gregory Szorc util: make cookielib module available
Fri, 07 Apr 2017 23:35:51 +0530 Pulkit Goyal py3: add pycompat.unicode and add it to importer
Fri, 07 Apr 2017 16:00:44 +0530 Pulkit Goyal py3: add a bytes version of urllib.parse.urlencode() to pycompat.py
Wed, 05 Apr 2017 00:34:58 +0900 Yuya Nishihara py3: have registrar process docstrings in bytes
Wed, 29 Mar 2017 21:23:28 +0900 Yuya Nishihara pycompat: provide bytes os.linesep
Wed, 29 Mar 2017 21:13:55 +0900 Yuya Nishihara pycompat: introduce identity function as a compat stub
Tue, 21 Mar 2017 22:47:49 -0700 Gregory Szorc py3: stop exporting urlparse from pycompat and util (API)
Tue, 21 Mar 2017 22:34:17 -0700 Gregory Szorc pycompat: define urlreq.urlparse and urlreq.unparse aliases
Tue, 21 Mar 2017 22:28:16 -0700 Gregory Szorc pycompat: remove urlunquote alias
Tue, 21 Mar 2017 22:20:11 -0700 Gregory Szorc pycompat: alias urlreq.unquote to unquote_to_bytes
Sun, 19 Mar 2017 14:12:38 -0400 Augie Fackler pycompat: add maplist alias for old map behavior
Wed, 08 Mar 2017 22:48:26 +0900 Yuya Nishihara pycompat: add bytestr wrapper which mostly acts as a Python 2 str
Wed, 15 Mar 2017 09:32:18 -0700 Martin von Zweigbergk py3: make py3 compat.iterbytestr simpler and faster
Wed, 15 Mar 2017 09:30:50 -0700 Martin von Zweigbergk py3: optimize py3 compat.bytechr using Struct.pack
Mon, 13 Mar 2017 12:16:47 -0700 Gregory Szorc pycompat: custom implementation of urllib.parse.quote()
Mon, 13 Mar 2017 12:14:17 -0700 Gregory Szorc pycompat: alias urllib symbols directly
Sun, 12 Mar 2017 17:04:45 -0700 Yuya Nishihara pycompat: add helper to iterate each char in bytes
Sun, 12 Mar 2017 12:54:11 -0700 Yuya Nishihara pycompat: move imports of cStringIO/io to where they are used
Mon, 13 Mar 2017 00:55:14 +0530 Pulkit Goyal pycompat: default to BytesIO instead of StringIO
Sat, 11 Mar 2017 13:53:14 -0500 Augie Fackler merge with stable
Tue, 07 Mar 2017 13:24:24 -0500 Augie Fackler pycompat: verify sys.argv exists before forwarding it (issue5493) stable
Wed, 08 Mar 2017 22:30:12 +0900 Yuya Nishihara py3: factor out bytechr() function