[issue30489] Add CmdLineTest to standard library

2017-05-26 Thread Santiago Castro

New submission from Santiago Castro:

I see that you use some helpers to test command line utilities 
(https://hg.python.org/cpython/file/default/Lib/test/test_cmd_line_script.py) 
that would be useful to Python programmers. Please, consider to add them to the 
standard library (or somewhere) to reuse them.

--
messages: 294565
nosy: Santiago Castro
priority: normal
severity: normal
status: open
title: Add CmdLineTest to standard library
type: enhancement
versions: Python 2.7, Python 3.3, Python 3.4, Python 3.5, Python 3.6, Python 3.7

___
Python tracker 
<http://bugs.python.org/issue30489>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28207] SQLite headers are not

2016-09-19 Thread Santiago Castro

New submission from Santiago Castro:

When installing Python (for example, version 3.5.2), if SQLite library and 
headers are not installed in a default location (like $HOME/.local/include 
instead of /usr/include), it should take it from there, and not fail to find 
it. This behavior does work with bz2 library and OpenSSL, but not with SQLite.

--
components: Extension Modules
messages: 276983
nosy: Santiago Castro
priority: normal
severity: normal
status: open
title: SQLite headers are not
type: behavior
versions: Python 2.7, Python 3.3, Python 3.4, Python 3.5

___
Python tracker 
<http://bugs.python.org/issue28207>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28207] SQLite headers are not searched in custom locations

2016-09-19 Thread Santiago Castro

Changes by Santiago Castro :


--
title: SQLite headers are not -> SQLite headers are not searched in custom 
locations

___
Python tracker 
<http://bugs.python.org/issue28207>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28207] SQLite headers are not searched in custom locations

2016-09-20 Thread Santiago Castro

Santiago Castro added the comment:

I tried with pyenv (https://github.com/yyuu/pyenv): pyenv install 3.5.2. Maybe 
the error is from their side, but basically it downloads Python and compiles 
it: 
https://github.com/yyuu/pyenv/blob/master/plugins/python-build/install.sh#L24

--

___
Python tracker 
<http://bugs.python.org/issue28207>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28207] SQLite headers are not searched in custom locations

2016-09-24 Thread Santiago Castro

Santiago Castro added the comment:

Okay, that did work. But shouldn't it call pkg-config, so I don't need to set 
the flags manually?

I mean, I'm running this in my user's home, in a computer which I don't have 
root access, and I used Linuxbrew (https://github.com/Linuxbrew/brew) for this, 
and installed libbz2 headers, openssl headers, pkg-config, sqlite3 headers and 
all worked but finding the sqlite3 headers.

Just fyi, when I run pkg-config --cflags sqlite3 this is what I get:

-I/home/sacastro/.linuxbrew/Cellar/sqlite/3.14.1/include

which is ok.

--

___
Python tracker 
<http://bugs.python.org/issue28207>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28207] SQLite headers are not searched in custom locations

2016-09-25 Thread Santiago Castro

Santiago Castro added the comment:

Okay, I checked out again and bz2 and openssl were in standard paths in fact, 
my bad. But I think python should also take into account pkg-config. I left a 
Dockerfile with how I think it should work with pyenv and Linuxbrew: 
https://github.com/bryant1410/docker-pyenv-linuxbrew

--

___
Python tracker 
<http://bugs.python.org/issue28207>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com