jjlee / mechanize

Stateful programmatic web browsing in Python, after Andy Lester's Perl module WWW::Mechanize .
http://wwwsearch.sourceforge.net/mechanize/
618 stars 123 forks source link

the cookies test should be using tempfile.mkstemp instead of tempfile.mktemp #40

Open d1b opened 13 years ago

d1b commented 13 years ago

The cookies test should be using tempfile.mkstemp instead of tempfile.mktemp. One example of using the tempfile.mktemp method is TempfileTestMixin in test/test_cookies.py. tempfile.mktemp - as per [0] , it is Deprecated since version 2.3: Use mkstemp() instead.

[0] - http://docs.python.org/library/tempfile.html#tempfile.mktemp