Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
;;
pypy)
brew outdated pyenv || brew upgrade pyenv
pyenv install pypy-2.5.1
pyenv global pypy-2.5.1
pyenv install pypy-2.6.0
pyenv global pypy-2.6.0
;;
pypy3)
brew outdated pyenv || brew upgrade pyenv
Expand Down
6 changes: 4 additions & 2 deletions src/cryptography/hazmat/bindings/commoncrypto/cf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,10 @@
};
typedef int CFNumberType;

const CFDictionaryKeyCallBacks kCFTypeDictionaryKeyCallBacks;
const CFDictionaryValueCallBacks kCFTypeDictionaryValueCallBacks;
/* TODO: these should both be "const", which can be added back once we switch
to cffi 1.0's set_source */
CFDictionaryKeyCallBacks kCFTypeDictionaryKeyCallBacks;
CFDictionaryValueCallBacks kCFTypeDictionaryValueCallBacks;

const CFBooleanRef kCFBooleanTrue;
const CFBooleanRef kCFBooleanFalse;
Expand Down