diff options
author | Raymond Hettinger <python@rcn.com> | 2010-04-03 10:32:58 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-04-03 10:32:58 (GMT) |
commit | 9c01e441bb2589853446787d4150fe623050a1e1 (patch) | |
tree | fe8479098709faeb7bfd9c7e4b47091c6e0e0212 /Misc | |
parent | 03d788dc4d6d399ba1092da5895edd7e6900345a (diff) | |
download | cpython-9c01e441bb2589853446787d4150fe623050a1e1.zip cpython-9c01e441bb2589853446787d4150fe623050a1e1.tar.gz cpython-9c01e441bb2589853446787d4150fe623050a1e1.tar.bz2 |
Add a subtract() method to collections.Counter()
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -301,6 +301,8 @@ C-API 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 |