commit | 4a807f59391b497730342cf4cd07207ef50cfb51 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon May 12 16:04:09 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon May 12 16:04:09 1997 +0000 |
tree | 6121c9eb4df08dd349baae1d9a6fc3f2accb1274 | |
parent | 1d63d8c8290e801f8a1d9041a8073e0ca79be56e [diff] |
Fix big ineficciency in regobj.search/match (introduced by Barry in an otherwise laudible attempt to rationalize the argument parsing): it would save a copy of the original string instead of a reference to it. Go back to saving a reference, but keep the "s#" format (using a hack that involves two argument parsing steps, first using "O", then using "s#").