As an ex App Engine team member, now part of the Cloud Foundry team, I concur with Andrew: use the language and framework you prefer, the best tool for the job, Cloud Foundry treats them all equally.
The App Engine team needs to creates language specific bindings for underlying Google services, and usually do Python first, then Java, then Go, so you have a time lag between when a feature is introduced in Python, to when it trickles down to the other languages (although it got much better recently as the product matures).
Cloud Foundry exposes services to the various language/frameworks using these framework's existing service interfaces, it just automates the service provisioning and binding (the connection/config parameters are not hardcoded in a property file anymore, they are provided by Cloud Foundry at runtime, in a way that is framework specific). For example, when RabbitMQ was introduced in Cloud Foundry, we didn't need to create a new API for the service in each language, we just leverage the existing AMPQ client libs for each language/framework.