diff options
Diffstat (limited to 'libmproxy/flow.py')
-rw-r--r-- | libmproxy/flow.py | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/libmproxy/flow.py b/libmproxy/flow.py index 4cde7bc9..b40daefd 100644 --- a/libmproxy/flow.py +++ b/libmproxy/flow.py @@ -1,3 +1,18 @@ +# Copyright (C) 2012 Aldo Cortesi +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + """ This module provides more sophisticated flow tracking. These match requests with their responses, and provide filtering and interception facilities. @@ -97,7 +112,7 @@ class ODict: def __delitem__(self, k): """ - Delete all items matching k. + Delete all items matching k. """ self.lst = self._filter_lst(k, self.lst) |