Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #28440: No longer add /Library/Python/site-packages, the Apple-supplied | Ned Deily | 2016-12-03 | 1 | -9/+0 |
| | | | | | | | | | | system Python site-packages directory, to sys.path for macOS framework builds. The coupling between the two Python instances often caused confusion and, as of macOS 10.12, changes to the site-packages layout can cause pip component installations to fail. This change reverts the effects introduced in 2.7.0 by Issue #4865. If you are using a package with both the Apple system Python 2.7 and a user-installed Python 2.7, you will need to ensure that copies of the package are installed with both Python instances. | ||||
* | https goodness | Benjamin Peterson | 2015-02-02 | 1 | -1/+1 |
| | |||||
* | Issue #21572: Change license command to fallback to generic license URL. | Ned Deily | 2014-05-31 | 1 | -1/+1 |
| | |||||
* | - Issue #13150, #17512: sysconfig no longer parses the Makefile and config.h | doko@ubuntu.com | 2013-04-08 | 1 | -15/+0 |
| | | | | | files when imported, instead doing it at build time. This makes importing sysconfig faster and reduces Python startup time by 20%. | ||||
* | Issue #10881: Fix test_site failures with OS X framework builds. | Ned Deily | 2012-02-05 | 1 | -1/+1 |
| | |||||
* | Merged revisions 87497 via svnmerge from | R. David Murray | 2010-12-26 | 1 | -9/+19 |
| | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87497 | r.david.murray | 2010-12-26 14:54:29 -0500 (Sun, 26 Dec 2010) | 7 lines #5258/#10642: print fn, line, traceback and continue when .pth file is broken If a .pth file contained an error, it could cause a traceback in site.py, terminating its processing. In 2.7 and 3.2, the interpreter will then not start. Previously, a message would print saying to use -v to get the traceback. In either case, the traceback generated for a failed .pth file did not include the .pth filename, making it difficult to debug the problem. Now site.py reports not only the .pth filename but also the line number causing the error, and just skips the remainder of the file. ........ | ||||
* | Merged revisions 85386-85387,85389 via svnmerge from | Victor Stinner | 2010-10-12 | 1 | -3/+7 |
| | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85386 | victor.stinner | 2010-10-13 00:23:23 +0200 (mer., 13 oct. 2010) | 3 lines Issue #6612: Fix site and sysconfig to catch os.getcwd() error, eg. if the current directory was deleted. ........ r85387 | victor.stinner | 2010-10-13 00:26:08 +0200 (mer., 13 oct. 2010) | 2 lines #6612: add the author of the patch (W. Trevor King) ........ r85389 | victor.stinner | 2010-10-13 00:42:37 +0200 (mer., 13 oct. 2010) | 2 lines NEWS: Move #6612 to Library section ........ | ||||
* | use a set for membership testing | Benjamin Peterson | 2010-06-03 | 1 | -2/+2 |
| | |||||
* | Issue #8084: ensure that the --user directory | Ronald Oussoren | 2010-05-08 | 1 | -6/+11 |
| | | | | | conforms to platforms standars on OSX when using a python framework. | ||||
* | Fix #8364. Update the setquit docstring and change a built-in to builtin. | Brian Curtin | 2010-04-12 | 1 | -3/+5 |
| | |||||
* | Issue #8205: Remove the "Modules" directory from sys.path when Python is ↵ | Florent Xicluna | 2010-03-22 | 1 | -1/+1 |
| | | | | running from the build directory (POSIX only). | ||||
* | ooops, fix error message in execusercustomize() | Victor Stinner | 2010-03-10 | 1 | -1/+1 |
| | | | | Copy/paste failure :-) | ||||
* | Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt | Victor Stinner | 2010-03-10 | 1 | -0/+12 |
| | | | | | | (SIGINT). If an error occurs while importing the site module, the error is printed and Python exits. Initialize the GIL before importing the site module. | ||||
* | taking sysconfig out of distutils | Tarek Ziadé | 2010-01-23 | 1 | -21/+6 |
| | |||||
* | #6693: New functions in site.py to get user/global site packages paths. | Tarek Ziadé | 2009-08-20 | 1 | -36/+66 |
| | |||||
* | Fix issue #4865: add /Library/Python/2.7/site-packages to | Ronald Oussoren | 2009-03-30 | 1 | -2/+4 |
| | | | | | sys.path on OSX, to make it easier to share (some) installed packages between the system install and a user install. | ||||
* | Docstring typo | Andrew M. Kuchling | 2008-05-10 | 1 | -1/+1 |
| | |||||
* | Add --user option to build_ext | Christian Heimes | 2008-05-09 | 1 | -1/+1 |
| | |||||
* | Implemented PEP 370 | Christian Heimes | 2008-05-06 | 1 | -48/+185 |
| | |||||
* | Add the correct build dir when building with pydebug. | Georg Brandl | 2008-01-21 | 1 | -0/+2 |
| | |||||
* | Fix docstring for add_package in site.py. | Georg Brandl | 2007-05-19 | 1 | -2/+4 |
| | |||||
* | Patch #1677862: Require a space or tab after import in .pth files. | Martin v. Löwis | 2007-03-12 | 1 | -1/+1 |
| | |||||
* | Patch #1540892: site.py Quitter() class attempts to close sys.stdin | Kurt B. Kaiser | 2006-08-16 | 1 | -0/+6 |
| | | | | | | | | | | before raising SystemExit, allowing IDLE to honor quit() and exit(). M Lib/site.py M Lib/idlelib/PyShell.py M Lib/idlelib/CREDITS.txt M Lib/idlelib/NEWS.txt M Misc/NEWS | ||||
* | Update the docstring to use a version a little newer than 1999. This was | Neal Norwitz | 2006-08-15 | 1 | -3/+3 |
| | | | | taken from a Debian patch. Should we update the version for each release? | ||||
* | Fix site module docstring to match the code for Mac OSX, too | Nick Coghlan | 2006-06-12 | 1 | -3/+4 |
| | |||||
* | Fix site module docstring to match the code | Nick Coghlan | 2006-06-12 | 1 | -2/+2 |
| | |||||
* | Adjust whitespace. | Neal Norwitz | 2006-04-11 | 1 | -1/+1 |
| | |||||
* | Updated the warnings, linecache, inspect, traceback, site, and doctest modules | Phillip J. Eby | 2006-04-11 | 1 | -0/+2 |
| | | | | | to work correctly with modules imported from zipfiles or via other PEP 302 __loader__ objects. Tests and doc updates are included. | ||||
* | Whitespace normalization. | Tim Peters | 2006-03-10 | 1 | -1/+1 |
| | |||||
* | Patch #1446372: quit and exit can now be called from the interactive | Georg Brandl | 2006-03-09 | 1 | -4/+13 |
| | | | | interpreter to exit. | ||||
* | Fix bug in addsitedir() to properly handle the lack of a second argument. | Brett Cannon | 2004-07-20 | 1 | -3/+3 |
| | | | | | | Fixed to keep backwards-compatibility for the undocumented function. Closes bug #986795. | ||||
* | Change argument list for addsitedir() to not require a second argument and thus | Brett Cannon | 2004-07-09 | 1 | -1/+1 |
| | | | | | match old verion's argument list (overlooked since API of the file is undocumented). | ||||
* | Whitespace normalization. | Tim Peters | 2004-07-07 | 1 | -1/+1 |
| | |||||
* | Refactored site.py into functions. Also moved over to using sets. | Brett Cannon | 2004-06-05 | 1 | -203/+236 |
| | | | | New regression test suite. | ||||
* | Back out last patch that removed an entry from sys.path if it was not an | Brett Cannon | 2004-03-21 | 1 | -1/+1 |
| | | | | | existent path. Pointed out by jvr that entries could be non-file items for custom importers. | ||||
* | Remove non-existent paths. | Brett Cannon | 2004-03-20 | 1 | -1/+1 |
| | |||||
* | Fix how line endings were handled when iterating over a .pth file by stripping | Brett Cannon | 2004-03-20 | 1 | -2/+1 |
| | | | | all whitespace at the end of the path line. | ||||
* | We have cp932 support in standard distribution now. And there's now | Hye-Shik Chang | 2004-02-13 | 1 | -4/+3 |
| | | | | no major codepages unsupported by Python, so remove the eg. case. | ||||
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -1/+1 |
| | | | | From SF patch #852334. | ||||
* | To find the curses extension as a DLL (on OS/2), we need to adjust the | Andrew MacIntyre | 2003-12-02 | 1 | -0/+15 |
| | | | | | | library search path to include the extension directory. Without this, the curses_panel extension can't find the curses extension/DLL, which exports some curses symbols to it. | ||||
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 1 | -1/+1 |
| | | | | (From SF patch #810751) | ||||
* | Repair operator error. | Jeremy Hylton | 2003-07-18 | 1 | -8/+3 |
| | |||||
* | SF patch 773476: NameError when there are no prefixes. | Jeremy Hylton | 2003-07-18 | 1 | -3/+9 |
| | |||||
* | In an OSX framework build Python could fail if HOME wasn't set, fixed. | Jack Jansen | 2003-06-03 | 1 | -1/+1 |
| | | | | Fixes #747954. | ||||
* | Patch #734231: Update RiscOS support. In particular, correct | Martin v. Löwis | 2003-05-10 | 1 | -1/+1 |
| | | | | riscospath.extsep, and use os.extsep throughout. | ||||
* | When on MacOSX, and only in a framework build, add | Jack Jansen | 2003-04-16 | 1 | -0/+13 |
| | | | | ~/Library/Python/2.3/site-packages to sys.path, if it exists. | ||||
* | Patch #671666: Alias ANSI code page to "mbcs". | Martin v. Löwis | 2003-03-03 | 1 | -0/+16 |
| | |||||
* | PEP 302 + zipimport: | Just van Rossum | 2002-12-30 | 1 | -9/+4 |
| | | | | | | | | | | | | | - new import hooks in import.c, exposed in the sys module - new module called 'zipimport' - various changes to allow bootstrapping from zip files I hope I didn't break the Windows build (or anything else for that matter), but then again, it's been sitting on sf long enough... Regarding the latest discussions on python-dev: zipimport sets pkg.__path__ as specified in PEP 273, and likewise, sys.path item such as /path/to/Archive.zip/subdir/ are supported again. | ||||
* | Whitespace normalization. | Tim Peters | 2002-11-09 | 1 | -1/+1 |
| | |||||
* | Fix a problem in site.py which triggers in case sys.path is empty. | Marc-André Lemburg | 2002-09-19 | 1 | -1/+2 |
| | | | | Bugfix candidate for 2.2.2. |