- 25 May, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
change imports and other references. Closes #2925.
-
- 11 May, 2008 1 kayıt (commit)
-
-
Alexandre Vassalotti yazdı
Use the 3.0 module name to avoid spurious warnings.
-
- 23 Şub, 2008 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 26 Tem, 2006 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 06 Haz, 2006 1 kayıt (commit)
-
-
Martin Blais yazdı
Found them using:: find . -name '*.py' | while read i ; do grep 'def[^(]*( ' $i /dev/null ; done find . -name '*.py' | while read i ; do grep ' ):' $i /dev/null ; done (I was doing this all over my own code anyway, because I'd been using spaces in all defs, so I thought I'd make a run on the Python code as well. If you need to do such fixes in your own code, you can use xx-rename or parenregu.el within emacs.)
-
- 18 Tem, 2004 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 21 Mar, 2004 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 01 Tem, 2003 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Pass the proper variable when the user supplies a directory. Will backport.
-
- 27 Şub, 2003 1 kayıt (commit)
-
-
Mark Hammond yazdı
a traceback.
-
- 12 Kas, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
contains options, drop them to get the major/minor content type. Modified from the supplied patch to support more whitespace variation. Closes SF patch #613605.
-
- 11 Eyl, 2002 1 kayıt (commit)
-
-
http://www.python.org/sf/572113Walter Dörwald yazdı
(with one small bugfix in bgen/bgen/scantools.py) This replaces string module functions with string methods for the stuff in the Tools directory. Several uses of string.letters etc. are still remaining.
-
- 06 Haz, 2002 1 kayıt (commit)
-
-
http://www.python.org/sf/561478Walter Dörwald yazdı
This uses cgi.parse_header() in Checker.checkforhtml(), so that webchecker recognises the mime type text/html even if options are specified.
-
- 08 Mar, 2002 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 11 Ara, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
The cause seems to be that when a file URL doesn't exist, urllib.urlopen() raises OSError instead of IOError. Simply add this to the except clause. Not elegant, but effective. :-)
-
- 11 May, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
exception (for compatibility with old versions of Python).
-
- 05 Nis, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
McCafferty <christopher.mccafferty@csg.ch>, and a bit of experimentation with Navigator 4.7. HTML-as-deployed is evil!
-
- 04 Nis, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
<christopher.mccafferty@csg.ch>: Add javascript: and telnet: to the types of URLs we ignore. Add support for several additional URL-valued attributes on the BODY, FRAME, IFRAME, LINK, OBJECT, and SCRIPT elements.
-
- 25 Nis, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
the path to save a relative path by prefixing it with os.sep (':'). Also fix an indent inconsistency in the same function.
-
- 29 Mar, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
If you do a "cvs update" in the Lib directory, it will pop up there.
-
- 28 Mar, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
self.parser to be None; in that case don't dereference it in getnames().
-
- 27 Mar, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
The robotparser.py module currently lives in Tools/webchecker. In preparation for its migration to Lib, I made the following changes: * renamed the test() function _test * corrected the URLs in _test() so they refer to actual documents * added an "if __name__ == '__main__'" catcher to invoke _test() when run as a main program * added doc strings for the two main methods, parse and can_fetch * replaced usage of regsub and regex with corresponding re code
-
- 17 Kas, 1999 8 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
files. Removed Sam's "SLB" change comments; otherwise this is the same as wcnew.py.
-
Guido van Rossum yazdı
# and removed trailing whitespace.
-
Guido van Rossum yazdı
- same trick with "import wcnew; webchecker = wcnew" as above - updated readhtml() method to handle pair representation; used new name suppression infrastructure from wcnew.py to suppress processing name anchors [And untabified --GvR]
-
Guido van Rossum yazdı
- added -t and -a arguments - added "import wcnew; webchecker = wcnew" in place of "import webchecker" (I assume that if you're happy with the changes, you'll just replace webchecker.py with wcnew.py, but if I were to do that, the diffs would be incomprehensible) - fixed buggy -v argument (I think you got out of sync with the way verbosity was handled in webchecker vs. wcgui between 1.5 and 1.5.2) - made -v actually do something by adding a call to c.setflags() (probably the same problem as above) - updated references to URLs to accommodate wcnew.py's pair representation; added appropriate calls to format_url() to handle display; added argument to ListPanel() initialization to provide access to format_url() [And untabified --GvR]
-
Guido van Rossum yazdı
- same fixes from webchecker.py - incorporated small diff between current webchecker.py and 1.5.2 - fixed bug where "extra roots" added with the -t argument were being checked as real roots, not just as possible continuations - added -a argument to suppress checking of name anchors [And untabified --GvR]
-
Guido van Rossum yazdı
- forced new done origins to set errors if they're in self.bad (fixes bug where only the first of a number of errorful references to a link is reported under some circumstances) - suppressed adding duplicates to self.todo list (cleans up printout in wcgui details)
-
- 26 Nis, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
file URLs.
-
- 24 Mar, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Unfortunately his code breaks wcgui.py in a way that's not easy to fix. I expect that this is a temporary situation -- eventually Sam's changes will be merged back in. (The changes add a -t option to specify exceptions to the -x option, and explicit checking for #foo style fragment ids.)
-
- 03 Ock, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
create a directory and moer the original file to the index.html.
-
- 06 Agu, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
(The alternative would be to call self.checker.note() but since self.checker might be None that's not quite right.
-
- 08 Tem, 1998 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 15 Haz, 1998 4 kayıt (commit)
-
-
Guido van Rossum yazdı
# checkin email because my PC doesn't have the "Mail" command. Add threading (now that it works). Also some small adaptations to Unix again.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
doesn't depend on the value of os.sep. (I.e. ported to Windows :-)
-
Guido van Rossum yazdı
-
- 27 Nis, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
because of an unexpected exception.
-