This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Add methods to `pathlib.Path`: `write_text`, `read_text`, `write_bytes`, `read_bytes`
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: cjwelborn, cool-RR, georg.brandl, matthiastroffaes, pitrou, python-dev
Priority: normal Keywords: patch

Created on 2014-01-10 19:04 by cool-RR, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
pathlib.readwrite3.patch cjwelborn, 2014-01-24 01:15 minimal pathlib read/write functions with tests review
pathlib.readwrite4.patch cool-RR, 2014-01-26 15:03 review
pathlib.readwrite3_with_exclusive2.patch cjwelborn, 2014-01-29 00:27 minimal pathlib read/write functions with tests (exclusive option added, typo fixed) review
patch.patch cool-RR, 2014-01-31 21:45 review
pathlib_readwrite_v5.patch georg.brandl, 2014-09-30 14:09 review
pathlib_readwrite_v6.patch georg.brandl, 2014-09-30 15:56 review
Messages (50)
msg207874 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-01-10 19:04
I'd really like to have methods `pathlib.Path.write` and `pathlib.Path.read`. Untested implementation:

def read(self, binary=False):
    with self.open('br' is binary else 'r') as file:
        return file.read()

def write(self, data. binary=False):
    with self.open('bw' is binary else 'w') as file:
        file.write(data)

This will be super useful to me. Many files actions are one liners like that, and avoiding putting the `with` clause in user code would be wonderful.

Antoine suggests that `binary` shouldn't be an argument, that there should be separate methods for reading/writing text and binary contents, and that the text one would require passing in encoding and other parameters. I'll be happy to add these to the implementation and create a patch, once people can define which parameters should be used.
msg207952 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-01-12 12:59
(Replace `is` with `if` in my code sample, typo.)
msg208604 - (view) Author: Christopher Welborn (cjwelborn) * Date: 2014-01-21 02:16
Isn't this something you could do yourself?

import pathlib
def pathread(self, binary=False):
    with self.open('br'if binary else 'r') as fread:
        return fread.read()

def pathwrite(self, data, mode='w'):
    with self.open(mode) as fwrite:
        fwrite.write(data)

		
pathlib.Path.read = pathread
pathlib.Path.write = pathwrite
p = pathlib.Path('/mydir/example.txt')
p.read()
# 'Content from path.\n'

p.write('I am appending.\n', mode='a')
p.read()
# 'Content from path.\nI am appending.\n'


...and what about:
"There should be one-- and preferably only one --obvious way to do it."
msg208605 - (view) Author: Christopher Welborn (cjwelborn) * Date: 2014-01-21 02:39
I was referring to writing helper functions like pathread(mypath),
though the monkeypatch version (p.read()) does work (it did when I tested it).
msg208625 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-01-21 07:58
Not every two line function are worth to be added to the stdlib.
msg208635 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-01-21 10:23
Christopher and Serhiy, I would appreciate if you could kindly explain why your arguments, while applying to my suggestions, do not apply to the following functions:

 - `Path.stat`
 - `Path.owner`
 - `Path.group`
 - `Path.open`
 - `Path.chmod`
 - `Path.lchmod`
 - `Path.unlink`
 - `Path.rmdir`
 - `Path.lstat`
 - `Path.rename`
 - `Path.replace`
 - `Path.symlink_to`

I am quite sick of all those lofty principles being quoted when I want to add something to Python, yet I see Python features that break them all the time.
msg208636 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-01-21 10:27
FWIW, I agree that shortcuts to easily create or read entire files are useful. Other path classes (such as Twisted's) often have them.
msg208639 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-01-21 11:06
> Christopher and Serhiy, I would appreciate if you could kindly explain why your arguments, while applying to my suggestions, do not apply to the following functions:

1. Path.stat() wraps only one function, while Path.read() wraps two functions. It's signature should be a sum of open() and read() signatures: Path.read(encoding, errors, newline, size) (I have omitted some open's parameters). This is a little cumbersome.

2. os.stat() requires `import os`, while open() is builtin.

3. If add Path.read(), what about Path.readlines() and Path.readline()?

4. I believe Path.stat() will be used much more often than Path.read().

5. Path.stat() corresponds to low-level os.stat(), but for low-level os.read() the high-level corresponding is FileIO.read(). And this corresponding is much more universal and useful.
msg208640 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-01-21 11:21
Serhiy:

