Mercurial > public > mercurial-scm > hg
comparison mercurial/util.py @ 8227:0a9542703300
turn some comments back into module docstrings
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sun, 26 Apr 2009 01:24:49 +0200 |
parents | 8b2cd04a6e97 |
children | e68e149f4d44 |
comparison
equal
deleted
inserted
replaced
8226:8b2cd04a6e97 | 8227:0a9542703300 |
---|---|
4 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> | 4 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> |
5 # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com> | 5 # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com> |
6 # | 6 # |
7 # This software may be used and distributed according to the terms of the | 7 # This software may be used and distributed according to the terms of the |
8 # GNU General Public License version 2, incorporated herein by reference. | 8 # GNU General Public License version 2, incorporated herein by reference. |
9 # | 9 |
10 # This contains helper routines that are independent of the SCM core and hide | 10 """Mercurial utility functions and platform specfic implementations. |
11 # platform-specific details from the core. | 11 |
12 This contains helper routines that are independent of the SCM core and | |
13 hide platform-specific details from the core. | |
14 """ | |
12 | 15 |
13 from i18n import _ | 16 from i18n import _ |
14 import cStringIO, errno, re, shutil, sys, tempfile, traceback, error | 17 import cStringIO, errno, re, shutil, sys, tempfile, traceback, error |
15 import os, stat, threading, time, calendar, glob, osutil | 18 import os, stat, threading, time, calendar, glob, osutil |
16 import imp | 19 import imp |