[python-committers] MSDN subscriptions/renewals

2016-07-07 Thread Brian Curtin
Hey all,

The fine folks at Microsoft have been giving us complimentary access
to Microsoft Developer Network subscriptions for many years now in
support of Python on Windows, and it's soon going to be expiration
time (or past that) for some of your accounts.

If any existing subscribers anyone would like a renewal, please send
me both your email login as well as your Subscriber ID. You can find
that at https://msdn.microsoft.com/en-us/subscriptions/manage/ once
you're logged in.

If you would like a subscription for the first time, which gives you
access to Visual Studio, Windows disk images, and more, please send me
all of the following:

First Name:
Last Name:
Email Address:
Project/Company: Python Software Foundation
Complete Mailing Address:
Phone Number:

In order to ease the work on our Microsoft contact's side, I'd like to
batch up the list of names that we send them, so I'm going to collect
responses for a week or so and then send them off. After that it takes
around a week for them to go through it and get everything enabled,
after which Microsoft will send you an email about your new
subscription.

Brian
___
python-committers mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-committers
Code of Conduct: https://www.python.org/psf/codeofconduct/


[python-committers] Is it just me or is the tip broken at the moment?

2016-07-07 Thread Steven D'Aprano
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://[email protected]/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 

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
___
python-committers mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-committers
Code of Conduct: https://www.python.org/psf/codeofconduct/


Re: [python-committers] Is it just me or is the tip broken at the moment?

2016-07-07 Thread Zachary Ware
On Thu, Jul 7, 2016 at 11:03 AM, Steven D'Aprano  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
___
python-committers mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-committers
Code of Conduct: https://www.python.org/psf/codeofconduct/


Re: [python-committers] Is it just me or is the tip broken at the moment?

2016-07-07 Thread R. David Murray
On Thu, 07 Jul 2016 11:15:29 -0500, Zachary Ware  
wrote:
> On Thu, Jul 7, 2016 at 11:03 AM, Steven D'Aprano  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.

I've never had a need to use hg purge.  'make distclean' has always
been enough for me in these situations.

--David
___
python-committers mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-committers
Code of Conduct: https://www.python.org/psf/codeofconduct/


Re: [python-committers] Is it just me or is the tip broken at the moment?

2016-07-07 Thread Steven D'Aprano
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  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
___
python-committers mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-committers
Code of Conduct: https://www.python.org/psf/codeofconduct/


Re: [python-committers] MSDN subscriptions/renewals

2016-07-07 Thread Paul Moore
Hi Brian,
My current subscription expires at the start of November, which seems
to be a little out of sync with when you do these renewals (I'm not
sure how that happened - I think I was late renewing one year). I
don't know if it's worth renewing now to bring things back in sync,
but in case it is, my details are

First Name: Paul
Last Name: Moore
Email address: [email protected]
Mailing address: 6, Glebe Road, Cuddington, Northwich, Cheshire CW8 2LR, England
Phone number: +44 1606 882861

Regards,
Paul

On 7 July 2016 at 13:12, Brian Curtin  wrote:
> Hey all,
>
> The fine folks at Microsoft have been giving us complimentary access
> to Microsoft Developer Network subscriptions for many years now in
> support of Python on Windows, and it's soon going to be expiration
> time (or past that) for some of your accounts.
>
> If any existing subscribers anyone would like a renewal, please send
> me both your email login as well as your Subscriber ID. You can find
> that at https://msdn.microsoft.com/en-us/subscriptions/manage/ once
> you're logged in.
>
> If you would like a subscription for the first time, which gives you
> access to Visual Studio, Windows disk images, and more, please send me
> all of the following:
>
> First Name:
> Last Name:
> Email Address:
> Project/Company: Python Software Foundation
> Complete Mailing Address:
> Phone Number:
>
> In order to ease the work on our Microsoft contact's side, I'd like to
> batch up the list of names that we send them, so I'm going to collect
> responses for a week or so and then send them off. After that it takes
> around a week for them to go through it and get everything enabled,
> after which Microsoft will send you an email about your new
> subscription.
>
> Brian
> ___
> python-committers mailing list
> [email protected]
> https://mail.python.org/mailman/listinfo/python-committers
> Code of Conduct: https://www.python.org/psf/codeofconduct/
___
python-committers mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-committers
Code of Conduct: https://www.python.org/psf/codeofconduct/