Is it just me or is the tip broken at the moment?

I'm wondering if I've broken something at my end, or if everyone is seeing the same error.
[steve@ando cpython]$ hg fetch pulling from ssh://hg@hg.python.org/cpython searching for changes no changes found [steve@ando cpython]$ hg update 0 files updated, 0 files merged, 0 files removed, 0 files unresolved [steve@ando cpython]$ ./python Failed to import the site module Traceback (most recent call last): File "/home/steve/python/python-dev/cpython/Lib/site.py", line 571, in <module> main() File "/home/steve/python/python-dev/cpython/Lib/site.py", line 557, in main known_paths = addusersitepackages(known_paths) File "/home/steve/python/python-dev/cpython/Lib/site.py", line 281, in addusersitepackages user_site = getusersitepackages() File "/home/steve/python/python-dev/cpython/Lib/site.py", line 257, in getusersitepackages user_base = getuserbase() # this will also set USER_BASE File "/home/steve/python/python-dev/cpython/Lib/site.py", line 247, in getuserbase USER_BASE = get_config_var('userbase') File "/home/steve/python/python-dev/cpython/Lib/sysconfig.py", line 591, in get_config_var return get_config_vars().get(name) File "/home/steve/python/python-dev/cpython/Lib/sysconfig.py", line 540, in get_config_vars _init_posix(_CONFIG_VARS) File "/home/steve/python/python-dev/cpython/Lib/sysconfig.py", line 411, in _init_posix _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0) ImportError: No module named '_sysconfigdata_dm'
-- Steve

On Thu, Jul 7, 2016 at 11:03 AM, Steven D'Aprano <steve@pearwood.info> wrote:
I'm wondering if I've broken something at my end, or if everyone is seeing the same error.
Works fine for me. Have you rebuilt since pulling? If a simple
'make' doesn't do it for you, try an hg purge before redoing configure
and make. If you don't have the purge extension enabled, you can
enable it for one command like so: hg --config extensions.purge= purge --all
. Note that hg purge --all
will remove all untracked
files, so be sure you don't have any stray files in the repo that you
want to keep.
-- Zach

On Thu, 07 Jul 2016 11:15:29 -0500, Zachary Ware <zachary.ware+pydev@gmail.com> wrote:
On Thu, Jul 7, 2016 at 11:03 AM, Steven D'Aprano <steve@pearwood.info> wrote:
I'm wondering if I've broken something at my end, or if everyone is seeing the same error.
Works fine for me. Have you rebuilt since pulling? If a simple 'make' doesn't do it for you, try an hg purge before redoing configure and make. If you don't have the purge extension enabled, you can enable it for one command like so:
hg --config extensions.purge= purge --all
. Note thathg purge --all
will remove all untracked files, so be sure you don't have any stray files in the repo that you want to keep.
I've never had a need to use hg purge. 'make distclean' has always been enough for me in these situations.
--David

On Thu, Jul 07, 2016 at 11:15:29AM -0500, Zachary Ware wrote:
On Thu, Jul 7, 2016 at 11:03 AM, Steven D'Aprano <steve@pearwood.info> wrote:
I'm wondering if I've broken something at my end, or if everyone is seeing the same error.
Works fine for me. Have you rebuilt since pulling?
I have now, and that's fixed the problem.
Thanks.
-- Steve
participants (3)
-
R. David Murray
-
Steven D'Aprano
-
Zachary Ware