1. e0ed2d7 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 12 years ago
  2. 66da7c5 - Issue #17536: Add to webbrowser's browser list: xdg-open, gvfs-open, by doko@ubuntu.com · 12 years ago
  3. 56b2665 #12601: fix typo. by Ezio Melotti · 14 years ago
  4. 0df7367 Issue 10738: Fix webbrowser.Opera.raise_opts value. by Terry Reedy · 15 years ago
  5. 934f4e1 Fix for issue8446: by Ronald Oussoren · 15 years ago
  6. b0153cf Small update to r80698 to ensure that webbrowser.open uses the default browser. by Ronald Oussoren · 15 years ago
  7. 4ef1c7e For for issue #7192: with this patch webbrowser.get("firefox") works on OSX by Ronald Oussoren · 15 years ago
  8. b9d4963 Issue #7092: Fix the DeprecationWarnings emitted by the standard library by Antoine Pitrou · 16 years ago
  9. 2e1308f Issue #2666: Handle BROWSER environment variable properly for unknown browser names in the webbrowser module. by Georg Brandl · 16 years ago
  10. 39186bc use bools for autoraise by Benjamin Peterson · 16 years ago
  11. ee25030 Fix a few webbrowser.py problems. by Georg Brandl · 18 years ago
  12. 972ca50 Fix #1684254: split BROWSER contents with shlex to avoid displaying 'URL'. by Georg Brandl · 18 years ago
  13. 8f06d02 Bug #1681228: the webbrowser module now correctly uses the default by Georg Brandl · 18 years ago
  14. 8c66745 Bug #1565661: in webbrowser, split() the command for the default by Georg Brandl · 19 years ago
  15. 2c94bf7 Fix webbrowser.BackgroundBrowser on Windows. by Georg Brandl · 19 years ago
  16. f3321b5 webbrowser: Silence stderr output if no gconftool or gnome browser found by Georg Brandl · 19 years ago
  17. b2afe85 Make use of new str.startswith/endswith semantics. by Georg Brandl · 19 years ago
  18. 7377ad2 Add seamonkey to list of Windows browsers too. by Georg Brandl · 19 years ago
  19. 314acac Add SeaMonkey to the list of Mozilla browsers. by Georg Brandl · 19 years ago
  20. 887c080 Whitespace normalization. by Tim Peters · 20 years ago
  21. 23929f2 Try to resolve the remaining webbrowser issues (backgrounding, local urls) by Georg Brandl · 20 years ago
  22. 536cf99 Whitespace normalization. by Tim Peters · 20 years ago
  23. 4a5a918 Prefer GNOME browser over mozilla. by Georg Brandl · 20 years ago
  24. 1cb179e Bug #1338995: fix problem with new webbrowser.py. by Georg Brandl · 20 years ago
  25. b980113 Fix errors in _synthesize because of missing basename attribute of by Georg Brandl · 20 years ago
  26. 196f733 Fix pychecker warnings by Neal Norwitz · 20 years ago
  27. e8f2443 Patch #754022: Greatly enhanced webbrowser.py. by Georg Brandl · 20 years ago
  28. 9a2a1cb [Patch #981794] Add support for Firefox/Firebird by Andrew M. Kuchling · 21 years ago
  29. bac788a Replace str.find()!=1 with the more readable "in" operator. by Raymond Hettinger · 21 years ago
  30. 1456fde Fixed bug by Gustavo Niemeyer · 23 years ago
  31. 520cdf7 SF # 539360, webbrowser.py and konqueror, by Andy McKay by Neal Norwitz · 23 years ago
  32. 8dd28eb SF # 585913, Adds Galeon support to webbrowser.py by Neal Norwitz · 23 years ago
  33. 10ff706 Replaced boolean tests with is None. by Raymond Hettinger · 23 years ago
  34. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 23 years ago
  35. bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 23 years ago
  36. ff0a7b8 If no webbrowsers were found _tryorder would be empty, cmd would never be set and the "del cmd" would fail. Fixed. by Jack Jansen · 23 years ago
  37. f963b45 SF #515026, delete global variable that was apparently used only in a for loop. by Neal Norwitz · 23 years ago
  38. 925f144 Fix webbrowser.py security bug: be more careful about what we pass to by Fred Drake · 24 years ago
  39. 4b402f2 Address SF patch #485789 (Stefan Schwarzer). by Guido van Rossum · 24 years ago
  40. cb33165 _tryorder should always be a list, then the problem Jack had to fix in by Guido van Rossum · 24 years ago
  41. 55c5abb Missing comma in tuple initializer caused webbrowser.open() not to work at by Jack Jansen · 24 years ago
  42. 3a89b2b Patch #484847: Default to netscape.exe on OS/2. by Martin v. Löwis · 24 years ago
  43. 16623fe _os should be os; reported by Neal Norwitz. by Fred Drake · 24 years ago
  44. 118aa53 Fix malformed line (PyChecker) by Andrew M. Kuchling · 24 years ago
  45. 3f8f164 Remove some false comments. by Fred Drake · 24 years ago
  46. cdab3bf If the user's environment has set the BROWSER environment variable (as Gnome by Skip Montanaro · 24 years ago
  47. f4e5bd9 _synthesize(): Helper function: when the users passes a specific by Fred Drake · 24 years ago
  48. f7eb4fa Fixes a fatal bug when the module has computed alternatives containing %s. by Eric S. Raymond · 24 years ago
  49. fc31f26 Update auto-detection for Konqueror to include KDE 2 -- the kfm command is by Fred Drake · 24 years ago
  50. 0a8c29b Clarify synopsis line a bit. by Ka-Ping Yee · 24 years ago
  51. 40fc160 final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be by Skip Montanaro · 24 years ago
  52. 85ba673 Whitespace normalization. by Tim Peters · 24 years ago
  53. 8016a4b Remove two meaningless, module-level global statements (one of a by Jeremy Hylton · 24 years ago
  54. 658cba6 Whitespace normalization. by Tim Peters · 24 years ago
  55. cfa4096 Fixed autoraise glitches. by Eric S. Raymond · 25 years ago
  56. f79cb2d Expose the autoraise capability. Improve the documentation. by Eric S. Raymond · 25 years ago
  57. f7f1851 Rewrite webbrowser.py to fix various bugs following Ka-Ping Yee's by Eric S. Raymond · 25 years ago
  58. e119006 Whitespace normalization. Top level of Lib now fixed-point for reindent.py! by Tim Peters · 25 years ago
  59. 2d3eb13 SF Patch #103211. by Guido van Rossum · 25 years ago
  60. 2595a83 Typo for Mac code, fixing SF bug 12195. by Guido van Rossum · 25 years ago
  61. 3944a01 Do not set Konquerer to be the default browser if $KDEDIR is set -- some by Fred Drake · 25 years ago
  62. f58a7aa Implemented new os.startfile function, unique to Windows, exposing a by Tim Peters · 25 years ago
  63. 1d62f49 Hack the Windows code to use os.popen(). by Guido van Rossum · 25 years ago
  64. c70b448 New module to control Web browsers; see the documentation for more information. by Fred Drake · 25 years ago