Your arguments 1 and 2 are pretty weak. (So what if an import is required? It's still 2 lines. I thought that "Not every two line function are worth to be added to the stdlib.")

Regarding stat being used much more often than read: I disagree. I've done whole-file reads much more often than I've done stat. Different people might have different habits, but I definitely think that reading an entire file is a common operation with files. And we can all agree that other trivial Path method like `lstat` are much less common than both stat and whole-file read, yet they've earned their place in the stdlib, while we are still arguing whether `Path.read` and `path.write` should have a place too.

Regarding `Path.readline` and `Path.readlines`: I don't have an opinion on whether they should be implemented or not, since I rarely use them. But I definitely think that they have no bearing on the decision of whether to include `Path.read` and `Path.write` or not.

Your argument 5 also looks weak to me. It looks to me like you're looking for arguments.
msg208744 - (view) Author: Christopher Welborn (cjwelborn) * Date: 2014-01-22 04:17
Ram Rachum: If I actually had a say in the matter, I wouldn't be totally against it. (so far I only lurk the lists/tracker looking for things to work on.) I was just offering you a solution that you can use _today_. 

I do think that if something like this was added, then you would have to go ahead and add the other read/write functions because the next question would be 'how come pathlib has no readlines()?'. 

Also, it would definitely need more than 'mode' or 'binary' for args. The encoding option needs to be taken into account. People need to have a choice in what encoding to use even with a little read()/write().
msg208785 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-01-22 11:49
Patch attached. Is this good?
msg208878 - (view) Author: Christopher Welborn (cjwelborn) * Date: 2014-01-23 04:29
Ram Rachum (and to whom it may concern):

This patch was missing the size argument for readlines(), and it did not match the overall style of pathlib.py. (using ''' instead of """, and other docstring style). It also clobbered the builtin 'file'.

I've attached another patch that tries very hard to match that 'style', and wrote tests that try to match what the original 'io' functions test for.

This is my first patch for python-dev, I am attaching it in the hope it will help resolve the issue, or generate more discussion about it.

I ran both the individual test_pathlib tests, and the entire test suite. Also, the patchcheck sanity test.
msg208879 - (view) Author: Christopher Welborn (cjwelborn) * Date: 2014-01-23 04:42
Sorry Antoine, I should've done my homework. I didn't realize 'to whom it may concern' is actually you. :)
msg208889 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-01-23 09:06
Hi Christopher,

I like your patch. One thing I modified is returning to use `file` as the variable instead of `f`, since `file` is no longer a builtin in Python 3, and descriptive variable names are important. Attached as `pathlib.readwrite2.patch`.
msg208924 - (view) Author: Christopher Welborn (cjwelborn) * Date: 2014-01-23 14:00
Ram Rachum:
Have you look at the source for pathlib? f and fd are common names for file descriptors, especially when using the open() function.
msg208930 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-01-23 14:13
You're right. I deleted my 2 patches, so `pathlib.readwrite.patch` is now the best patch for this.
msg208931 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-01-23 14:18
Thanks for the patches, but please let's not hurry this up. We first need to decide on an API (which should be minimal).
msg208940 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-01-23 14:33
Antoine:

Which parts of the API merit discussion? The method names? Whether to include readlines/writelines? The arguments?
msg208947 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-01-23 14:43
> Which parts of the API merit discussion? The method names? Whether to
> include readlines/writelines? The arguments?

I think the readlines/writelines methods, as well as the size argument,
should be dropped.
Furthermore, there also should be distinct text/binary variants.
msg208949 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-01-23 14:46
I see. I don't have an opinion about these 3 issues (readlines/writelines, size and binary separation.) So I'm cool with making these changes.

If we do separate out the binary versions, what do you have in mind for the method names and signatures?
msg208951 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-01-23 14:55
> If we do separate out the binary versions, what do you have in mind
> for the method names and signatures?

Perhaps we should look at what other Path APIs do here, and how they
name it.

Realistically, we need at least read_bytes() and read_text() methods.
The write() method may stay unique if it's polymorphic.
msg208991 - (view) Author: Christopher Welborn (cjwelborn) * Date: 2014-01-23 20:37
Django: https://docs.djangoproject.com/en/dev/ref/files/file/#django.core.files.File

It looks like Django has a File object that wraps around Python's built-in file object. It offers a 'mode' attribute, and a read(num_bytes=None) / write([content]) function. It also offers __iter__ functionality. You must open the file, and then wrap it with File() like:

myfile = File(open('myfile.txt', 'r'))


Twisted: http://twistedmatrix.com/documents/current/api/twisted.python.filepath.FilePath.html

Looking at twisted.python.filepath.FilePath, it looks like there is no read/write.


These are two very popular frameworks/libraries, but I'll see if I can't find other sources for inspiration.

I think read_bytes/read_text would offer a good alternative method for reading files, instead of trying to create a full-on replacement like the previous patches attempt to do.
msg208992 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-01-23 20:42
> Twisted:
> http://twistedmatrix.com/documents/current/api/twisted.python.filepath.FilePath.html
> 
> Looking at twisted.python.filepath.FilePath, it looks like there is no
> read/write.

You overlooked the getContent and setContent methods.
msg208999 - (view) Author: Christopher Welborn (cjwelborn) * Date: 2014-01-23 21:33
Oops, I did. Thanks for that.

So setContent overwrites the file like open('myfile', 'w').write() would, except it has an option to give the temporary file a different extension (in case of a crash while writing). That's understandable for Twisted.
getContent returns a file-like object, which is more like Path's open().

One thing I am not seeing is a readlines/writelines in these two libaries. I still think they would be useful, even without the size argument for readlines.

So this is what I am seeing now:
  read_text(encoding=None)
  readlines_text(encoding=None)  ..(or read_textlines?)
  read_bytes()
  readlines_bytes()
  write(data, append=False)  ..(mode is decided based on data type)
  writelines(lines, append=False)

..determining the mode for writelines looks at the first item's type?

The regular writelines fails with 'must be str, not [insert wrong type]' when opened with 'w', and '[insert wrong type] does not support the buffer interface' when opened with 'wb'.
msg209002 - (view) Author: Christopher Welborn (cjwelborn) * Date: 2014-01-23 21:43
I should clarify that last sentence, I was trying to say that the type is determined by the first item. If the user tries to mix bytes/text they will receive the proper error from io's writelines when the mismatched type is written. If the first item is neither str nor bytes, then raise a ValueError.
msg209017 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-01-23 23:16
> One thing I am not seeing is a readlines/writelines in these two
> libaries. I still think they would be useful, even without the size
> argument for readlines.

readlines() and writelines() aren't used a lot in my experience.

> So this is what I am seeing now:
>   read_text(encoding=None)
>   readlines_text(encoding=None)  ..(or read_textlines?)
>   read_bytes()
>   readlines_bytes()
>   write(data, append=False)  ..(mode is decided based on data type)
>   writelines(lines, append=False)
> 
> ..determining the mode for writelines looks at the first item's type?

I would suggest differently:
- read_text(encoding, errors, newline)
- read_bytes()
- write_text(data, encoding, errors, newline)
- write_bytes(data)

Strictly speaking, write() could be polymorphic, but I think it's nice
to have distinct methods 1) out of symmetry with read*() 2) to avoid
silently accepting the wrong type.

As a reference, https://github.com/mikeorr/Unipath (which is quite
popular) has read_file() and write_file() methods.
https://github.com/jaraco/path.py has bytes(), text(), write_bytes() and
write_text().
msg209029 - (view) Author: Christopher Welborn (cjwelborn) * Date: 2014-01-24 01:15
Antoine said:
> I would suggest differently:
> - read_text(encoding, errors, newline)
> - read_bytes()
> - write_text(data, encoding, errors, newline)
> - write_bytes(data)
>
> Strictly speaking, write() could be polymorphic, but I think it's nice
> to have distinct methods 1) out of symmetry with read*() 2) to avoid
> silently accepting the wrong type.

I am starting to see where you are going with this, and I agree with your latest points.

I dropped readlines/writelines. I guess pathlib doesn't have to do *exactly* everything you can do through normal io. They are easy to implement anyway with .split() and .join().

I realize this would not make it into Python for a while (3.5 possibly, if at all), but I went ahead and made a patch anyway because I have time to do so at the moment.

I updated the tests to reflect the latest changes, and made sure all of them still pass. Any criticism/wisdom would be appreciated, as this is my first time dealing with the Python patch process.

The api is what you have, except I put an 'append' option:
    read_bytes()
    read_text(encoding=None, errors=None, newline=None)
    write_bytes(data, append=False)
    write_text(data, encoding=None, errors=None, newline=None, append=False)
msg209053 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-01-24 09:19
I like the patch. Except I'd like to have support for the 'x' flag in the `write_text` and `write_bytes` methods. I suggest an argument `exclusive`, which defaults to `False`. When `exclusive=True`, the mode will be 'x' or 'xb'.

The first lines after each method definition should be:

    if append and exclusive:
        raise Exception("Can't use both `append` and `exclusive` modes together; `append` implies that the file exists, while `exclusive` implies it does not.")

If you don't like long exception texts, you can shorten it to just the first sentence. Also, you may want to choose a different exception class than `Exception`.
msg209326 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-01-26 15:03
New patch attached. Not tested.
msg209584 - (view) Author: Christopher Welborn (cjwelborn) * Date: 2014-01-28 21:03
Using 'review' with pathlib.readwrite4.patch, it looks like it only modifies one file (test_pathlib.py), which can't be right. Maybe you edited the patch directly instead of generating a new one? (also, the line-counts haven't changed and I think they were suppose to.)

The python-dev guide may help you to move forward with this, and any future ideas. I definitely have a lot to learn myself, but I do know that the less leg-work core-devs have to do, the easier it is to make a contribution. 

Python dev-guide: http://docs.python.org/devguide/

Here is the 'exclusive' feature with some tests, it raises TypeError when 'append' and 'exclusive' are used at the same time (mismatched args/kwargs usually raise TypeError in python from what I can tell).

It's still missing the Doc changes, and probably more stuff that I don't know about yet. 

As usual, all tests pass including the python test-suite, and `make patchcheck` removed some whitespace for me.
Thanks,
-Chris (cjwelborn)
msg209594 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-01-28 21:57
You're right Chris, I edited the patch naively and didn't know it wouldn't work. Your patch looks great except you probably want to change "except" to "accept" :)

I hope I'll have time to work on the documentation addition soon. I'm assuming we want nothing more than method documentation on `Path`, right? I mean, just a short entry for each method, nothing more right?
msg209606 - (view) Author: Christopher Welborn (cjwelborn) * Date: 2014-01-29 00:27
hah, i did. I was working with 'except'ions and accidentally wrote 'except' instead of 'accept'. rookie mistake, its fixed now. As far as the docs I really can't say. Antoine would have the answers.
msg209832 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-01-31 21:45
Patch with documentation attached.
msg210194 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-02-04 10:22
Hi everyone,

I'm waiting for someone to review my patch. I believe it includes everything that's needed to merge.
msg210341 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-02-05 19:39
Hi Ram,
sorry, I'll take a look at your patch soon.
(as you know, we're in feature freeze right now so your patch must wait for 3.4 to be released, anyway)
msg211925 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-02-22 13:50
Any progress on this?
msg214141 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-03-19 21:37
Thanks for the code review Antoine.

It seems like the only non-trivial comment is regarding the `append` and `exclusive` arguments:

"I don't think "append" and "exclusive" deserve to be arguments here.
write_bytes()/write_text() is a convenience method for the common use case."

Are you suggesting that these features be removed? I think it'll be really sad. I don't think that just because someone wants to use modes 'a' or 'x' it means that they should now write a with clause instead of using our one-liner. Just because something is made for convenience, doesn't mean it should be crippled.
msg214142 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-03-19 22:00
> "I don't think "append" and "exclusive" deserve to be arguments here.
> write_bytes()/write_text() is a convenience method for the common use case."
> 
> Are you suggesting that these features be removed?

Yes.
For "append", the reason is simple. The use case for appending is really
repeated appending (e.g. writing to a log file), so providing a
convenience for one-shot appending doesn't make sense.
For "exclusive", it's not used often enough to warrant such a shortcut.

I don't want these APIs to become kitchen sink APIs.
msg214144 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-03-19 23:18
Okay, different approach: How about having a mode argument with a default? (Defaults of 'rb', 'r', 'wb', 'w' respectively.)

This way users who wish to use append, exclusive, or any other future mode will be able to do that, but we won't be adding too many keywords to the API. We could add sanity checks to the `mode` if you wish.
msg214151 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-03-19 23:45
> Okay, different approach: How about having a mode argument with a
> default? (Defaults of 'rb', 'r', 'wb', 'w' respectively.)

This is redundant with the fact that there are several distinct methods:
{read,write}_{bytes,text}.

Really, the aim is to ease common operations, not to replace open()
entirely.
msg214228 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-03-20 13:26
I understand Antoine. 

At this point, while I could easily implement the changes you ask for in your review, I'm concerned that we are spending our time adding a feature to Python that nobody really loves.

What I'd really love is a pair of methods `read` and `write`. (Less typing than the method names you asked for, and less methods added to the API.) And I'd love for these methods to be able to use append and exclusive. I understand that a feature like that is not acceptable to you, which I accept, since this is an open-source projects that needs to satisfy many people and not just myself.

So the current way you want to implement this is not something I'm excited about and not something I'll be happy to use. The question is, are *you* excited about this feature the way you want to implement it? (With four methods and no append or exclusive.) Is this something you'd love to use? Do you think other people feel the same?

If so, I'll be happy to finish editing this patch so this feature could go into Python. Otherwise, if we find no one who actually loves this feature, I think that the most beneficial action we could do for the Python community is to drop this issue right here, rather than add a command to the API that we'll have to support for decades despite the fact nobody really likes it.
msg214289 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-03-20 22:02
Then I'd rather wait for other people to chime in and state whether they are interested in this feature.
msg227898 - (view) Author: Matthias Troffaes (matthiastroffaes) Date: 2014-09-30 12:53
Chiming in here: Sphinx's testing framework does include a feature that allows easily read/write files into/from text/bytes directly from path-like objects. There is thus a demand out there. If this feature were to make it into stdlib, it would be loved at least by Sphinx testers and sphinx extension module testers.

Current implementation in Sphinx:

https://bitbucket.org/birkenfeld/sphinx/src/f87ae5c0272e7384dc976414d091aa8b175827cd/tests/path.py?at=default#cl-129

Discussion to move to pathlib on Sphinx tracker:

https://bitbucket.org/birkenfeld/sphinx/issue/1241/move-test-utilities-into-a-sphinx#comment-12645576

Some code examples of how this is typically used in Sphinx:

https://bitbucket.org/tk0miya/sphinx-testing/src/ee89298fa8f848b7c3ca93656df5330db85b4291/README.rst?at=default

https://github.com/mcmtroffaes/sphinxcontrib-bibtex/commit/0a0bf07a34e6f7e3c66ddacc0da02b4a2caba794
msg227900 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-09-30 12:57
Matthias: Do you prefer having both `write_bytes` and `write_text` instead of just `write` with a `binary` option? Do you prefer `append` and `exclusive` modes to be allowed or not?
msg227913 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2014-09-30 13:20
Note that these methods were already part of Jason's path.py when I imported it for use by Sphinx.

I think these convenience methods are useful indeed, so if it is fine with your philosophy for pathlib, I'd be happy to see them there.  The write_text/write_bytes style would be preferred for me, and I agree that too many options, e.g. append and exclusive, are not as helpful.
msg227914 - (view) Author: Matthias Troffaes (matthiastroffaes) Date: 2014-09-30 13:27
Thanks for the quick response. I agree with Georg on all points, i.e. longer function names and no extra options.
msg227926 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2014-09-30 14:09
Next try.
msg227947 - (view) Author: Ram Rachum (cool-RR) * Date: 2014-09-30 15:48
What do you think about changing the signature to something like this: 

def read_text(self, *, encoding=None, errors=None):

This is to avoid these arguments being used positionally, which eases future backwards compatibility changes.
msg228091 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-10-01 17:14
New changeset a4da150fbfd4 by Georg Brandl in branch 'default':
Closes #20218: Added convenience methods read_text/write_text and read_bytes/
https://hg.python.org/cpython/rev/a4da150fbfd4
msg228092 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-10-01 17:14
Thanks, Georg!
History
Date User Action Args
2022-04-11 14:57:56adminsetgithub: 64417
2014-10-01 17:14:43pitrousetmessages: + msg228092
2014-10-01 17:14:27python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg228091

resolution: fixed
stage: resolved
2014-09-30 15:56:47georg.brandlsetfiles: + pathlib_readwrite_v6.patch
2014-09-30 15:48:04cool-RRsetmessages: + msg227947
2014-09-30 14:09:21georg.brandlsetfiles: + pathlib_readwrite_v5.patch

messages: + msg227926
2014-09-30 13:27:02matthiastroffaessetmessages: + msg227914
2014-09-30 13:20:17georg.brandlsetmessages: + msg227913
2014-09-30 13:05:55pitrousetstatus: closed -> open
nosy: + georg.brandl
resolution: rejected -> (no value)
2014-09-30 12:57:32cool-RRsetmessages: + msg227900
2014-09-30 12:53:52matthiastroffaessetnosy: + matthiastroffaes
messages: + msg227898
2014-07-03 12:36:52cool-RRsetstatus: open -> closed
resolution: rejected
2014-03-20 22:02:06pitrousetmessages: + msg214289
2014-03-20 13:26:17cool-RRsetmessages: + msg214228
2014-03-19 23:45:50pitrousetmessages: + msg214151
2014-03-19 23:18:49cool-RRsetmessages: + msg214144
2014-03-19 22:00:35pitrousetmessages: + msg214142
2014-03-19 21:37:27cool-RRsetmessages: + msg214141
2014-03-17 09:50:46cool-RRsettitle: Add `pathlib.Path.write` and `pathlib.Path.read` -> Add methods to `pathlib.Path`: `write_text`, `read_text`, `write_bytes`, `read_bytes`
2014-02-22 13:50:49cool-RRsetmessages: + msg211925
2014-02-05 19:39:25pitrousetmessages: + msg210341
2014-02-04 10:22:25cool-RRsetmessages: + msg210194
2014-01-31 21:45:09cool-RRsetfiles: + patch.patch

messages: + msg209832
2014-01-29 00:28:01cjwelbornsetfiles: - pathlib.readwrite3_with_exclusive.patch
2014-01-29 00:27:44cjwelbornsetfiles: + pathlib.readwrite3_with_exclusive2.patch

messages: + msg209606
2014-01-28 21:57:21cool-RRsetmessages: + msg209594
2014-01-28 21:03:46cjwelbornsetfiles: + pathlib.readwrite3_with_exclusive.patch

messages: + msg209584
2014-01-26 15:03:13cool-RRsetfiles: + pathlib.readwrite4.patch

messages: + msg209326
2014-01-24 11:13:13serhiy.storchakasetnosy: - serhiy.storchaka
2014-01-24 09:19:52cool-RRsetmessages: + msg209053
2014-01-24 02:50:54cjwelbornsetfiles: - pathlib.readwrite.patch
2014-01-24 01:15:33cjwelbornsetfiles: + pathlib.readwrite3.patch

messages: + msg209029
2014-01-23 23:16:41pitrousetmessages: + msg209017
2014-01-23 21:43:09cjwelbornsetmessages: + msg209002
2014-01-23 21:33:18cjwelbornsetmessages: + msg208999
2014-01-23 20:42:38pitrousetmessages: + msg208992
2014-01-23 20:37:24cjwelbornsetmessages: + msg208991
2014-01-23 14:55:51pitrousetmessages: + msg208951
2014-01-23 14:46:58cool-RRsetmessages: + msg208949
2014-01-23 14:43:39pitrousetmessages: + msg208947
2014-01-23 14:33:18cool-RRsetmessages: + msg208940
2014-01-23 14:18:19pitrousetmessages: + msg208931
2014-01-23 14:13:17cool-RRsetfiles: - patch.patch
2014-01-23 14:13:10cool-RRsetmessages: + msg208930
2014-01-23 14:12:37cool-RRsetfiles: - pathlib.readwrite2.patch
2014-01-23 14:00:43cjwelbornsetmessages: + msg208924
2014-01-23 09:06:38cool-RRsetfiles: + pathlib.readwrite2.patch

messages: + msg208889
2014-01-23 04:42:07cjwelbornsetmessages: + msg208879
2014-01-23 04:29:43cjwelbornsetfiles: + pathlib.readwrite.patch

messages: + msg208878
2014-01-22 11:49:42cool-RRsetfiles: + patch.patch
keywords: + patch
messages: + msg208785
2014-01-22 04:17:10cjwelbornsetmessages: + msg208744
2014-01-21 11:21:26cool-RRsetmessages: + msg208640
2014-01-21 11:06:32serhiy.storchakasetmessages: + msg208639
2014-01-21 10:27:25pitrousetmessages: + msg208636
versions: - Python 3.4
2014-01-21 10:23:27cool-RRsetmessages: + msg208635
2014-01-21 07:58:03serhiy.storchakasetnosy: + serhiy.storchaka, pitrou
messages: + msg208625
2014-01-21 02:39:30cjwelbornsetmessages: + msg208605
2014-01-21 02:16:46cjwelbornsetnosy: + cjwelborn
messages: + msg208604
2014-01-12 12:59:09cool-RRsetmessages: + msg207952
2014-01-10 19:04:53cool-RRcreate