summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* preparing 0.53 releaselogilab-common-version-0.53.0Emile Anclin2010-11-104-1/+16
|
* 2to3 has some more usable fixersEmile Anclin2010-11-157-18/+15
|
* 2to3: fix a lot of white space after commaEmile Anclin2010-11-1529-238/+238
|
* Add a progress context manager.Pierre-Yves David2010-11-101-0/+40
| | | | | | | | | | | It take the same argument than ProgressBar and return a ProgressBAr object on __enter__ The context manager could be enabled or disable at init. If disabled the progress bar object return a Mock object that won't print anything and doesn't required the code handling the progress bar object to change. The progress bar is propertly finished on __exit__
* fileutils: deprecate norm_read and norm_openEmile Anclin2010-11-101-3/+4
| | | | They have just simple builtin equivalent since python 2.3 (see commit 5b11fedb163f)
* packaging : add py3k target; update setup.py and other files to make py3k ↵Emile Anclin2010-11-106-47/+138
| | | | packaging work
* cleanup: remove python <=2.2 relative stuffEmile Anclin2010-11-081-11/+2
|
* [tests] make tests independent from cwdEmile Anclin2010-11-043-6/+12
|
* cleanupSylvain Th?nault2010-11-031-1/+1
|
* py3k: use str_encode for lgc.graphEmile Anclin2010-11-021-5/+2
|
* py3k: rename file; write a compat.reloadEmile Anclin2010-11-022-1/+3
|
* configuration: fix error messageSylvain Th?nault2010-11-021-1/+1
|
* new tempattr context managerSylvain Th?nault2010-10-201-0/+16
|
* clcommands: fix log level bug: logthreshold may be given a stringSylvain Th?nault2010-10-201-6/+6
|
* Py3k: fix deprecation warningEmile Anclin2010-10-181-2/+3
|
* py3.x compat: pass a key to sortedEmile Anclin2010-10-181-1/+1
|
* fix: stay python2.3 compatEmile Anclin2010-10-181-1/+1
|
* Added tag logilab-common-debian-version-0.52.1-1 for changeset 5735572d3124Sylvain Th?nault2010-10-140-0/+0
|
* Added tag logilab-common-version-0.52.1 for changeset b82dad6d6d0dlogilab-common-debian-version-0.52.1-1Sylvain Th?nault2010-10-140-0/+0
|
* 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
| | | |