summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* pylint option updatelogilab-common-version-0.52.1Sylvain Th?nault2010-10-121-1/+1
|
* typoSylvain Th?nault2010-10-122-3/+3
|
* close changelogSylvain Th?nault2010-10-111-1/+6
|
* 0.52.1Sylvain Th?nault2010-10-112-1/+7
|
* update ChangeLogSylvain Th?nault2010-10-111-0/+7
|
* backport stableSylvain Th?nault2010-10-116-160/+30
|\
| * backport stableSylvain Th?nault2010-10-111-1/+2
| |\
| * | skip comments (eg lines starting with a #) in text_to_dictSylvain Th?nault2010-10-111-1/+1
| | |
| * | make OptionError available through the moduleSylvain Th?nault2010-10-111-2/+9
| | |
| * | remove py2.2 compat ; use deprecation warningsEmile Anclin2010-10-064-157/+20
| | |
| * | backport stableEmile Anclin2010-10-063-7/+8
| |\ \
* | | | ensure option name not given has unicode, cause error on optparse + python 2.5Sylvain Th?nault2010-10-111-1/+1
| | | |
* | | | grmblSylvain Th?nault2010-10-110-0/+0
|\ \ \ \ | | |_|/ | |/| |
| * | | merge stable headsSylvain Th?nault2010-10-111-1/+2
| |\ \ \ | | |_|/ | |/| |
* | | | merge two stable headsEmile Anclin2010-10-111-1/+2
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | [debian] move python-unittest2 to SuggestsJulien Jehannet2010-10-071-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Explanation by Sandro Tosi: ?Suggests - list the package that activate some really minor package features. given a test suite is quite unlikely that it's something users are going to run quite a lot, I'd go with a Suggests.? Clearly, a better solution for our base framework.
* | | fileutils: restore 2.4 compat: endswith does not accept tuple in 2.4Emile Anclin2010-10-061-2/+3
| | |
* | | typoEmile Anclin2010-10-061-1/+1
| | |
* | | fix tests: should be runnable as script from anywhereEmile Anclin2010-10-061-4/+4
| | |
* | | backport default to stableEmile Anclin2010-10-060-0/+0
|\ \ \ | |_|/ |/| |
* | | [tests] fix capture test when tty not available (in case of redirection)Julien Jehannet2010-09-301-15/+11
| | |
* | | [tests] fix usage of os.access in unittest_fileutils.pyJulien Jehannet2010-09-302-8/+20
| | | | | | | | | | | | | | | | | | os.access is often problematic in some environments (chroot, fakeroot, nfs, ...) since it uses read uid instead of effective uid in contrast to other file utilities found in posix world. Consider using os.stat() and stat constants when possible.
* | | [modutils] Consider arch-specific installation for STD_LIB_DIR definitionJulien Jehannet2010-09-301-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | :mod:`distutils.sysconfig` contains to much hardcoded values to rely on On POSIX systems: STD_LIB_DIR = get_python_lib(standard_lib=1) should be rewritten to: STD_LIB_DIR = join(get_config_var("LIBDIR"), get_python_version()) to take care of arch-dependant installation of python :see: `Problems with /usr/lib64 builds <http://bugs.python.org/issue1294959>`_ :see: `FHS <http://www.pathname.com/fhs/pub/fhs-2.3.html#LIBLTQUALGTALTERNATEFORMATESSENTIAL>`_
* | | maniac cleanupSylvain Th?nault2010-10-012-5/+5
| | |
* | | [debian] minor update of debian/controlJulien Jehannet2010-09-301-3/+3
| | |
* | | [pkginfo] fix json import logic (we don't want a new dependency)Julien Jehannet2010-09-301-4/+6
| | |
* | | [compat] add more compat statement + update docstringJulien Jehannet2010-09-281-0/+6
| | |
* | | [compat] add compat import + update docstringJulien Jehannet2010-09-281-4/+29
| | |
* | | backport stableSylvain Th?nault2010-09-2816-140/+192
|\ \ \ | |/ / |/| |
| * | backport stable into defaultSylvain Th?nault2010-09-2416-140/+192
| |\ \
| | * | [py3k] can't compare None to int with python3Emile Anclin2010-09-212-3/+4
| | | |
| | * | [py3k] add a is_generator to compat.Sylvain Th?nault2010-09-211-6/+17
| | | |
| | * | [py3k] compat: add str_to_bytes and str_encodeEmile Anclin2010-09-214-10/+21
| | | | | | | | | | | | | | | | | | | | | | | | In py3k, things are different: we will sometimes need to convert str to bytes if we want to write data into a file; and on other times we don't need to encode str to something
| | * | skip some compat tests on >= 3.0Emile Anclin2010-09-211-0/+6
| | | |
| | * | [py3k] file is replaced in 3k by some io classEmile Anclin2010-09-212-5/+14
| | | |
| | * | [py3k] compat : __builtin__ will be replaced by builtins in py3kEmile Anclin2010-09-214-18/+14
| | | |
| | * | [py3k] define raw_input for py3.xEmile Anclin2010-09-214-1/+11
| | | |
| | * | '[testlib/py3k]: replace self._exc_info by equivalent sys.exc_infoEmile Anclin2010-09-201-1/+1
| | | | | | | | | | | | | | | | | | | | Since python2.5, _exc_info is doing nothing else than returning sys.exc_info _exc_info is not available in 2.7 and 3.x.
| | * | [py3k] umessage: not so trivial if we want to stay 2.4 compatEmile Anclin2010-09-201-2/+8
| | | |
| | * | [py3k] some trivial fixesEmile Anclin2010-09-153-4/+3
| | | |
| | * | [py3k] fix unittest_modutils for standard modulesSylvain Th?nault2010-09-151-2/+14
| | | |
| | * | [py3k] remove "os.path.walk" occurencies by using "os.path"Sylvain Th?nault2010-09-154-90/+73
| | | |
| | * | [cleanup] remove dead importsEmile Anclin2010-09-141-1/+0
| | | |
| | * | mergeEmile Anclin2010-09-133-2/+11
| | |\ \
| | | * | [py3k] add callable to compat.pyEmile Anclin2010-09-133-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | | import "callable" where needed. We can't use collections in python <= 2.5
| | * | | backport stableSylvain Th?nault2010-09-133-1/+17
| | |\ \ \ | | | |/ / | | |/| |
* | | | | Added tag logilab-common-debian-version-0.52.0-1 for changeset 382b0f39ce4bSylvain Th?nault2010-09-280-0/+0
| |_|_|/ |/| | |
* | | | Added tag logilab-common-version-0.52.0 for changeset c394f30da208logilab-common-debian-version-0.52.0-1Sylvain Th?nault2010-09-280-0/+0
| | | |
* | | | 0.52logilab-common-version-0.52.0Sylvain Th?nault2010-09-283-2/+13
| | | |
* | | | set maxDiff to None so we see diffs anywaySylvain Th?nault2010-09-271-1/+1
| | | |