commit | 9c01e441bb2589853446787d4150fe623050a1e1 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sat Apr 03 10:32:58 2010 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sat Apr 03 10:32:58 2010 +0000 |
tree | fe8479098709faeb7bfd9c7e4b47091c6e0e0212 | |
parent | 03d788dc4d6d399ba1092da5895edd7e6900345a [diff] [blame] |
Add a subtract() method to collections.Counter()
diff --git a/Misc/NEWS b/Misc/NEWS index 164655a..561f492 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -301,6 +301,8 @@ Library ------- +- Added a subtract() method to collections.Counter(). + - Issue #8233: When run as a script, py_compile.py optionally takes a single argument `-` which tells it to read files to compile from stdin. Each line is read on demand and the named file is compiled immediately. (Original