| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | bump to 0.4.60.4.6 | Adam Hupp | 2013-10-07 | 1 | -1/+1 |
| | | |||||
| * | Fix failure on file-5.15. That has a bug and/or change in behvior | Adam Hupp | 2013-10-07 | 2 | -7/+15 |
| | | | | | | | | where the first call to magic_load results in magic_error returning a string even though there was no error. Fixed by being more precise about checking the return values (either nul or -1 depending on function) rather than relying on magic_error. | ||||
| * | bump version to 0.4.50.4.5 | Adam Hupp | 2013-09-27 | 1 | -1/+1 |
| | | |||||
| * | Don't hard-code version number when finding homebrew library | Adam Hupp | 2013-09-27 | 1 | -2/+5 |
| | | |||||
| * | bump version to 0.4.40.4.4 | Adam Hupp | 2013-09-27 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'master' of github.com:ahupp/python-magic into aromanovich-master | Adam Hupp | 2013-09-27 | 3 | -0/+7 |
| |\ | |||||
| | * | Merge pull request #40 from DXist/master | Adam Hupp | 2013-09-27 | 3 | -0/+7 |
| | |\ | | | | | | | Add stdeb config | ||||
| | | * | Add stdeb config | Rinat Shigapov | 2013-08-20 | 3 | -0/+7 |
| | | | | |||||
| * | | | Merge branch 'master' of https://github.com/aromanovich/python-magic into ↵ | Adam Hupp | 2013-09-27 | 5 | -64/+70 |
| |\ \ \ | |/ / |/| | | | | | | | | | | | | | | aromanovich-master Conflicts: test.py | ||||
| | * | | Add keep going functionality | Anton Romanovich | 2013-02-05 | 4 | -2/+16 |
| | | | | |||||
| | * | | Fix tests | Anton Romanovich | 2013-02-05 | 1 | -4/+6 |
| | | | | |||||
| | * | | Refactor tests | Anton Romanovich | 2013-02-04 | 1 | -49/+47 |
| | | | | |||||
| | * | | Fix tests; introduce Travis CI | Anton Romanovich | 2013-02-04 | 2 | -17/+21 |
| | | | | |||||
| * | | | Use python 2.4-compatible threading.currentThread() call | Adam Hupp | 2013-09-27 | 2 | -13/+17 |
| | | | | |||||
| * | | | Update homebrew instructions | Adam Hupp | 2013-09-27 | 1 | -1/+1 |
| | |/ |/| | |||||
| * | | fix bad merge of README | Adam Hupp | 2013-06-03 | 1 | -1/+1 |
| | | | |||||
| * | | add troubleshooting section and extended usage docs | Adam Hupp | 2013-06-03 | 1 | -1/+25 |
| | | | |||||
| * | | Add some comments | Adam Hupp | 2013-06-03 | 1 | -1/+26 |
| | | | |||||
| * | | - avoid segfault when used in multiple threads via ↵ | Adam Hupp | 2013-06-02 | 2 | -22/+27 |
| | | | | | | | | | | | | | magic.from_buffer/from_file methods - add hard check to prevent this in the future (possibly breaking change) | ||||
| * | | add forgotten testdata file | Adam Hupp | 2012-11-02 | 1 | -0/+0 |
| |/ | |||||
| * | Support python 3 | Adam Hupp | 2012-11-01 | 2 | -22/+35 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - various unicode/bytes test fixes - resolve an (undocumented?) change in how ctypes converts unicode strings to char string by always using the default filesystem encoding. Test Plan: adam@gaba:~/github/python-magic$ python test.py ..... ---------------------------------------------------------------------- Ran 5 tests in 0.010s OK adam@gaba:~/github/python-magic$ python3 test.py ..... ---------------------------------------------------------------------- Ran 5 tests in 0.016s OK adam@gaba:~/github/python-magic$ ~/opt/python3.3/bin/python3 test.py .. snip ... ---------------------------------------------------------------------- Ran 5 tests in 0.025s | ||||
| * | cleanup README0.4.3 | Adam Hupp | 2012-09-17 | 1 | -1/+6 |
| | | |||||
| * | update README to markdown format, and clarify | Adam Hupp | 2012-09-17 | 2 | -58/+59 |
| | | |||||
| * | bump version to 0.4.3 | Adam Hupp | 2012-09-17 | 1 | -1/+1 |
| | | |||||
| * | explain change to __del__ | Adam Hupp | 2012-09-17 | 1 | -0/+1 |
| | | |||||
| * | Merge branch 'master' of github.com:ahupp/python-magic | Adam Hupp | 2012-09-17 | 1 | -1/+1 |
| |\ | |||||
| | * | Merge pull request #19 from edevil/master | Adam Hupp | 2012-09-17 | 1 | -1/+1 |
| | |\ | | | | | | | Check if 'magic_close' still has a value on __del__() | ||||
| | | * | Check for magic_close as well. When python is exiting it can be | Andre Cruz | 2012-07-25 | 1 | -1/+1 |
| | |/ | | | | | | | None already. | ||||
| * | | Merge branch 'master' of github.com:ahupp/python-magic | Adam Hupp | 2012-09-17 | 2 | -6/+7 |
| |\ \ | |/ | |||||
| | * | Merge pull request #17 from fallgesetz/master | Adam Hupp | 2012-05-22 | 1 | -6/+7 |
| | |\ | | | | | | | Added libmagic.dylib path for homebrew package manager | ||||
| | | * | Added path to default homebrew install of libmagic on Mac OS X | Leah Xue | 2012-05-21 | 1 | -6/+7 |
| | |/ | |||||
| | * | Merge pull request #16 from dusual/master | Adam Hupp | 2012-04-03 | 1 | -0/+0 |
| | |\ | | | | | | | Added a __init__.py file such that this can be used as a package | ||||
| | | * | adding the __init__ file , cannot work as a package till that is the case | Amit Sethi | 2012-03-28 | 1 | -0/+0 |
| | |/ | |||||
| * | | bump version to 0.4.2 | Adam Hupp | 2011-12-29 | 1 | -1/+1 |
| |/ | |||||
| * | Fix dylib look with patch from sacha@ssl.co.uk | Adam Hupp | 2011-12-29 | 2 | -4/+6 |
| | | |||||
| * | Bump version to 4.1 | Adam Hupp | 2011-12-29 | 1 | -1/+1 |
| | | |||||
| * | Remove absolute path for libmagic.dylib on darwin to allow for other types ↵ | Adam Hupp | 2011-12-29 | 1 | -2/+2 |
| | | | | | of install | ||||
| * | Remove ctypes setup() dependency, already included in python >= 2.5 | Adam Hupp | 2011-01-31 | 1 | -1/+0 |
| | | | | | and it breaks pypi installs. | ||||
| * | Bump version, add contributors section to README | Adam Hupp | 2010-11-21 | 2 | -6/+11 |
| | | |||||
| * | Consolidate darwin/win32 library loading. Tested on OSX. | Adam Hupp | 2010-11-21 | 1 | -12/+5 |
| | | |||||
| * | Merge branch 'master' of https://github.com/FlaPer87/python-magic into ↵ | Adam Hupp | 2010-11-21 | 1 | -9/+26 |
| |\ | | | | | | | FlaPer87-master | ||||
| | * | Commet error fix. I was hungry | Flavio Percoco Premoli | 2010-09-30 | 1 | -5/+5 |
| | | | |||||
| | * | Some load improvements | Flavio Percoco Premoli | 2010-09-30 | 1 | -6/+23 |
| | | | |||||
| * | | Fix unit test | Adam Hupp | 2010-11-21 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | - remove charset from textfile mimetype that is now gone (libmagic version change? environment change? sunspots?) - Don't run filetype tests when testing charsets | ||||
| * | | reorder Mime args to preserve compatability | Adam Hupp | 2010-11-21 | 1 | -1/+1 |
| | | | |||||
| * | | - fix keyword to define requirements | Lukasz Nowak | 2010-10-15 | 1 | -1/+1 |
| | | | |||||
| * | | Add sample file for testing purpose. | Nicolas Delaby | 2010-10-15 | 1 | -0/+2 |
| | | | |||||
| * | | Add new feature which return mime_encoding of file. | Nicolas Delaby | 2010-10-15 | 3 | -3/+28 |
| |/ | |||||
| * | avoid abort if you somehow double free | Adam Hupp | 2010-04-17 | 1 | -1/+3 |
| | | |||||
| * | merge support for win32 from tehmaze | Adam Hupp | 2010-04-02 | 1 | -1/+1 |
| | | |||||
